|
|
|
@ -13,19 +13,19 @@ |
|
|
|
<el-input v-model="query.firm_name" placeholder="机构名称" class="handle-input mr10"></el-input> |
|
|
|
<el-input v-model="query.phone" placeholder="账户号码" class="handle-input mr10"></el-input> |
|
|
|
<el-input v-model="query.username" placeholder="申请人名称" class="handle-input mr10"></el-input> |
|
|
|
<el-select v-model="query.buyer_account_type" placeholder="摘牌方开户" class="handle-select mr10"> |
|
|
|
<el-select v-model="query.buyer_account_type" placeholder="摘牌方开户" clearable class="handle-select mr10"> |
|
|
|
<el-option key="1" label="是" :value="1"></el-option> |
|
|
|
<el-option key="2" label="否" :value="0"></el-option> |
|
|
|
</el-select> |
|
|
|
<el-select v-model="query.enter_shop_type" placeholder="入驻商家" class="handle-select mr10"> |
|
|
|
<el-select v-model="query.enter_shop_type" placeholder="挂牌方开户" clearable class="handle-select mr10"> |
|
|
|
<el-option key="1" label="是" :value="1"></el-option> |
|
|
|
<el-option key="2" label="否" :value="0"></el-option> |
|
|
|
</el-select> |
|
|
|
<el-select v-model="query.third_party_type" placeholder="第三方服务机构" class="handle-select mr10"> |
|
|
|
<el-select v-model="query.third_party_type" placeholder="第三方服务机构" clearable class="handle-select mr10"> |
|
|
|
<el-option key="1" label="是" :value="1"></el-option> |
|
|
|
<el-option key="2" label="否" :value="0"></el-option> |
|
|
|
</el-select> |
|
|
|
<el-select v-model="query.auditID" placeholder="审核人员" class="handle-select mr10"> |
|
|
|
<el-select v-model="query.auditID" placeholder="审核人员" class="handle-select mr10" clearable > |
|
|
|
<el-option v-for="item in auditList" :key="item.uid" :label="item.username" :value="item.uid"></el-option> |
|
|
|
</el-select> |
|
|
|
<el-date-picker |
|
|
|
@ -34,7 +34,7 @@ |
|
|
|
type="datetimerange" |
|
|
|
:picker-options="pickerOptions" |
|
|
|
range-separator="至" |
|
|
|
value-format="timestamp" |
|
|
|
value-format="yyyy-MM-dd HH:mm:ss" |
|
|
|
start-placeholder="开始日期" |
|
|
|
end-placeholder="结束日期" |
|
|
|
align="right" |
|
|
|
@ -69,12 +69,10 @@ |
|
|
|
</el-table-column> |
|
|
|
<!-- <el-table-column prop="is_enter_shop" label="是否入驻商家"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="is_third_party" label="是否第三方服务机构"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
|
|
</template> |
|
|
|
</el-table-column> --> |
|
|
|
<el-table-column prop="check_name" label="审核人员"></el-table-column> |
|
|
|
@ -112,7 +110,7 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- 操作记录 --> |
|
|
|
<el-dialog title="操作记录" :visible.sync="editVisible1" width="30%"> |
|
|
|
<el-dialog title="操作记录" :visible.sync="editVisible1" width="40%"> |
|
|
|
<p class="recordTips">以下为该账户历史操作记录:</p> |
|
|
|
<p class="record_content" v-for="(item,index) in recordList" :key="index"> |
|
|
|
<span>{{index + 1}}.</span> |
|
|
|
@ -306,7 +304,7 @@ export default { |
|
|
|
}, |
|
|
|
//时间戳转换时间 |
|
|
|
formatDate(row,colnum){ |
|
|
|
return moment(row[colnum.create_time]).format('YYYY-MM-DD HH:mm:ss') |
|
|
|
return moment(row.create_time*1000).format('YYYY-MM-DD HH:mm:ss') |
|
|
|
}, |
|
|
|
MisShow(){ |
|
|
|
this.editVisible=false |
|
|
|
|