版本更新
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<div class="app-container" v-loading="pageLoading" :element-loading-text="'审批中...'">
|
||||
<el-row :gutter="10" class="mb8" v-if="viewStatus">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
@@ -784,6 +784,7 @@ const rowList = ref([])
|
||||
const openTraceNoDialog = ref(false)
|
||||
const ypName = ref("");
|
||||
const currentIndex = ref("");
|
||||
const pageLoading = ref(false)
|
||||
const props = defineProps({
|
||||
// 仓库
|
||||
purposeTypeListOptions: {
|
||||
@@ -1934,14 +1935,18 @@ function handleReject() {
|
||||
});
|
||||
}
|
||||
function handelApply() {
|
||||
pageLoading.value = true
|
||||
productStocktakingApproved(route.query.supplyBusNo).then((res) => {
|
||||
if (res.code == 200) {
|
||||
proxy.$modal.msgSuccess("操作成功");
|
||||
pageLoading.loading = false
|
||||
store.clearCurrentDataPLPD();
|
||||
store.clearCurrentDataPLPDALL();
|
||||
// 跳转到审核页面
|
||||
router.replace({ path: '/aaaa/medicationmanagement/billapproval',query:{type:'chkstockBatch'}});
|
||||
}
|
||||
}).catch(() =>{
|
||||
pageLoading.loading = false
|
||||
})
|
||||
}
|
||||
/** 提交审核 */
|
||||
|
||||
Reference in New Issue
Block a user