版本更新
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
|
||||
})
|
||||
}
|
||||
/** 提交审核 */
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user