linwenling
2023-07-18 da3bcff4dc2c242ce14166200bc9dd865e53f491
ruoyi-ui/src/views/clean/index.vue
@@ -116,7 +116,7 @@
      <el-table v-loading="loading" :data="cleanList" :row-key="getRowId" ref="multipleTable" @selection-change="handleSelectionChange" :row-class-name="tableRowClassName">
        <el-table-column type="selection" :reserve-selection="true"  width="55"  align="center" />
        <el-table-column  label="序号" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="80"/>
        <el-table-column fixed label="序号" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="80"/>
        <el-table-column label="类型" prop="kind" sortable width="120" >
          <template slot-scope="scope">
@@ -132,7 +132,8 @@
          <template slot-scope="scope">{{scope.row.happenTime? scope.row.happenTime: '————'}}</template>
        </el-table-column>
        <el-table-column label="备注" prop="remark" sortable width="100" />
        <el-table-column label="电子文件" prop="url" width="100" >
        <el-table-column label="电子文件" prop="url" width="180" align="center">
             <template slot-scope="scope" >
               <div  @click="handleCheck(scope.row)">
               <img
@@ -141,7 +142,7 @@
                 alt=""
                 style="width: 35px; height: 35px;"
                 fit="cover"
                  v-if="scope.row.url !== null"
                v-if="scope.row.url !== ',' "
               >
        <img
                 class="el-upload-list__item-thumbnail"
@@ -149,7 +150,7 @@
                 alt=""
                 style="width: 35px; height: 35px;"
                 fit="cover"
                  v-if="scope.row.url === null"
                v-if="scope.row.url === ','"
        ></div>
             </template>
          </el-table-column>