فهرست منبع

看板字体缩放问题

yanghao 15 ساعت پیش
والد
کامیت
27f0433746

+ 1 - 1
.env.local

@@ -4,7 +4,7 @@ NODE_ENV=development
 VITE_DEV=true
 
 # 请求路径  http://192.168.188.86:48080  https://iot.deepoil.cc:5443  http://172.26.0.56:48080  http://192.168.188.198:48080
-VITE_BASE_URL='http://172.30.41.105:48080'
+VITE_BASE_URL='https://iot.deepoil.cc:5443'
 
 # 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务
 VITE_UPLOAD_TYPE=server

+ 3 - 1
src/views/pms/stat/rdkb/rdProductionBriefs.vue

@@ -203,7 +203,9 @@ onMounted(() => {
         @row-click="handleRowClick">
         <el-table-column prop="projectName" label="项目" min-width="150" align="center">
           <template #default="{ row }">
-            {{ formatText(row.projectName) }}
+            <div class="production-brief-table__summary">
+              {{ formatText(row.projectName) }}
+            </div>
           </template>
         </el-table-column>
         <el-table-column prop="deptName" label="队伍" min-width="110" align="center">

+ 5 - 1
src/views/pms/stat/rhkb/deviceList.vue

@@ -170,7 +170,11 @@ onMounted(() => {
         class="device-list-table"
         :class="{ 'device-list-table--full': props.pageMode === 'full' }"
         @row-click="handleRowClick">
-        <el-table-column prop="projectDeptName" label="项目部" width="140" align="center" />
+        <el-table-column prop="projectDeptName" label="项目部" width="140" align="center">
+          <template #default="{ row }">
+            <div class="device-list-table__summary">{{ row.projectDeptName || '--' }}</div>
+          </template>
+        </el-table-column>
         <el-table-column prop="teamCount" label="队伍总数" width="124" align="center" />
         <el-table-column prop="dmTeamCount" label="待命" width="124" align="center" />
         <el-table-column prop="zbTeamCount" label="施工准备" width="124" align="center" />

+ 10 - 2
src/views/pms/stat/rykb/ryProductionBriefs.vue

@@ -213,8 +213,16 @@ onMounted(() => {
         class="device-list-table production-brief-table"
         :class="{ 'device-list-table--full': props.pageMode === 'full' }">
         <el-table-column prop="projectClassification" label="公司" min-width="72" align="center" />
-        <el-table-column prop="projectName" label="项目" min-width="150" align="center" />
-        <el-table-column prop="deptName" label="队伍" min-width="94" align="center" />
+        <el-table-column prop="projectName" label="项目" min-width="150" align="center">
+          <template #default="{ row }">
+            <div class="production-brief-table__summary">{{ row.projectName || '--' }}</div>
+          </template>
+        </el-table-column>
+        <el-table-column prop="deptName" label="队伍" min-width="94" align="center">
+          <template #default="{ row }">
+            <div class="production-brief-table__summary">{{ row.deptName || '--' }}</div>
+          </template>
+        </el-table-column>
         <el-table-column prop="taskName" label="生产任务" min-width="130" align="center" />
         <el-table-column
           prop="constructionStatusName"