|
|
@@ -68,14 +68,17 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="所属组织" width="180">
|
|
|
<template #default="{ row }">
|
|
|
- {{ user.info.deptId == row.deptId ? '当前组织' : row.deptName }}
|
|
|
+ {{ row.deptName }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="拍摄时间" width="200">
|
|
|
+ <el-table-column label="拍摄时间" width="160">
|
|
|
<template #default="{ row }">
|
|
|
{{ dateFormat(row.createTime, 'yyyy-MM-dd hh:mm') }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="状态" v-slot:default="{ row }: { row: QuoteScene }">
|
|
|
+ {{ QuoteSceneStatusDesc[row.status] }}
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
<div style="display:flex; justify-content:flex-end; margin-top: 12px;">
|
|
|
@@ -198,6 +201,7 @@
|
|
|
import companySelect from "@/components/company-select/index.vue";
|
|
|
import { ref, computed, nextTick, onMounted } from "vue";
|
|
|
import { Fire, setFire, addFire } from "@/app/fire/store/fire";
|
|
|
+import { QuoteSceneStatusDesc } from "@/constant/scene";
|
|
|
import { reason, place } from "@/app/fire/constant/fire";
|
|
|
import { ElMessage } from "element-plus";
|
|
|
import { dateFormat } from "@/util";
|