Commit 1e4b09d4 authored by zhengke's avatar zhengke

修改

parent e96fc4d9
...@@ -480,18 +480,18 @@ ...@@ -480,18 +480,18 @@
}) })
}, },
//翻页 //翻页
changePage() { changePage(val) {
this.waterMsg.pageIndex = val; this.waterMsg.pageIndex = val;
this.getList() this.getList()
}, },
//翻页! //翻页!
changePage2() { changePage2(val) {
this.ConfigMsg.pageIndex = val; this.ConfigMsg.pageIndex = val;
this.getConfigList() this.getConfigList()
}, },
//短信配置翻页 //短信配置翻页
changePage3() { changePage3(val) {
this.setMsg.pageIndex = val; this.setMsg.pageIndex = val;
this.getSetingMsg() this.getSetingMsg()
}, },
...@@ -638,6 +638,22 @@ ...@@ -638,6 +638,22 @@
}, },
//保存短信设置数据 //保存短信设置数据
saveSatMsg() { saveSatMsg() {
if (this.baseEditMsg.Sign == '') {
this.$q.notify({
type: 'negative',
position: "top",
message: `请填写签名`
})
return;
}
if (this.baseEditMsg.TemplateId == '') {
this.$q.notify({
type: 'negative',
position: "top",
message: `请填写模板id`
})
return;
}
SetMsgBaseTemplate(this.baseEditMsg).then(res => { SetMsgBaseTemplate(this.baseEditMsg).then(res => {
if (res.Code == 1) { if (res.Code == 1) {
this.$q.notify({ this.$q.notify({
......
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