Commit ed183d4c authored by caimeng's avatar caimeng

2024-4-25 17:14

parent 5759d9c5
...@@ -43,6 +43,8 @@ ...@@ -43,6 +43,8 @@
<!-- 列表 --> <!-- 列表 -->
<div v-show="isShow"> <div v-show="isShow">
<block-header title="客户列表"/> <block-header title="客户列表"/>
<mc-table :data="list"></mc-table>
<el-table <el-table
border border
size="small" size="small"
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<el-table-column align="center" label="查看详情"> <el-table-column align="center" label="查看详情">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" size="small" @click="handleClick(scope.row)">详情</el-button> <el-button type="text" size="small" @click="handleClick(scope.row)">详情</el-button>
<template v-if="scope.row.status==='SETTLED' && scope.row.capitalCode !== 'OWNBUSINESS' && scope.row.capitalCode !== 'FENGSHENGBUSINESSJQ' && scope.row.capitalCode !== 'FENGSHENGBUSINESSDR' && scope.row.capitalCode !== 'FENGSHENGBUSINESSZY'"> <template v-if="scope.row.status==='SETTLED' && scope.row.capitalCode !== 'OWNBUSINESS' && scope.row.capitalCode !== 'FENGSHENGBUSINESSJQ' && scope.row.capitalCode !== 'YUANFENGBUSINESS' && scope.row.capitalCode !== 'FENGSHENGBUSINESSDR' && scope.row.capitalCode !== 'FENGSHENGBUSINESSZY'">
<el-button type="text" size="small" @click="handleShow(scope.row,'SettleReport','结清报告')">结清报告 <el-button type="text" size="small" @click="handleShow(scope.row,'SettleReport','结清报告')">结清报告
</el-button> </el-button>
</template> </template>
...@@ -62,6 +62,10 @@ ...@@ -62,6 +62,10 @@
<el-button type="text" size="small" @click="handleShow(scope.row,'GenerateSettleReport','结清报告')">结清报告 <el-button type="text" size="small" @click="handleShow(scope.row,'GenerateSettleReport','结清报告')">结清报告
</el-button> </el-button>
</template> </template>
<template v-if="scope.row.status==='SETTLED' && scope.row.capitalCode === 'YUANFENGBUSINESS' && zyItem">
<el-button type="text" size="small" @click="handleShow(scope.row,'GenerateSettleReport','结清报告')">结清报告
</el-button>
</template>
</template> </template>
</el-table-column> </el-table-column>
......
...@@ -52,14 +52,14 @@ ...@@ -52,14 +52,14 @@
</el-upload> </el-upload>
</el-form-item> </el-form-item>
<el-form-item prop="alipay" label="是否有支付宝账号"> <el-form-item label="是否有支付宝账号">
<el-radio-group v-model="form.alipay"> <el-radio-group v-model="form.alipay">
<el-radio :label="0"></el-radio> <el-radio :label="0"></el-radio>
<el-radio :label="1">是,本人</el-radio> <el-radio :label="1">是,本人</el-radio>
<el-radio :label="2">是,非本人</el-radio> <el-radio :label="2">是,非本人</el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
<el-form-item prop="qq" label="是否有QQ号"> <el-form-item label="是否有QQ号">
<el-radio-group v-model="form.qq"> <el-radio-group v-model="form.qq">
<el-radio :label="0"></el-radio> <el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio> <el-radio :label="1"></el-radio>
...@@ -119,6 +119,7 @@ export default { ...@@ -119,6 +119,7 @@ export default {
wechat: '', wechat: '',
alipay: '', alipay: '',
qq: '', qq: '',
id:'',
wechatList: [] wechatList: []
}, },
...@@ -134,6 +135,7 @@ export default { ...@@ -134,6 +135,7 @@ export default {
async created() { async created() {
if (this.UserInfo) { if (this.UserInfo) {
this.form.orderNo = this.UserInfo.orderNo; this.form.orderNo = this.UserInfo.orderNo;
this.form.id = this.UserInfo.id;
} }
console.log(this.UserInfo, '用户信息') console.log(this.UserInfo, '用户信息')
}, },
......
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
:highlight-current-row="true" :highlight-current-row="true"
:header-row-class-name="headerStyle" :header-row-class-name="headerStyle"
:data="data" stripe style="width: 100%;"> :data="data" stripe style="width: 100%;">
<el-table-column align="center" type="index" label="#"></el-table-column>
<el-table-column align="center" prop="id" label="id"></el-table-column>
<el-table-column align="center" prop="clientName" label="姓名"></el-table-column> <el-table-column align="center" prop="clientName" label="姓名"></el-table-column>
<el-table-column align="center" prop="clientCell" label="手机号" ></el-table-column> <el-table-column align="center" prop="clientCell" label="手机号" ></el-table-column>
<el-table-column align="center" prop="withdrawalDate" label="提现时间"></el-table-column> <el-table-column align="center" prop="withdrawalDate" label="提现时间"></el-table-column>
...@@ -115,7 +117,7 @@ export default { ...@@ -115,7 +117,7 @@ export default {
// 切换选项卡 // 切换选项卡
handleClick(row) { handleClick(row) {
this.SignVisible = true; this.SignVisible = true;1
this.item = row; this.item = row;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment