From f6290cf3aa9794fea7edb882ca034063c5afb919 Mon Sep 17 00:00:00 2001 From: admin <15939171744@163.com> Date: 星期二, 26 十一月 2024 15:03:01 +0800 Subject: [PATCH] -物料信息 工位信息 优化 --- billion-ui/src/views/main/bs/locationInfo/index.vue | 33 +++++++++++++++++++++++++-------- 1 files changed, 25 insertions(+), 8 deletions(-) diff --git a/billion-ui/src/views/main/bs/locationInfo/index.vue b/billion-ui/src/views/main/bs/locationInfo/index.vue index ed97152..71fed8d 100644 --- a/billion-ui/src/views/main/bs/locationInfo/index.vue +++ b/billion-ui/src/views/main/bs/locationInfo/index.vue @@ -88,19 +88,19 @@ <el-table border v-loading="loading" :data="locationInfoList" @selection-change="handleSelectionChange"> <el-table-column type="selection" width="55" align="center" /> - <el-table-column show-overflow-tooltip="true" label="宸ヤ綅缂栧彿" align="center" prop="locationCode" /> - <el-table-column show-overflow-tooltip="true" label="宸ヤ綅鍚嶇О" align="center" prop="locationName" /> + <el-table-column :show-overflow-tooltip="true" label="宸ヤ綅缂栧彿" align="center" prop="locationCode" /> + <el-table-column :show-overflow-tooltip="true" label="宸ヤ綅鍚嶇О" align="center" prop="locationName" /> <el-table-column label="宸ヤ綅绫诲瀷" align="center" prop="locationType"> <template slot-scope="scope"> <dict-tag :options="dict.type.location_type" :value="scope.row.locationType"/> </template> </el-table-column> - <el-table-column show-overflow-tooltip="true" label="浜х嚎缂栧彿" align="center" prop="lineCode" /> - <el-table-column show-overflow-tooltip="true" label="澶囨敞" align="center" prop="remarks" /> - <el-table-column show-overflow-tooltip="true" label="鍒涘缓鐢ㄦ埛" align="center" prop="createBy" /> + <el-table-column :show-overflow-tooltip="true" label="浜х嚎缂栧彿" align="center" prop="lineCode" /> + <el-table-column :show-overflow-tooltip="true" label="澶囨敞" align="center" prop="remarks" /> + <el-table-column :show-overflow-tooltip="true" label="鍒涘缓鐢ㄦ埛" align="center" prop="createBy" /> <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="createTime" width="180"> </el-table-column> - <el-table-column show-overflow-tooltip="true" label="鏇存敼鐢ㄦ埛" align="center" prop="updateBy" /> + <el-table-column :show-overflow-tooltip="true" label="鏇存敼鐢ㄦ埛" align="center" prop="updateBy" /> <el-table-column label="鏇存敼鏃堕棿" align="center" prop="updateTime" width="180"> </el-table-column> </el-table> @@ -133,7 +133,15 @@ </el-select> </el-form-item> <el-form-item label="浜х嚎缂栧彿" prop="lineCode"> - <el-input v-model="form.lineCode" placeholder="璇疯緭鍏ヤ骇绾跨紪鍙�" /> +<!-- <el-input v-model="form.lineCode" placeholder="璇疯緭鍏ヤ骇绾跨紪鍙�" />--> + <el-select style="width: 100%" v-model="form.lineCode" placeholder="璇烽�夋嫨浜х嚎"> + <el-option + v-for="dict in lineOptions" + :key="dict.value" + :label="dict.lineName" + :value="dict.lineCode" + ></el-option> + </el-select> </el-form-item> <el-form-item label="澶囨敞" prop="remarks"> <el-input v-model="form.remarks" placeholder="璇疯緭鍏ュ娉�" /> @@ -149,6 +157,7 @@ <script> import { listLocationInfo, getLocationInfo, delLocationInfo, addLocationInfo, updateLocationInfo } from "@/api/main/bs/locationInfo"; +import {getLineOptions, listLineInfo} from "@/api/main/bs/lineInfo"; export default { name: "LocationInfo", @@ -189,13 +198,21 @@ id: [ { required: true, message: "涓婚敭id涓嶈兘涓虹┖", trigger: "blur" } ], - } + }, + lineOptions: [], }; }, created() { this.getList(); + this.getLineOptions() }, methods: { + getLineOptions() { + this.loading = true; + getLineOptions().then(response => { + this.lineOptions = response.data; + }); + }, /** 鏌ヨ宸ヤ綅淇℃伅鍒楄〃 */ getList() { this.loading = true; -- Gitblit v1.9.3