Commit edc08c7c authored by feifei's avatar feifei

减免单/流量配置

parent 0399af7b
...@@ -98,6 +98,11 @@ export default { ...@@ -98,6 +98,11 @@ export default {
center: true center: true
}).then(({ value }) => { }).then(({ value }) => {
if(value == null || value == '' ){
this.$message.error("请输入后再提交");
return
}
this.$$post('/raise/riaseOrPut', { this.$$post('/raise/riaseOrPut', {
keyContent: record.keyContent, keyContent: record.keyContent,
valueContent: value valueContent: value
......
...@@ -77,7 +77,10 @@ export default { ...@@ -77,7 +77,10 @@ export default {
return return
} }
this.$message({message: '提交成功!', type: 'success'}); this.$message({message: '提交成功!', type: 'success'});
setTimeout(() => {
window.location.reload(); window.location.reload();
}, 1500);
}).catch(err => { }).catch(err => {
this.$message.error("提交减免单失败!!!"); this.$message.error("提交减免单失败!!!");
}) })
......
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