gongchunyi
6 小时以前 6a0907fce051418977f2d02ac408d890c28ee273
src/views/safeProduction/dangerInvestigation/index.vue
@@ -86,7 +86,11 @@
                         prop="createTime"
                         width="180"
                         align="center"
                         show-overflow-tooltip />
                         show-overflow-tooltip>
          <template #default="scope">
            {{ formatDate(scope.row.createTime) }}
          </template>
        </el-table-column>
        <el-table-column label="整改完成期限"
                         prop="rectifyTime"
                         width="120"
@@ -326,7 +330,7 @@
          <span class="detail-title">{{ form.createUserName }}</span>
        </el-descriptions-item>
        <el-descriptions-item label="上报时间">
          <span class="detail-title">{{ form.createTime }}</span>
          <span class="detail-title">{{ formatDate(form.createTime) }}</span>
        </el-descriptions-item>
        <el-descriptions-item label="整改责任人">
          <span class="detail-title">{{ form.rectifyUserName }}</span>
@@ -553,6 +557,7 @@
  const userStore = useUserStore();
  const { proxy } = getCurrentInstance();
  const formatDate = date => (date ? dayjs(date).format("YYYY-MM-DD") : "");
  const tableData = ref([]);
  const selectedRows = ref([]);
  const userList = ref([]);