From 025dafb9892a8ff8f8a855343660f837a0f231d3 Mon Sep 17 00:00:00 2001
From: haoyahui <2032914783@qq.com>
Date: 星期一, 20 十一月 2023 16:31:11 +0800
Subject: [PATCH] 库存管理前端

---
 admin-web/src/views/stock/procure/purchaseOrder/detail.vue |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/admin-web/src/views/stock/procure/purchaseOrder/detail.vue b/admin-web/src/views/stock/procure/purchaseOrder/detail.vue
index 4dc2ce5..480d5fc 100644
--- a/admin-web/src/views/stock/procure/purchaseOrder/detail.vue
+++ b/admin-web/src/views/stock/procure/purchaseOrder/detail.vue
@@ -1,5 +1,5 @@
 <template>
-  <win-md class="stock-detail" :title="setting.title" @close="close" :width="'800px'">
+  <win-md class="stock-detail" :title="setting.title" @close="close" :width="'800px'" :loading="loading">
     <el-row :gutter="20">
       <el-col :span="8">
         <span>鍏ュ簱鍗曞彿锛�</span>
@@ -119,6 +119,7 @@
   },
   data() {
     return {
+      loading:true,
       fileList: [],
       detail: {
         baseCategoryName: '',
@@ -146,6 +147,7 @@
   },
   created() {
     procureDetail({ id: this.setting.id }).then((res) => {
+      this.loading = false
       this.detail = res;
       this.fileList = this.detail.procureDoc ? JSON.parse(this.detail.procureDoc) : [];
       this.$nextTick(() => {

--
Gitblit v1.9.1