Commit a5dae6eb authored by zhengke's avatar zhengke

修改

parent 7b5ab29c
......@@ -28,7 +28,9 @@
</el-table-column>
<el-table-column prop="IsGuest" label="是否普通会员">
<template slot-scope="scope">
<span>{{scope.row.IsGuest==1?'是':'否'}}</span>
<span v-if="scope.row.IsGuest==1">普通会员</span>
<span v-if="scope.row.IsGuest==2">其他会员</span>
<span v-if="scope.row.IsGuest==3">Vip</span>
</template>
</el-table-column>
<el-table-column prop="CommissionRatio" label="返佣比例">
......@@ -100,8 +102,9 @@
<el-col :span="12">
<el-form-item label="是否普通会员" prop="IsGuest">
<el-select v-model="addMsg.IsGuest" placeholder="请选择">
<el-option label="是" :value="1"></el-option>
<el-option label="否" :value="2"></el-option>
<el-option label="普通会员" :value="1"></el-option>
<el-option label="其他会员" :value="2"></el-option>
<el-option label="Vip" :value="3"></el-option>
</el-select>
</el-form-item>
</el-col>
......@@ -219,7 +222,7 @@
Id: 0, //等级id
Grade: 1, //等级
GradeName: '', //等级名称
IsGuest: 1, //是否普通会员 1是 2否
IsGuest: 1, //是否普通会员 1普通会员 2其他会员 3Vip
CommissionRatio: 0, //返佣比例
SiblingRatio: 0, //同级返佣比例
SiblingRebatesNum: 0, //可拿同级返佣的数量
......
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