From 20913c80c3f5fc8e533cb92b90e6f20bcd68e032 Mon Sep 17 00:00:00 2001 From: 石广澎 <shiguangpeng@163.com> Date: 星期三, 29 十一月 2023 17:49:32 +0800 Subject: [PATCH] feat: 1、优化导入 2、部门物品台账查询对接 --- admin-web/src/views/stock/transfer/transferApplication/detail.vue | 17 ++++++++--------- 1 files changed, 8 insertions(+), 9 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..aa1a128 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> @@ -75,7 +75,7 @@ </win-md> </template> <script> -import { transferDetail } from '@/api/stock/transfer'; +import {transferDetail} from '@/api/stock/transfer'; import * as DateFormatter from '@/utils/DateFormatter'; import winMd from '@/components/win/win-md'; import transfer from '../../../mixins/transfer'; @@ -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