Commit 445dbfcf by chenxin

fix: build

parent 00516e1a
.el-icon-delete[data-v-9a5b17ce]{display:inline-block;font-size:17px;padding:9px;margin-right:10px;color:#909399;border:1px solid #e4e7ed;border-radius:50%;vertical-align:middle;cursor:pointer;position:relative;top:-60px}.el-icon-delete[data-v-9a5b17ce]:hover{background:#fef0f0;border:1px solid #fbc4c4;color:#f5222d}
\ No newline at end of file
.el-icon-delete[data-v-9e2dfcd8]{display:inline-block;font-size:17px;padding:9px;margin-right:10px;color:#909399;border:1px solid #e4e7ed;border-radius:50%;vertical-align:middle;cursor:pointer;position:relative;top:-60px}.el-icon-delete[data-v-9e2dfcd8]:hover{background:#fef0f0;border:1px solid #fbc4c4;color:#f5222d}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -29,6 +29,7 @@ import { SUCCESS_CODE, origin } from '@/config';
* @param {*} code ui目前只处理如下code
*/
function handlerErr(code) {
return;
if (process.env['NODE_ENV'] === 'development') { // eslint-disable-line
return;
}
......
......@@ -58,9 +58,13 @@
<router-link target="_blank" :to="{path:'/gic-card/info',query:{ id: item.couponId }}">{{ item.cardName }}</router-link>
</el-col>
<el-col :span="5"><span v-html="effectiveDateFormate(item)"></span></el-col>
<el-col :span="4">{{ item.activityRemainedStock }}</el-col>
<el-col :span="4">{{ item.remainedStock }}</el-col>
<el-col :span="4">{{ item.occupyStock }}</el-col>
<el-col :span="3">没给</el-col>
<el-col :span="3">
<!-- 1:已生效,2:已删除,3:已过期 -->
<span v-if="item.welfareStatus == 1" class="state-point state-point-success">已生效</span>
<span v-else class="state-point state-point-success">{{ item.welfareStatus == 2 ? '已删除' : '已过期' }}</span>
</el-col>
<el-col :span="3">
<dm-delete @confirm="delCard(item)" tips="删除后已占用库存将被释放,确认删除?">
<el-button type="text">删除</el-button>
......
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