From ef94dde616595c9e6fa9d98fdc85249e375f4d2f Mon Sep 17 00:00:00 2001 From: admin <15939171744@163.com> Date: 星期四, 28 十一月 2024 16:22:08 +0800 Subject: [PATCH] -工艺路线优化 --- billion-ui/src/views/main/bs/routeChildInfo/index.vue | 43 ++++++++++++++++++++++++++++++++++++++----- 1 files changed, 38 insertions(+), 5 deletions(-) diff --git a/billion-ui/src/views/main/bs/routeChildInfo/index.vue b/billion-ui/src/views/main/bs/routeChildInfo/index.vue index 7d7741b..e9997fa 100644 --- a/billion-ui/src/views/main/bs/routeChildInfo/index.vue +++ b/billion-ui/src/views/main/bs/routeChildInfo/index.vue @@ -106,11 +106,41 @@ </el-col> </el-row> <el-row> - <el-descriptions class="margin-top" :column="4" label-style="font-weight: bold" content-style="font-weight: bold"> - <el-descriptions-item label="娴佺▼缂栫爜">{{this.queryParams.routeCode}}</el-descriptions-item> - <el-descriptions-item label="娴佺▼鍚嶇О">{{this.routeInfo[0].routeName}}</el-descriptions-item> - <el-descriptions-item label="浜у搧缂栫爜">{{this.routeInfo[0].productCode}}</el-descriptions-item> - <el-descriptions-item label="浜у搧鍚嶇О">{{this.routeInfo[0].productName}}</el-descriptions-item> +<!-- <el-descriptions class="margin-top" :column="4" label-style="font-weight: bold" content-style="font-weight: bold">--> +<!-- <el-descriptions-item label="娴佺▼缂栫爜">{{this.queryParams.routeCode}}</el-descriptions-item>--> +<!-- <el-descriptions-item label="娴佺▼鍚嶇О">{{this.routeInfo[0].routeName}}</el-descriptions-item>--> +<!-- <el-descriptions-item label="浜у搧缂栫爜">{{this.routeInfo[0].productCode}}</el-descriptions-item>--> +<!-- <el-descriptions-item label="浜у搧鍚嶇О">{{this.routeInfo[0].productName}}</el-descriptions-item>--> +<!-- </el-descriptions>--> + <el-descriptions class="margin-top" :contentStyle="labelStyle" :column="3" :size="size" border> + <el-descriptions-item> + <template slot="label"> + <i class="el-icon-user"></i> + 娴佺▼缂栫爜 + </template> + {{this.queryParams.routeCode}} + </el-descriptions-item> + <el-descriptions-item> + <template slot="label"> + <i class="el-icon-mobile-phone"></i> + 娴佺▼鍚嶇О + </template> + {{this.routeInfo[0].routeName}} + </el-descriptions-item> + <el-descriptions-item> + <template slot="label"> + <i class="el-icon-location-outline"></i> + 浜у搧缂栫爜 + </template> + {{this.routeInfo[0].productCode}} + </el-descriptions-item> + <el-descriptions-item> + <template slot="label"> + <i class="el-icon-tickets"></i> + 浜у搧鍚嶇О + </template> + {{this.routeInfo[0].productName}} + </el-descriptions-item> </el-descriptions> </el-row> @@ -179,6 +209,8 @@ name: "RouteChildInfo", data() { return { + labelStyle: "width: 300px;", + size: 'medium', advancedSearchVisible: false, // 閬僵灞� loading: true, @@ -352,3 +384,4 @@ } }; </script> + -- Gitblit v1.9.3