Commit 2217fa42 by liuchenxi

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

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