|
@@ -66,6 +66,10 @@ export default {
|
|
|
mixins: [resToken],
|
|
|
props: ["id", "sitem"],
|
|
|
computed: {
|
|
|
+ disabledLossField(){
|
|
|
+ const {good_receive_type} = this.ruleForm;
|
|
|
+ return ['0','1','2'].includes(good_receive_type)
|
|
|
+ },
|
|
|
powers() {
|
|
|
const tran =
|
|
|
this.$store.getters.btnList.find((i) => i.menu_route == "allotDetail") || {};
|
|
@@ -130,12 +134,6 @@ export default {
|
|
|
immediate:true
|
|
|
}
|
|
|
},
|
|
|
- computed:{
|
|
|
- disabledLossField(){
|
|
|
- const {good_receive_type} = this.ruleForm;
|
|
|
- return ['0','1','2'].includes(good_receive_type)
|
|
|
- }
|
|
|
- },
|
|
|
methods: {
|
|
|
async number_change(e, key) {
|
|
|
this.ruleForm[key] = e + "" || "0";
|
|
@@ -158,9 +156,9 @@ export default {
|
|
|
}
|
|
|
this.loading = true;
|
|
|
const model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
- let res = await asyncRequest.reorderChildReceive({id:this.sitem.id,...models});
|
|
|
+ let res = await asyncRequest.reorderChildReceive({id:this.sitem.id,...model});
|
|
|
this.loading = false;
|
|
|
-
|
|
|
+
|
|
|
if (res && res.code === 0) {
|
|
|
this.showModelThis = false;
|
|
|
this.$emit("reload");
|