From 49c8b89710f806e3d4e50e86fb90a48baa54af01 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 20 Nov 2024 17:30:55 +0800
Subject: [PATCH] 突发事件模拟加载样式调整、内容语音播放

---
 src/views/space/components/box/dataContent.vue |   28 ++++++++++++++++------------
 1 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/src/views/space/components/box/dataContent.vue b/src/views/space/components/box/dataContent.vue
index 5ecaab6..3f74573 100644
--- a/src/views/space/components/box/dataContent.vue
+++ b/src/views/space/components/box/dataContent.vue
@@ -2,11 +2,11 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2023-03-13 14:54:26
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-11-15 14:58:23
+ * @LastEditTime: 2024-11-19 17:41:11
  * @FilePath: \bigScreen\src\views\space\components\box\dataContent.vue
- * @Description: 
- * 
- * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
+ * @Description:
+ *
+ * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
 -->
 <script setup>
 import EventBus from 'utils/bus'
@@ -28,7 +28,6 @@
   exportBtn: false,
   columns: [
     {
-      label: "名称",
       type: 'input',
       props: 'name',
       placeholder: '请输入名称',
@@ -41,7 +40,7 @@
 const tableData = ref([])
 const pages = {
   page: 1,
-  pageSize: 10,
+  pageSize: 20,
   total: 0,
 }
 
@@ -154,7 +153,7 @@
 // 重置分页数据
 const resetPage = () => {
   pages.page = 1
-  pages.pageSize = 10
+  pages.pageSize = 20
   pages.total = 0
 }
 
@@ -184,12 +183,17 @@
     <global-search :options="options" @searchBtn="searchBtn" @resetBtn="resetBtn"
       ref="SeachBarCondition"></global-search>
 
-    <div class="h0 flex-1 table-content" ref="TableContent">
-      <el-table border :data="tableData" :height="curTableHeight" style="width: 100%" v-loading="loading">
+    <div class="h0 flex-1 table-content" ref="TableContent" v-loading="loading"
+      element-loading-background="rgba(46, 81, 136, 0.9)">
+      <el-table border :data="tableData" :height="curTableHeight" style="width: 100%">
+        <el-table-column align="center" label="序号" width="62" prop="rank">
+          <template #default="{ $index, row }">
+            {{ (pages.page - 1) * pages.pageSize + $index + 1 }}
+          </template>
+        </el-table-column>
         <el-table-column prop="name" label="名称" />
-        <el-table-column prop="emergencySpaceType" label="类型" width="70" />
-        <el-table-column prop="mainFuncName" label="作用" width="60" />
-        <el-table-column width="60" label="操作" align="center">
+        <el-table-column prop="mainFuncName" label="作用" width="62" />
+        <el-table-column width="62" label="操作" align="center">
           <template #default="scope">
             <el-button link type="primary" size="small" :disabled="scope.row.lng == ''" @click="rowClick(scope.row)">
               定位

--
Gitblit v1.9.3