Browse Source

涉访涉诉--标签功能

master
buaixuexideshitongxue 1 month ago
parent
commit
ad735d4837
  1. 21
      src/components/negative/verify-sfss.vue

21
src/components/negative/verify-sfss.vue

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

Loading…
Cancel
Save