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
.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({

Loading…
Cancel
Save