Commit 62bacfc3 authored by 华国豪's avatar 华国豪 🙄

1

parent 82696862
...@@ -82,10 +82,12 @@ ...@@ -82,10 +82,12 @@
<table class="singeRowTable" border="0" cellspacing="0" cellpadding="0"> <table class="singeRowTable" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<th>优惠券名</th> <th>优惠券名</th>
<th>数量</th> <th>优惠券数量</th>
<th>发放数量</th>
<th>剩余数量</th>
<th>线路名称</th> <th>线路名称</th>
<th>类型</th> <th>类型</th>
<th>满减/折扣</th> <th>使用条件</th>
<th>面额</th> <th>面额</th>
<!-- <th>使用状态</th> --> <!-- <th>使用状态</th> -->
<th>叠加使用</th> <th>叠加使用</th>
...@@ -97,6 +99,8 @@ ...@@ -97,6 +99,8 @@
<tr v-for="(item,index) in DataList" v-loading="loading"> <tr v-for="(item,index) in DataList" v-loading="loading">
<td>{{item.couponsName}}</td> <td>{{item.couponsName}}</td>
<td>{{item.couponCount}}</td> <td>{{item.couponCount}}</td>
<td>{{item.couponReceiveCount}}</td>
<td>{{(item.couponCount - item.couponReceiveCount) > 0 ? (item.couponCount - item.couponReceiveCount) : 0 }}</td>
<td>{{item.lineName}}</td> <td>{{item.lineName}}</td>
<td>{{item.couponsType ===1 ? "抵用券" : "折扣券"}}</td> <td>{{item.couponsType ===1 ? "抵用券" : "折扣券"}}</td>
<td>{{item.useCondition}}</td> <td>{{item.useCondition}}</td>
......
...@@ -62,6 +62,9 @@ ...@@ -62,6 +62,9 @@
.LuckyDraw .ql-container{ .LuckyDraw .ql-container{
min-height: 100px; min-height: 100px;
} }
.LuckyDraw .avatar-uploader-icon{
height: auto
}
</style> </style>
<template> <template>
<div class="flexOne LuckyDraw"> <div class="flexOne LuckyDraw">
......
...@@ -129,7 +129,7 @@ export default { ...@@ -129,7 +129,7 @@ export default {
rank:'', rank:'',
}, },
rules:{ rules:{
awardName: [{ required: true, message: "请输入公司", trigger: "blur" }], awardName: [{ required: true, message: "请输入奖项名称", trigger: "blur" }],
awardType: [{ required: true, message: "请选择奖项类型", trigger: "change" }], awardType: [{ required: true, message: "请选择奖项类型", trigger: "change" }],
awardRelationId: [{required: true, message: "请选择奖项关联", trigger: "change"}], awardRelationId: [{required: true, message: "请选择奖项关联", trigger: "change"}],
awardCount: [{ required: true, message: "请输入奖项数量", trigger: "blur" }], awardCount: [{ required: true, message: "请输入奖项数量", trigger: "blur" }],
......
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