|
|
|
|
@ -70,7 +70,7 @@
|
|
|
|
|
currentRow.tag |
|
|
|
|
? currentRow.tag |
|
|
|
|
.split(',') |
|
|
|
|
.map(v => getDictLabel(dict.tagList, v)) |
|
|
|
|
.map(v => getDictLabel(dict.sfssTags, v)) |
|
|
|
|
.join(',') |
|
|
|
|
: '/' |
|
|
|
|
}} |
|
|
|
|
@ -1571,7 +1571,7 @@ import {getConfinementListAll} from "@/api/work/confinement";
|
|
|
|
|
import {timeFormat} from "@/utils/util"; |
|
|
|
|
//获取数据 |
|
|
|
|
const catchSotre = useCatchStore(); |
|
|
|
|
const dict = catchSotre.getDicts([ |
|
|
|
|
const baseDict = catchSotre.getDicts([ |
|
|
|
|
"isRectify", |
|
|
|
|
"personType", |
|
|
|
|
"superviseMeasures", |
|
|
|
|
@ -1585,8 +1585,21 @@ const dict = catchSotre.getDicts([
|
|
|
|
|
"resolveSituation", |
|
|
|
|
"resolveStatus", |
|
|
|
|
"checkStatus", |
|
|
|
|
"sfssSourceTable" |
|
|
|
|
]); |
|
|
|
|
"sfssSourceTable", |
|
|
|
|
"sfssTags", |
|
|
|
|
// 如果模板里用到 businessType,建议也补上 |
|
|
|
|
"businessType", |
|
|
|
|
]) |
|
|
|
|
|
|
|
|
|
const dict = computed(() => ({ |
|
|
|
|
...baseDict, |
|
|
|
|
...(props.extraDict || {}), |
|
|
|
|
})) |
|
|
|
|
|
|
|
|
|
const props = defineProps<{ |
|
|
|
|
extraDict?: Record<string, any[]> |
|
|
|
|
}>() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const negative = inject("negative"); |
|
|
|
|
const form = ref({ |
|
|
|
|
|