|
|
|
|
@ -58,6 +58,18 @@
|
|
|
|
|
<label>涉及单位</label> |
|
|
|
|
<span>{{ negative.involveDepartName || '/' }}</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="col col-6" v-if="negative.sourceType === '2' && negative.currentRow?.repeatt"> |
|
|
|
|
<label>是否重复件</label> |
|
|
|
|
<span>{{ getDictLable(dict.yesNo, negative.currentRow.repeatt) }}</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="col col-6" v-if="negative.sourceType === '2' && negative.currentRow?.tag"> |
|
|
|
|
<label>标签</label> |
|
|
|
|
<span>{{ getDictLable(dict.sfssTags, negative.currentRow.tag) }}</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="col col-6" v-if="negative.sourceType === '2' && negative.currentRow?.handleMethod"> |
|
|
|
|
<label>办理方式</label> |
|
|
|
|
<span>{{ getDictLable(dict.handleMethodType, negative.currentRow.handleMethod) }}</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="col col-12"> |
|
|
|
|
<label>涉嫌问题</label> |
|
|
|
|
<span>{{ getInvolveProblem(negative.involveProblem, dict.suspectProblem) || '/' }}</span> |
|
|
|
|
@ -82,12 +94,12 @@
|
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<script setup> |
|
|
|
|
import { getInvolveProblem } from "@/utils/util"; |
|
|
|
|
import { getInvolveProblem ,getDictLable } from "@/utils/util"; |
|
|
|
|
const negative = inject('negative') |
|
|
|
|
import useCatchStore from "@/stores/modules/catch"; |
|
|
|
|
const catchSotre = useCatchStore(); |
|
|
|
|
const dict = catchSotre.getDicts([ |
|
|
|
|
"specialSupervision", "suspectProblem" |
|
|
|
|
"specialSupervision", "suspectProblem", "yesNo", "sfssTags", "handleMethodType" |
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
console.log('negative',negative) |
|
|
|
|
|