qb 5 months ago
parent
commit
fb51a1aaeb
  1. 27
      src/views/aftersales/aftersalesWorkOrderTemp.vue
  2. 6
      src/views/basic/material/basicMaterial.vue
  3. 6
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

27
src/views/aftersales/aftersalesWorkOrderTemp.vue

@ -425,19 +425,6 @@ const appeal = ref({
});
const appealruleFormRef = ref();
const columnListName = ref('columnList');
const columnLists = [
'columnList',
'columnList1',
'columnList2',
'columnList3',
'columnList4',
'columnList5',
'columnList6',
'columnList7',
'columnList8',
'columnList9',
'columnList10',
];
/**
* 人身份
* Warehouse_customer_service 仓库客服
@ -917,9 +904,8 @@ const timesc = (index, row) => {
delete details.query[row.prop];
}
};
/** 表格表头下拉框选择 */
const selectsc = async(index, row) => {
const selectsc = async (index, row) => {
console.log(index, row);
let _Obj = MatchCurrentMenu(); //
_Obj.request = true; //
@ -1096,17 +1082,6 @@ const GetWarehouse = () => {
});
});
};
//
const ProcessingStatusCode = row => {
//
console.log(row);
if (UserPermissions.value == Useridentity.Headquarters_Manager) {
// 500
row.checkarr.find(item => item.value == '40').value = '500';
} else {
row.checkarr.find(item => item.value == '40').value = '40';
}
};
/**
*页面初始化函数包含字典等必要请求
*/

6
src/views/basic/material/basicMaterial.vue

@ -141,6 +141,7 @@
ref="formNodeRef"
:disabled="details.handleMaterialOption.isView"
:model="details.handleMaterialOption.form"
v-loading="details.loadingObj.pageLoading"
>
<el-form-item
style="flex: 1; min-width: 45%; margin: 10px"
@ -241,7 +242,7 @@
</el-button>
<!-- 提交 -->
<el-button type="primary" icon="Position" @click="handleSubmit"> </el-button>
<el-button type="primary" icon="Position" @click="handleSubmit" :disabled="details.loadingObj.pageLoading"> </el-button>
</div>
</el-dialog>
</div>
@ -684,7 +685,7 @@ const handleSubmit = () => {
formNodeRef.value.validate(async (valid, fields) => {
if (valid) {
console.log('submit!');
details.popUpShow.addMaterial = false;
try {
details.loadingObj.pageLoading = true;
@ -695,6 +696,7 @@ const handleSubmit = () => {
const res = await postMaterialSubmit(submitData);
const { code, msg } = res.data;
if (code !== 200) return;
details.popUpShow.addMaterial = false;
ElMessage.success(msg);
onLoad();
} catch (error) {

6
src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

@ -1311,13 +1311,14 @@ const newlyaddSubmit = () => {
message: res.data.msg,
type: 'success',
});
newlyaddload.value = false; //
}
})
.catch(error => {
console.log(error);
})
.finally(() => {
newlyaddload.value = false; //
});
} else {
//
@ -1330,13 +1331,14 @@ const newlyaddSubmit = () => {
message: res.data.msg,
type: 'success',
});
newlyaddload.value = false; //
}
})
.catch(error => {
console.log(error);
})
.finally(() => {
newlyaddload.value = false; //
});
}
}

Loading…
Cancel
Save