Browse Source

feat:加上投诉举报特有信息

feature/tsjb-1.0
parent
commit
4935b72202
  1. 16
      src/components/negative/description.vue

16
src/components/negative/description.vue

@ -58,6 +58,18 @@
<label>涉及单位</label> <label>涉及单位</label>
<span>{{ negative.involveDepartName || '/' }}</span> <span>{{ negative.involveDepartName || '/' }}</span>
</div> </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"> <div class="col col-12">
<label>涉嫌问题</label> <label>涉嫌问题</label>
<span>{{ getInvolveProblem(negative.involveProblem, dict.suspectProblem) || '/' }}</span> <span>{{ getInvolveProblem(negative.involveProblem, dict.suspectProblem) || '/' }}</span>
@ -82,12 +94,12 @@
</div> </div>
</template> </template>
<script setup> <script setup>
import { getInvolveProblem } from "@/utils/util"; import { getInvolveProblem ,getDictLable } from "@/utils/util";
const negative = inject('negative') const negative = inject('negative')
import useCatchStore from "@/stores/modules/catch"; import useCatchStore from "@/stores/modules/catch";
const catchSotre = useCatchStore(); const catchSotre = useCatchStore();
const dict = catchSotre.getDicts([ const dict = catchSotre.getDicts([
"specialSupervision", "suspectProblem" "specialSupervision", "suspectProblem", "yesNo", "sfssTags", "handleMethodType"
]); ]);
console.log('negative',negative) console.log('negative',negative)

Loading…
Cancel
Save