Commit edc08c7c authored by feifei's avatar feifei

减免单/流量配置

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