From ed0df936cf207478583687c2e590b3c59ad5c25c Mon Sep 17 00:00:00 2001 From: cy <1664593601@qq.com> Date: 星期二, 21 十一月 2023 13:50:52 +0800 Subject: [PATCH] feat: 根据型号查询物品信息 --- admin-web/src/views/stock/transfer/transferApplication/detail.vue | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/admin-web/src/views/stock/transfer/transferApplication/detail.vue b/admin-web/src/views/stock/transfer/transferApplication/detail.vue index 6249a6d..db84e75 100644 --- a/admin-web/src/views/stock/transfer/transferApplication/detail.vue +++ b/admin-web/src/views/stock/transfer/transferApplication/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"> <div v-loading="loading"> <el-row :gutter="20"> <el-col :span="8"> @@ -91,7 +91,7 @@ }, data() { return { - loading: false, + loading: true, detail: {}, fileList:[] }; @@ -103,7 +103,6 @@ }, }, created() { - this.loading = true; transferDetail({ id: this.setting.id }).then((res) => { this.detail = res; this.fileList = this.detail.procureDoc ? JSON.parse(this.detail.procureDoc) : []; -- Gitblit v1.9.1