| | |
| | | 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" |
| | |
| | | <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> |
| | |
| | | |
| | | 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([]); |