|
@@ -49,17 +49,10 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="商品名称" prop="good_name">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.good_name"
|
|
|
- maxlength="1000"
|
|
|
- disabled
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="ruleForm.good_name" maxlength="1000" disabled></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="预警数量" prop="warn_stock">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.warn_stock"
|
|
|
- maxlength="1000"
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="ruleForm.warn_stock" maxlength="1000"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</el-col>
|
|
@@ -75,7 +68,7 @@
|
|
|
</el-card>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
- <script>
|
|
|
+<script>
|
|
|
import asyncRequest from "@/apis/service/stock/stockWarning";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import { isnumber } from "@/utils/validate";
|
|
@@ -101,7 +94,7 @@ export default {
|
|
|
loading: false,
|
|
|
showModelThis: this.showModel,
|
|
|
ruleForm: {
|
|
|
- good_code: "",
|
|
|
+ type_code: "",
|
|
|
wsm_code: "",
|
|
|
wsm_name: "",
|
|
|
good_name: "",
|
|
@@ -161,13 +154,13 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
sitem(val) {
|
|
|
- let {
|
|
|
+ const {
|
|
|
good_name,
|
|
|
warn_stock,
|
|
|
wsm_name,
|
|
|
wsm_supplier,
|
|
|
wsm_code,
|
|
|
- type_code,
|
|
|
+ spuCode,
|
|
|
companyName,
|
|
|
} = val;
|
|
|
this.ruleForm = {
|
|
@@ -176,9 +169,10 @@ export default {
|
|
|
good_name,
|
|
|
warn_stock,
|
|
|
wsm_code,
|
|
|
- good_code: type_code,
|
|
|
companyName,
|
|
|
+ type_code: spuCode,
|
|
|
};
|
|
|
+ console.log(this.ruleForm);
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
@@ -197,15 +191,15 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
this.loading = true;
|
|
|
- let model = {
|
|
|
- warn_stock: this.ruleForm.warn_stock,
|
|
|
-
|
|
|
- type_code: this.ruleForm.good_code,
|
|
|
- wsm_code: this.ruleForm.wsm_code,
|
|
|
+ const { warn_stock, type_code, wsm_code } = this.ruleForm;
|
|
|
+ const model = {
|
|
|
+ warn_stock,
|
|
|
+ type_code,
|
|
|
+ wsm_code,
|
|
|
};
|
|
|
- const res = await asyncRequest.update(model);
|
|
|
+ const { code, data, message } = await asyncRequest.update(model);
|
|
|
this.loading = false;
|
|
|
- if (res && res.code === 0) {
|
|
|
+ if (code === 0) {
|
|
|
const title = this.id === "add" ? "添加成功" : "修改成功";
|
|
|
this.$notify.success({
|
|
|
title,
|
|
@@ -214,10 +208,10 @@ export default {
|
|
|
this.showModelThis = false;
|
|
|
// 刷新
|
|
|
this.$emit("refresh");
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ this.$message.warning(message);
|
|
|
}
|
|
|
} else {
|
|
|
console.log("error submit!!");
|
|
@@ -227,4 +221,4 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
};
|
|
|
-</script>
|
|
|
+</script>
|