Commit 3a2ca17b authored by zhengke's avatar zhengke

修改

parent 69f90e23
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
<el-table-column label="活动费用" width="170"> <el-table-column label="活动费用" width="170">
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="scope.row.IsFree==1" style="color:green;">免费</div> <div v-if="scope.row.IsFree==1" style="color:green;">免费</div>
<div v-else style="color:red;">消费{{scope.row.Price}}</div> <div v-else style="color:red;">{{scope.row.Price}}</div>
<div>报名取消确认:{{scope.row.IsCancelConfirm==1?'是':'否'}}</div> <div>报名取消确认:{{scope.row.IsCancelConfirm==1?'是':'否'}}</div>
</template> </template>
</el-table-column> </el-table-column>
...@@ -363,6 +363,9 @@ ...@@ -363,6 +363,9 @@
this.addMsg.ActivityInfo = ""; this.addMsg.ActivityInfo = "";
this.addMsg.SignStartTime = ''; this.addMsg.SignStartTime = '';
this.addMsg.SignEndTime = ''; this.addMsg.SignEndTime = '';
this.addMsg.IsFree = 1;
this.addMsg.Price = 0;
this.addMsg.IsCancelConfirm = 1;
}, },
SelectId(msg) { SelectId(msg) {
let url = this.getIconLink(msg.url) let url = this.getIconLink(msg.url)
...@@ -401,6 +404,9 @@ ...@@ -401,6 +404,9 @@
this.addMsg.CoverImg = tempData.CoverImg; this.addMsg.CoverImg = tempData.CoverImg;
this.addMsg.ActivityType = tempData.ActivityType; this.addMsg.ActivityType = tempData.ActivityType;
this.addMsg.ActivityInfo = tempData.ActivityInfo; this.addMsg.ActivityInfo = tempData.ActivityInfo;
this.addMsg.IsFree = tempData.IsFree;
this.addMsg.Price = tempData.Price;
this.addMsg.IsCancelConfirm = tempData.IsCancelConfirm;
if (tempData.ActivityInfo) { if (tempData.ActivityInfo) {
this.defaultMsg = tempData.ActivityInfo; this.defaultMsg = tempData.ActivityInfo;
} }
......
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