Commit 5fea22bb authored by 黄媛媛's avatar 黄媛媛

优惠券列表新增换购价

parent dfb1e064
...@@ -135,6 +135,7 @@ ...@@ -135,6 +135,7 @@
<th>使用范围</th> <th>使用范围</th>
<th>{{$t('admin.admin_status')}}</th> <th>{{$t('admin.admin_status')}}</th>
<th>{{$t('active.cl_addPp')}}</th> <th>{{$t('active.cl_addPp')}}</th>
<th>换购价</th>
<th>{{$t('system.table_operation')}}</th> <th>{{$t('system.table_operation')}}</th>
</tr> </tr>
<tr v-for="(item,index) in DataList" v-loading="loading"> <tr v-for="(item,index) in DataList" v-loading="loading">
...@@ -174,6 +175,7 @@ ...@@ -174,6 +175,7 @@
<span v-if="item.couponStatus == 3" style="color: red">{{$t('system.ph_shanchu')}}</span> <span v-if="item.couponStatus == 3" style="color: red">{{$t('system.ph_shanchu')}}</span>
</td> </td>
<td>{{item.createUserName}}</td> <td>{{item.createUserName}}</td>
<td>{{item.redemptionPrice}}</td>
<td class="text_al_left"> <td class="text_al_left">
<!-- <el-button-group> --> <!-- <el-button-group> -->
<el-tooltip class="item" effect="dark" :content="$t('pub.updateMsg')" placement="top"> <el-tooltip class="item" effect="dark" :content="$t('pub.updateMsg')" placement="top">
...@@ -376,6 +378,11 @@ ...@@ -376,6 +378,11 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</td> </td>
<td>
<el-form-item label="换购价">
<el-input v-model="addMsg.redemptionPrice" class="w217" placeholder="请输入"/>
</el-form-item>
</td>
</tr> </tr>
</table> </table>
</el-form> </el-form>
...@@ -441,6 +448,7 @@ export default { ...@@ -441,6 +448,7 @@ export default {
lineteamId: 0, lineteamId: 0,
couponsUseScope: 1, couponsUseScope: 1,
couponStatus: 1, couponStatus: 1,
redemptionPrice:'',
}, },
pwdMsg: { pwdMsg: {
Id: "", Id: "",
...@@ -588,6 +596,8 @@ export default { ...@@ -588,6 +596,8 @@ export default {
this.addMsg.lineteamId = item.lineteamId this.addMsg.lineteamId = item.lineteamId
this.addMsg.couponsUseScope = item.couponsUseScope this.addMsg.couponsUseScope = item.couponsUseScope
this.addMsg.couponStatus = item.couponStatus this.addMsg.couponStatus = item.couponStatus
this.addMsg.redemptionPrice = item.redemptionPrice
this.isleaveBtn = true; this.isleaveBtn = true;
}, },
// 删除 // 删除
...@@ -669,6 +679,7 @@ export default { ...@@ -669,6 +679,7 @@ export default {
lineteamId: 0, lineteamId: 0,
couponsUseScope: 1, couponsUseScope: 1,
couponStatus: 1, couponStatus: 1,
redemptionPrice:'',
} }
} }
} }
......
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