版本更新
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<div class="app-container" v-loading="pageLoading" loading-text="审批中...">
|
||||
<el-row :gutter="10" class="mb8" v-if="viewStatus">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
@@ -819,6 +819,7 @@ const visible = ref(false);
|
||||
const row = ref({});
|
||||
const rowIndex = ref(-1);
|
||||
const totalAmount = ref(0);
|
||||
const pageLoading = ref(false)
|
||||
|
||||
const form = reactive({
|
||||
purchaseinventoryList: [],
|
||||
@@ -1070,7 +1071,9 @@ function handleClickOutside(event) {
|
||||
}
|
||||
|
||||
function handelApply() {
|
||||
pageLoading.value = true;
|
||||
productTransferApproved(route.query.supplyBusNo).then((res) => {
|
||||
pageLoading.value = false
|
||||
if (res.code == 200) {
|
||||
proxy.$modal.msgSuccess("操作成功");
|
||||
store.clearCurrentDataPLDB();
|
||||
@@ -1078,6 +1081,8 @@ function handelApply() {
|
||||
// 跳转到审核页面
|
||||
router.replace({ path: '/aaaa/medicationmanagement/billapproval',query:{type:'batchTransfer'}});
|
||||
}
|
||||
}).catch(() => {
|
||||
pageLoading.value = false
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user