From b8dc4ccc6ee580b084aa860e64af2d90d1cb5979 Mon Sep 17 00:00:00 2001 From: 石广澎 <shiguangpeng@163.com> Date: 星期三, 29 十一月 2023 10:11:52 +0800 Subject: [PATCH] feat: 1、首页接口对接 2、部门物品分发 --- admin-web/src/views/stock/transfer/transferApplication/detail.vue | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/admin-web/src/views/stock/transfer/transferApplication/detail.vue b/admin-web/src/views/stock/transfer/transferApplication/detail.vue index 1716dfe..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"> @@ -59,14 +59,14 @@ {{ scope.row.unit }} </template> </el-table-column> - <el-table-column prop="price" label="鐜版湁搴撳瓨" align="center"> - <template slot-scope="scope"> - {{ scope.row.price }} - </template> - </el-table-column> <el-table-column prop="counts" label="璋冩嫧鏁伴噺" align="center"> <template slot-scope="scope"> {{ scope.row.counts }} + </template> + </el-table-column> + <el-table-column prop="price" label="閲戦" align="center"> + <template slot-scope="scope"> + {{ scope.row.price }} </template> </el-table-column> </el-table> @@ -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