Commit 47676968 by YG8429

临时权益金增加返佣状态

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