Commit 47676968 by YG8429

临时权益金增加返佣状态

parent 373b2a07
...@@ -292,6 +292,10 @@ export default { ...@@ -292,6 +292,10 @@ export default {
this.open = true; this.open = true;
this.title = "修改分享活动绑定关系"; this.title = "修改分享活动绑定关系";
}); });
// console.log(row);
// this.form = row;
// this.open = true;
// this.title = "修改分享活动绑定关系";
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
......
...@@ -124,6 +124,12 @@ ...@@ -124,6 +124,12 @@
<el-table-column label="下级电话" align="center" prop="newPhone" /> <el-table-column label="下级电话" align="center" prop="newPhone" />
<el-table-column label="下级账号" align="center" prop="newAccount" /> <el-table-column label="下级账号" align="center" prop="newAccount" />
<el-table-column label="下级用户昵称" align="center" prop="newNickName" /> <el-table-column label="下级用户昵称" align="center" prop="newNickName" />
<el-table-column align="center" label="返佣状态" prop="rebateType">
<template slot-scope="scope">
<dict-tag :options="dict.type.rebate_type" :value="scope.row.rebateType"/>
</template>
</el-table-column>
<el-table-column align="center" label="上级用户头像" prop="avatar" width="100"> <el-table-column align="center" label="上级用户头像" prop="avatar" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<image-preview :height="50" :src="scope.row.avatar" :width="50"/> <image-preview :height="50" :src="scope.row.avatar" :width="50"/>
...@@ -189,6 +195,7 @@ import { listEquityFundExcess, getEquityFundExcess, delEquityFundExcess, addEqui ...@@ -189,6 +195,7 @@ import { listEquityFundExcess, getEquityFundExcess, delEquityFundExcess, addEqui
export default { export default {
name: "EquityFundExcess", name: "EquityFundExcess",
dicts: ['rebate_type'],
data() { data() {
return { return {
// 遮罩层 // 遮罩层
...@@ -267,7 +274,8 @@ export default { ...@@ -267,7 +274,8 @@ export default {
createTime: null, createTime: null,
updateBy: null, updateBy: null,
updateTime: null, updateTime: null,
remark: null remark: null,
rebateType:null
}; };
this.resetForm("form"); this.resetForm("form");
}, },
......
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