版本更新

This commit is contained in:
Zhang.WH
2025-10-16 17:38:08 +08:00
parent f515bb8fbb
commit e4c5f36f2e
488 changed files with 41436 additions and 2901 deletions

View File

@@ -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
})
}
/** 提交审核 */

View File

@@ -214,9 +214,10 @@
type="primary"
icon="Edit"
@click="handleUpdate(scope.row)"
:disabled="scope.row.statusEnum != '1' && scope.row.statusEnum != '9' && scope.row.statusEnum != '4'"
disabled
>编辑</el-button
>
<!-- :disabled="scope.row.statusEnum != '1' && scope.row.statusEnum != '9' && scope.row.statusEnum != '4'" -->
<!-- v-hasPermi="['system:user:edit']" -->
<el-button
link