Commit 2217fa42 by liuchenxi

update: 即将过期卡券增加有效期字段

parent 737186e4
...@@ -180,6 +180,10 @@ export default { ...@@ -180,6 +180,10 @@ export default {
cardType: { cardType: {
type: [String, Number], type: [String, Number],
default: null default: null
},
effect: {
type: Boolean,
default: false
} }
}, },
computed: { computed: {
...@@ -343,7 +347,8 @@ export default { ...@@ -343,7 +347,8 @@ export default {
searchParam: this.searchText || '', searchParam: this.searchText || '',
requestProject: this.repProjectName, requestProject: this.repProjectName,
cardLimitType: this.cardLimitType, cardLimitType: this.cardLimitType,
cardTypes: this.cardTypes cardTypes: this.cardTypes,
effectiveFlag: this.effect ? 1 : ''
}; };
if (this.type) { if (this.type) {
Object.assign(param, { Object.assign(param, {
......
...@@ -775,7 +775,8 @@ ...@@ -775,7 +775,8 @@
:cardLimit="cardLimit" :cardLimit="cardLimit"
:cardType="cardType" :cardType="cardType"
:tag-list="tagList" :tag-list="tagList"
:type="1"> :type="1"
:effect="true">
</vue-gic-card> </vue-gic-card>
<p v-show="!cardRadioType" class="grey" style="margin-top:15px">说明:选择全部卡券后,后续创建的卡券也会进行统计。</p> <p v-show="!cardRadioType" class="grey" style="margin-top:15px">说明:选择全部卡券后,后续创建的卡券也会进行统计。</p>
</div> </div>
......
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