修改bug

feature_0521
yechenhao 5 years ago
parent 4798e009ba
commit 777da7d584

@ -450,9 +450,8 @@ export default {
let that = this; let that = this;
staff.editSattfStatus(request, function(data) { staff.editSattfStatus(request, function(data) {
data = data.data; data = data.data;
if (data.code == "0000") { if (data.code == "0000" && data.results == true) {
that.$Message.success("修改成功!"); that.$Message.success("修改成功!");
that.listOfLogistics();
} }
}); });
}, },

@ -1,5 +1,14 @@
<template> <template>
<div class> <div class>
<Row class="search-row">
<i-col span="24" class="search-col">
<Row class="row-style">
<i-col span="12" style="text-align: left;padding-right: 20px;">
<Button type="primary" @click="back()"></Button>
</i-col>
</Row>
</i-col>
</Row>
<Row> <Row>
<i-col :span="12"> <i-col :span="12">
<Form ref="welcomeForm" :model="welcome" :rules="welcomeRules"> <Form ref="welcomeForm" :model="welcome" :rules="welcomeRules">
@ -265,6 +274,9 @@ export default {
selectStoreStep selectStoreStep
}, },
methods: { methods: {
back: function() {
this.$router.back();
},
paramFilter() { paramFilter() {
return this.welcome.params.length < 1; return this.welcome.params.length < 1;
}, },

Loading…
Cancel
Save