|
@@ -154,11 +154,38 @@
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
- <div class="flex-header">
|
|
|
+ <div class="flex-header" style="justify-content: space-between;">
|
|
|
+ <!-- <el-form-item label="活动性质">
|
|
|
+ <el-checkbox-group v-model="form.type">
|
|
|
+ <el-checkbox
|
|
|
+ label="美食/餐厅线上活动"
|
|
|
+ name="type"
|
|
|
+ ></el-checkbox>
|
|
|
+ <el-checkbox label="地推活动" name="type"></el-checkbox>
|
|
|
+ <el-checkbox label="线下主题活动" name="type"></el-checkbox>
|
|
|
+ <el-checkbox label="单纯品牌曝光" name="type"></el-checkbox>
|
|
|
+ </el-checkbox-group>
|
|
|
+ </el-form-item> -->
|
|
|
<el-form-item
|
|
|
label="提醒短信:"
|
|
|
prop="remindMmsg"
|
|
|
label-width="220px"
|
|
|
+ style="width: 33%;"
|
|
|
+ >
|
|
|
+ <el-checkbox-group v-model="remindMmsg" style="display:flex">
|
|
|
+ <el-checkbox label="无" name="remindMmsg"></el-checkbox>
|
|
|
+ <el-checkbox label="到期提醒" name="remindMmsg"></el-checkbox>
|
|
|
+ <el-checkbox label="办理成功" name="remindMmsg" ></el-checkbox>
|
|
|
+ <el-checkbox label="退订成功" name="remindMmsg"></el-checkbox>
|
|
|
+ <el-checkbox label="限速提醒" name="remindMmsg"></el-checkbox>
|
|
|
+ <el-checkbox label="余额提醒" name="remindMmsg"></el-checkbox>
|
|
|
+ <el-checkbox label="用尽失效" name="remindMmsg"></el-checkbox>
|
|
|
+ </el-checkbox-group>
|
|
|
+ </el-form-item>
|
|
|
+ <!-- <el-form-item
|
|
|
+ label="提醒短信:"
|
|
|
+ prop="remindMmsg"
|
|
|
+ label-width="220px"
|
|
|
>
|
|
|
<el-select v-model="form.remindMsg" placeholder="请选择">
|
|
|
<el-option label="无" value="无"></el-option>
|
|
@@ -173,8 +200,8 @@
|
|
|
value="优惠到期提醒"
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
- </el-form-item>
|
|
|
- <div class="flex-textarea">
|
|
|
+ </el-form-item> -->
|
|
|
+ <div class="flex-textarea" style="margin-right:5%;width:60%">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
maxlength="300"
|
|
@@ -326,6 +353,7 @@ export default {
|
|
|
rule: {},
|
|
|
copyRule: {},
|
|
|
isList: [],
|
|
|
+ remindMmsg:['无']
|
|
|
};
|
|
|
},
|
|
|
props: {
|
|
@@ -339,7 +367,6 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
- console.log(this.$refs.upload);
|
|
|
if (this.list.mkFileShareAttachList) {
|
|
|
this.$refs.upload.attList = this.list.mkFileShareAttachList;
|
|
|
this.list.mkFileShareAttachList.map((item) => {
|
|
@@ -445,8 +472,7 @@ export default {
|
|
|
var downloadElement = document.createElement("a");
|
|
|
var href = window.URL.createObjectURL(blob);
|
|
|
downloadElement.href = href;
|
|
|
- downloadElement.download =
|
|
|
- this.form.mkFileShareAttachList[0].name;
|
|
|
+ downloadElement.download = this.form.mkFileShareAttachList[0].name;
|
|
|
document.body.appendChild(downloadElement);
|
|
|
downloadElement.click();
|
|
|
document.body.removeChild(downloadElement);
|
|
@@ -469,6 +495,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
},
|
|
|
+ "remindMmsg":{
|
|
|
+ handler(newVal) {
|
|
|
+ this.form.remindMmsg = newVal;
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|