Commit 206c8184 by zhangmeng

新增领取限制列

parent 4251e48e
This source diff could not be displayed because it is too large. You can view the blob instead.
{ {
"name": "@gic-test/vue-gic-card", "name": "@gic-test/vue-gic-card",
"description": "vue-gic-card Plugin", "description": "vue-gic-card Plugin",
"version": "1.0.41", "version": "1.0.42",
"license": "MIT", "license": "MIT",
"private": false, "private": false,
"main": "dist/vue-gic-card.js", "main": "dist/vue-gic-card.js",
...@@ -34,4 +34,4 @@ ...@@ -34,4 +34,4 @@
"webpack": "^3.6.0", "webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1" "webpack-dev-server": "^2.9.1"
} }
} }
\ No newline at end of file
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
@keyup.native="(value) => toSearchInput(value)" clearable @clear="clearInput"> @keyup.native="(value) => toSearchInput(value)" clearable @clear="clearInput">
</el-input> </el-input>
<!-- <el-button class="search-btn" type="primary">查询</el-button> --> <!-- <el-button class="search-btn" type="primary">查询</el-button> -->
<p class="limit-text">领取限制< 100的卡券不支持选择,系统已自动过滤</p> <p class="limit-text">领取限制 < 100的卡券不支持选择,系统已自动过滤</p>
</div> </div>
</div> </div>
<div class="pic-list-box"> <div class="pic-list-box">
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="" prop=""
label="领取限制" label="有效期"
width="100"> width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="scope.row.cardEffectiveMode == 0">{{scope.row.beginDate+'-'+ scope.row.endDate}}</div> <div v-if="scope.row.cardEffectiveMode == 0">{{scope.row.beginDate+'-'+ scope.row.endDate}}</div>
...@@ -56,6 +56,14 @@ ...@@ -56,6 +56,14 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="" prop=""
label="领取限制"
width="100">
<template slot-scope="scope">
每人限制{{scope.row.cardLimit}}
</template>
</el-table-column>
<el-table-column
prop=""
label="适用门店" label="适用门店"
width="100"> width="100">
<template slot-scope="scope"> <template slot-scope="scope">
......
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