MrShi
2024-03-01 f3ce372afc816f947ae64ef2935b282087384b0d
admin/src/views/business/retention.vue
@@ -70,12 +70,21 @@
                <el-table-column label="人脸照片" min-width="100px">
                  <template slot-scope="{row}">
                    <el-image v-if="row.faceImgFull!=null"
                              style="width: 80px; height: 80px"
                              :src="row.faceImgFull"
                              :preview-src-list="[row.faceImgFull]">
                      style="width: 80px; height: 80px"
                      :src="row.faceImgFull"
                      :preview-src-list="[row.faceImgFull]">
                    </el-image>
                  </template>
                </el-table-column>
              <el-table-column
                  label="操作"
                  min-width="120"
                  fixed="right"
              >
                <template slot-scope="{row}">
                  <el-button type="text" @click="deleteById(row)" icon="el-icon-delete" v-permissions="['business:retention:delete']">标记离场</el-button>
                </template>
              </el-table-column>
            </el-table>
            <pagination
                @size-change="handleSizeChange"