|
@@ -0,0 +1,124 @@
|
|
|
+<template>
|
|
|
+ <div class="data-dictionary h100">
|
|
|
+ <common-layout ref="layoutRef" :table-attrs="{
|
|
|
+ 'has-operation':true
|
|
|
+ }" :form-attrs="{
|
|
|
+ 'span-attrs':{
|
|
|
+ span:4
|
|
|
+ }
|
|
|
+ }" :table-header="administratePunishmentRecordRankHeader" :get-table-list="getTableData" :filter-form="formConfig">
|
|
|
+ <template #operation="{data}">
|
|
|
+ <el-button type="info" @click="openDialog('detail',data)">查看</el-button>
|
|
|
+ </template>
|
|
|
+ </common-layout>
|
|
|
+
|
|
|
+ <template v-if="isEditDialogShow">
|
|
|
+ <administrate-punishment-record-rank-detail-dialog @getTableData="getTableData" :is-effective="isEffective" :dialog-operation-type="dialogOperationType" :current-dialog-obj="currentDialogOpObj" v-model:dialog-visible="isEditDialogShow"/>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import {onBeforeMount, ref} from "vue";
|
|
|
+import {useRootStore} from "@/pinia/useStore";
|
|
|
+import CommonLayout from "@/components/CommonLayout.vue";
|
|
|
+import {administratePunishmentRecordRankHeader} from "@/data/all-table-header";
|
|
|
+import {administratePunishmentRecordRank} from "@/data/all-form";
|
|
|
+import {Plus, Search} from "@element-plus/icons-vue"
|
|
|
+import {useDetailOrEdit} from "@/units/use-method/usePagination";
|
|
|
+import {
|
|
|
+ proSelectUnitNewlhjcYWSX,
|
|
|
+ proSelectXyxxJgfkm
|
|
|
+} from "@/service/combined-rewards-and-punishments/combined-rewards-and-punishments-case-information/combined-rewards-and-punishments-case-information";
|
|
|
+import {InsertSyslog} from "@/units/use-method/user-log";
|
|
|
+import {closeShowLoading, showLoading} from "@/units/element-loading/element-loader";
|
|
|
+import AdministratePunishmentRecordRankDetailDialog
|
|
|
+ from "@/views/main/c-views/credit-data/administrate-punishment-record-rank/AdministratePunishmentRecordRankDetailDialog.vue";
|
|
|
+import {
|
|
|
+ queryBadFaithRanking,
|
|
|
+ queryUnitCode
|
|
|
+} from "@/service/credit-data/administrate-punishment-record-rank/administrate-punishment-record-rank";
|
|
|
+export default {
|
|
|
+ name: "AdministratePunishmentRecordRank",
|
|
|
+ components:{
|
|
|
+ AdministratePunishmentRecordRankDetailDialog,
|
|
|
+ CommonLayout},
|
|
|
+ computed: {
|
|
|
+ Plus(){
|
|
|
+ return Plus
|
|
|
+ },
|
|
|
+ Search(){
|
|
|
+ return Search
|
|
|
+ }
|
|
|
+ },
|
|
|
+ setup(){
|
|
|
+ const layoutRef = ref(null);
|
|
|
+ const isEditDialogShow = ref(false);
|
|
|
+ const isEffective = ref(null);
|
|
|
+ const formConfig = ref({...administratePunishmentRecordRank})
|
|
|
+ const {changeOperation,currentOpObj:currentDialogOpObj,operationType:dialogOperationType} = useDetailOrEdit()
|
|
|
+ const store =useRootStore();
|
|
|
+ function getTableData (){
|
|
|
+ showLoading();
|
|
|
+ queryBadFaithRanking({
|
|
|
+ UNIT_CODE:layoutRef.value.form.UNIT_CODE,
|
|
|
+ DATA_TYPE:layoutRef.value.form.DATA_TYPE,
|
|
|
+ IS_EFFECTIVE:layoutRef.value.form.IS_EFFECTIVE,
|
|
|
+ pageIndex:layoutRef.value.pageIndex,
|
|
|
+ pageSize:layoutRef.value.pageSize
|
|
|
+ }).then(res =>{
|
|
|
+ closeShowLoading();
|
|
|
+ InsertSyslog(localStorage.getItem("xyxx_usercode"),localStorage.getItem("xyxx_unitcode"), "信息查询", "行政处罚记录排行榜查询成功", "行政处罚记录排行榜", "")
|
|
|
+ layoutRef.value.getResData(res.msg[0].Rows,res.msg[0].TotalRowCount)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ function getUnit(){
|
|
|
+ queryUnitCode().then(res =>{
|
|
|
+ let tempData = res.msg[0].Rows;
|
|
|
+ handleOptionResult(tempData,"UNIT_CODE");
|
|
|
+ })
|
|
|
+ }
|
|
|
+ function handleOptionResult(tempData,optionItem){ //处理下拉框返回结果
|
|
|
+ let returnOption = [];
|
|
|
+ returnOption = tempData.map(i => ({
|
|
|
+ ...i,
|
|
|
+ label:i.NAME,
|
|
|
+ value:i.UNIT_CODE,
|
|
|
+ }));
|
|
|
+ let option = [
|
|
|
+ {
|
|
|
+ value:'',
|
|
|
+ label:'请选择'
|
|
|
+ }
|
|
|
+ ].concat(returnOption);
|
|
|
+ const formItem = formConfig.value.formItemsArr.find(i => i.modelValue === optionItem);
|
|
|
+ formItem.options = [...option];
|
|
|
+ }
|
|
|
+ onBeforeMount(()=>{
|
|
|
+ getUnit()
|
|
|
+ })
|
|
|
+ function openDialog(type,data){
|
|
|
+ debugger
|
|
|
+ isEditDialogShow.value = true;
|
|
|
+ isEffective.value = layoutRef.value.form.UNIT_CODE;
|
|
|
+ changeOperation(type,data)
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ formConfig,
|
|
|
+ administratePunishmentRecordRankHeader,
|
|
|
+ getTableData,
|
|
|
+ openDialog,
|
|
|
+ layoutRef,
|
|
|
+ isEditDialogShow,
|
|
|
+ isEffective,
|
|
|
+ dialogOperationType,
|
|
|
+ currentDialogOpObj
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+
|
|
|
+</style>
|