艺术家
2025-06-11 fa837d5f98b6d66185d5fb171948d90bd5acd793
ÏîÄ¿´úÂë/¿ÉÊÓ»¯´óÆÁ/client/src/views/Index.vue
@@ -5,7 +5,7 @@
        display: flex;
        justify-content: center;
        color: #fff;
        font-size: 15rem;
        font-size: 23rem;
        letter-spacing: 5rem;
        font-weight: bold;
      "
@@ -20,7 +20,7 @@
        align-items: center;
        color: #fff;
        font-size: 3rem;
        margin-top: 3rem;
        margin-top: 1rem;
      "
    >
      <div
@@ -47,7 +47,7 @@
        color: #fff;
        font-weight: bold;
        margin-top: 5rem;
        font-size: 10rem;
        font-size: 12rem;
      "
    >
      <span> CR400AF</span>
@@ -83,7 +83,7 @@
          <div
            style="
              height: 5rem;
              font-size: 6rem;
              font-size: 7rem;
              font-weight: bold;
              display: flex;
              align-items: center;
@@ -120,8 +120,8 @@
          >
            <div
              style="
                width: 40%;
                font-size: 6rem;
                width: 45%;
                font-size: 8rem;
                color: #fff;
                background-color: #058f66;
                border-radius: 1.5rem;
@@ -133,8 +133,8 @@
            </div>
            <div
              style="
                width: 40%;
                font-size: 6rem;
                width: 45%;
                font-size: 8rem;
                color: #fff;
                background-color: #d9001b;
                border-radius: 1.5rem;
@@ -151,20 +151,30 @@
            color: #fff;
            font-size: 5rem;
            display: flex;
            width: 90%;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            margin-top: 5rem;
            margin-top: 12rem;
            padding: 0 1rem;
          "
        >
          <div style="color: #fff">检修人员列表</div>
          <div style="color: #fff">
            æ­£åœ¨æ£€ä¿®äººå‘˜æ•°é‡:
            <span style="font-size: 4rem">{{ totalCount }}</span
          <div>
            <img
              style="width: 6rem; height: 6rem"
              src="@/assets/imgs/工单管理.png"
              alt=""
            />
            <span style="color: #fff; font-size: 7rem; font-weight: bold"
              >作业人员列表</span
            >
          </div>
          <div style="color: #fff; font-size: 4rem">
            æ­£åœ¨ä½œä¸šäººå‘˜æ•°é‡:
            <span style="font-size: 4rem">{{ pageTotal }}</span
            >位
          </div>
        </div>
        <div style="width: 90%; margin-top: 2rem">
        <div style="width: 98%; margin-top: 2rem">
          <el-table
            empty-text="暂无数据"
            :data="tableData"
@@ -179,14 +189,9 @@
            :cell-style="{
              color: '#fff',
              background: 'rgba(23, 87, 149, 0.9)',
              fontSize: '2.5rem',
            }"
          >
            <el-table-column
              prop="userTrueName"
              label="序号"
              align="center"
              min-width="1%"
            />
            <el-table-column
              prop="userTrueName"
              label="姓名"
@@ -194,7 +199,7 @@
              min-width="1%"
            />
            <el-table-column
              prop="userteam"
              prop="unit"
              label="单位"
              align="center"
              min-width="1%"
@@ -217,14 +222,8 @@
              >
            </el-table-column>
            <el-table-column
              prop="maintenanceDate"
              label="日期"
              align="center"
              min-width="2%"
            />
            <el-table-column
              prop="maintenanceDate"
              label="上线时间"
              prop="maintenancStartTime"
              label="开始时间"
              align="center"
              min-width="2%"
            />
@@ -234,11 +233,10 @@
        <div
          style="
            position: absolute;
            bottom: 4%;
            bottom: 2%;
            color: #fff;
            font-weight: bold;
            font-size: 3rem;
            margin-top: 2rem;
            font-size: 5rem;
          "
        >
          {{ currentTime }}
@@ -261,7 +259,7 @@
//分页请求参数
const pageQuery = ref({
  page: 1, //当前页面
  rows: 20, //每页显示条数
  rows: 1000, //每页显示条数
  order: "desc", //排序方式
  sort: "", //排序字段
  wheres: "", //条件查询
@@ -276,8 +274,6 @@
    pageIndex: pageQuery.value.page,
    pageSize: pageQuery.value.rows,
    searchKeyword: queryForm.value.inputcontent,
    status: queryForm.value.selectType,
    account: "admin",
  }).then((res) => {
    tableData.value = res.data.items;
    pageTotal.value = res.data.totalCount;