商户银行卡信息添加

This commit is contained in:
DESKTOP-GMUNQ1B\k 2024-03-02 16:15:34 +08:00
parent 0e67b078d4
commit 4a7f21b525
3 changed files with 33 additions and 4 deletions

BIN
dist.zip Normal file

Binary file not shown.

View File

@ -176,6 +176,33 @@
<el-input readony :value="statusAuditForm.is_company == 1 ? '对公户' : '个体户'" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="对公账号:">
<el-input readony :value="statusAuditForm.bank_code" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="开户银行:">
<el-input readony :value="statusAuditForm.bank_username" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="开户网点:">
<el-input readony :value="statusAuditForm.bank_opening" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="开户凭证:">
<div class="demo-image__preview">
<el-image style="width: 80px;height: 60px;margin-right: 10px;"
v-for="(item, index) in statusAuditForm.images" :key="index" :src="item" class="preview"
:preview-src-list="[item]" />
</div>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注:">
<el-input readony :value="statusAuditForm.mark" />
@ -241,7 +268,7 @@ export default {
mer_intention_id: this.$route.query.id ? this.$route.query.id : "",
category_id: "",
type_id: "",
type: 1,//
// type: 1,//
},
mer_id: this.$route.query.id ? this.$route.query.id : "",
autoUpdate: true,

View File

@ -84,14 +84,15 @@
<el-table-column prop="admin.account" label="商户账号" min-width="100" />
<el-table-column prop="mer_address" label="商户地址" min-width="200" />-->
<el-table-column prop="real_name" label="商户姓名" min-width="150" />
<el-table-column prop="mark" label="备注" min-width="200" />
<el-table-column prop="status" label="推荐" min-width="100">
<template slot-scope="scope">
<el-switch v-model="scope.row.is_best" :active-value="1" :inactive-value="0" active-text="是" inactive-text=""
disabled @click.native="onchangeIsShow(scope.row)" />
</template>
</el-table-column>
<el-table-column prop="create_time" label="创建时间" min-width="150" />
<el-table-column prop="purchase_amount" label="采购金额" min-width="200" />
<el-table-column prop="sale_amount" label="销售金额" min-width="200" />
<el-table-column prop="margin" label="保证金" min-width="150">
<template slot-scope="scope">
<span>{{
@ -103,8 +104,9 @@
}}</span>
</template>
</el-table-column>
<el-table-column prop="create_time" label="创建时间" min-width="150" />
<el-table-column prop="mark" label="备注" min-width="200" />
<el-table-column prop="sort" label="排序" min-width="100" />
<el-table-column prop="status" label="开启/关闭" min-width="100">
<template slot-scope="scope">
<el-switch v-model="scope.row.status" :active-value="1" :inactive-value="0" active-text="开启"