Browse Source

zzy+行政处罚记录排行榜

zhiyuan-007 11 months ago
parent
commit
9aeb0561fb

+ 2 - 2
.env.production

@@ -1,2 +1,2 @@
-VITE_BASE_API='https://10.90.11.49:2002/data-business-prod/'
-VITE_OPEN_URL='https://10.90.11.49:2002/data-business-prod/'
+VITE_BASE_API='https://cimweb.zjw.sh.cegn.cn:2007/data-business-prod/'
+VITE_OPEN_URL='https://cimweb.zjw.sh.cegn.cn:2007/data-business-prod/'

+ 74 - 0
src/data/all-form.js

@@ -3202,6 +3202,80 @@ export const combinedRewardAndPunishmentsMeasureManageMatterRuleConnect = {
     }
 }
 
+
+export const administratePunishmentRecordRank = {
+    formItemsArr:[
+        {
+            colClass:'mr12',
+            type:'select',
+            label:'是否有效期内',
+            modelValue:'IS_EFFECTIVE',
+            options:[
+                {
+                    value:"",
+                    label:'全部'
+                },
+                {
+                    value:"1",
+                    label:'是'
+                },
+                {
+                    value:"",
+                    label:'否'
+                },
+            ],
+            itemOtherAttrs:{
+                required:false,
+                rules:[
+                    {required:true,message:'请选择是否有效期内',trigger:'change'}
+                ]
+            }
+        },
+        {
+            colClass:'mr12',
+            type:'select',
+            label:'相对人',
+            modelValue:'DATA_TYPE',
+            defaultValue:'法人',
+            options:[
+                {
+                    value:"自然人",
+                    label:'自然人'
+                },
+                {
+                    value:"法人",
+                    label:'法人'
+                },
+            ],
+            itemOtherAttrs:{
+                required:true,
+                rules:[
+                    {required:true,message:'请选择相对人',trigger:'change'}
+                ]
+            }
+        },
+        {
+            colClass:'mr12',
+            type:'select',
+            label:'所属单位',
+            modelValue:'UNIT_CODE',
+            options:[],
+            itemOtherAttrs:{
+                required:true,
+                rules:[
+                    {required:true,message:'请选择所属单位',trigger:'change'}
+                ]
+            }
+        },
+        {
+            type:'slot',
+            slotName:'searchBtn'
+        },
+    ]
+}
+
+
+
 export const matterImputationStaticsSituation = {
     formItemsArr:[
         {

+ 56 - 0
src/data/all-table-header.js

@@ -857,6 +857,62 @@ export const combinedRewardAndPunishmentsMeasureManageMatterRuleConnectSettingDi
     },
 ]
 
+
+export const administratePunishmentRecordRankHeader = [
+    {
+        prop:"XDRMC",
+        label:"行政相对人名称"
+    },
+    {
+        prop:"XDRDM",
+        label:"统一社会信用代码"
+    },
+    {
+        prop:"DATA_COUNT",
+        label:"失信数量"
+    },
+]
+
+export const administratePunishmentRecordRankDetailDialogHeader = [
+    {
+        prop:"A26",
+        label:"处罚机关"
+    },
+    {
+        prop:"A14",
+        label:"处罚文书号"
+    },
+    {
+        prop:"A15",
+        label:"违法行为类型"
+    },
+    {
+        prop:"A16",
+        label:"违法事实"
+    },
+    {
+        prop:"A18",
+        label:"处罚类别"
+    },
+    {
+        prop:"A19",
+        label:"处罚内容"
+    },
+    {
+        prop:"A23",
+        label:"处罚决定日期"
+    },
+    {
+        prop:"A24",
+        label:"处罚有效期"
+    },
+    {
+        prop:"A25",
+        label:"处罚截至期"
+    }
+]
+
+
 export const matterImputationStaticsSituationHeaderJG = [
     {
         prop:"ACCOUNTTYPE",

+ 7 - 5
src/router/index.js

@@ -27,6 +27,8 @@ import UserManage from "@/views/main/c-views/system-manage/user-manage/UserManag
 import UnitManage from "@/views/main/c-views/system-manage/unit-manage/UnitManage.vue";
 import UserLog from "@/views/main/c-views/system-manage/user-log/UserLog.vue";
 import SystemExplain from "@/views/main/c-views/system-manage/system-explain/SystemExplain.vue";
+import AdministratePunishmentRecordRank
+  from "@/views/main/c-views/credit-data/administrate-punishment-record-rank/AdministratePunishmentRecordRank.vue";
 const router = createRouter({
   history: createWebHashHistory(import.meta.env.BASE_URL),
   routes: [
@@ -95,11 +97,6 @@ const router = createRouter({
           name: 'combined-reward-and-punishments-measure-manage',
           component:combinedRewardAndPunishmentsMeasureManage
         },
-        {
-          path: '/main/combined-reward-and-punishments-measure-manage',
-          name: 'combined-reward-and-punishments-measure-manage',
-          component:combinedRewardAndPunishmentsMeasureManage
-        },
         {
           path: '/main/data-imputation-push',
           name: 'data-imputation-push',
@@ -125,6 +122,11 @@ const router = createRouter({
           name: 'data-log',
           component:DataLog
         },
+        {
+          path: '/main/administrate-punishment-record-rank',
+          name: 'administrate-punishment-record-rank',
+          component:AdministratePunishmentRecordRank
+        },
         {
           path: '/main/user-manage',
           name: 'user-manage',

+ 34 - 0
src/service/credit-data/administrate-punishment-record-rank/administrate-punishment-record-rank.js

@@ -0,0 +1,34 @@
+import {requestInstance} from "@/service";
+
+
+//查询单位
+export function queryUnitCode(){
+    return requestInstance({
+        url:'/XyxxApi/queryUnitCode',
+        data:{
+            "DATA_TYPE":'2'
+        }
+    })
+}
+
+
+//获取首页数据
+export function queryBadFaithRanking(params){
+    return requestInstance({
+        url:'/XyxxApi/queryBadFaithRanking',
+        data:{
+            ...params
+        }
+    })
+}
+
+
+//获取详情页数据
+export function queryBadFaithRankingDetails(params){
+    return requestInstance({
+        url:'/XyxxApi/queryBadFaithRankingDetails',
+        data:{
+            ...params
+        }
+    })
+}

+ 1 - 0
src/service/index.js

@@ -69,6 +69,7 @@ requestInstance.interceptors.response.use(function (res) {
             type:'warning',
             message:'登录验证过期,请重新登录'
         })
+        debugger
         router.push('/login')
     }
     return res.data

+ 12 - 0
src/units/use-method/power-control.js

@@ -95,6 +95,10 @@ export  function getMenu(){
                         "path":"data-log",
                         "name":"数据日志"
                     },
+                    {
+                        "path":"administrate-punishment-record-rank",
+                        "name":"行政处罚记录排行榜"
+                    },
                 ],
                 "O_LCON":"iconfont icon-zhuzhuangtu iconColor",
                 "path":"/21",
@@ -253,6 +257,10 @@ export  function getMenu(){
                         "path":"data-log",
                         "name":"数据日志"
                     },
+                    {
+                        "path":"administrate-punishment-record-rank",
+                        "name":"行政处罚记录排行榜"
+                    },
                 ],
                 "O_LCON":"iconfont icon-zhuzhuangtu iconColor",
                 "path":"/21",
@@ -399,6 +407,10 @@ export  function getMenu(){
                         "path":"data-log",
                         "name":"数据日志"
                     },
+                    {
+                        "path":"administrate-punishment-record-rank",
+                        "name":"行政处罚记录排行榜"
+                    },
                 ],
                 "O_LCON":"iconfont icon-zhuzhuangtu iconColor",
                 "path":"/21",

+ 124 - 0
src/views/main/c-views/credit-data/administrate-punishment-record-rank/AdministratePunishmentRecordRank.vue

@@ -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>

+ 136 - 0
src/views/main/c-views/credit-data/administrate-punishment-record-rank/AdministratePunishmentRecordRankDetailDialog.vue

@@ -0,0 +1,136 @@
+<template>
+  <el-dialog
+      :modal="true"
+      :close-on-click-modal="false"
+      :close-on-press-escape="false"
+      width="70%"
+      destroy-on-close
+      :title="currentDialogObj.XDRMC"
+      :model-value="dialogVisible"
+
+      :before-close="handleClose"
+  >
+    <div class="table-part">
+      <my-table border
+                :table-data="tableData"
+                :headers="headerConfig">
+      </my-table>
+    </div>
+      <ele-pagination  ref="refEl"
+                       @sizeOrPageChange="handleSizeChange"
+                       class="page"
+                       :default-page-size="pageSize"
+                       :layout="'slot,sizes,prev,pager,next'"
+                       :total-count="totalCount">
+        <template #default>
+          <div class="m-s">
+            显示第 {{pageSize * (pageIndex -1) + 1 }} 到第 {{pageSize * pageIndex}} 条记录,总共 {{totalCount}} 条记录 共显示
+
+          </div>
+        </template>
+      </ele-pagination>
+  </el-dialog>
+</template>
+
+<script>
+import {Close,Search, Delete, Edit, Plus, SuccessFilled} from "@element-plus/icons-vue";
+import DiyElForm from "@/components/common/DiyElForm.vue";
+import ElePagination from "@/components/common/ElePagination.vue";
+import MyTable from "@/components/common/MyTable.vue";
+import {onBeforeMount, ref} from "vue";
+import {administratePunishmentRecordRankDetailDialogHeader} from "@/data/all-table-header";
+import {combinedRewardAndPunishmentsMeasureManageCaseHistory} from "@/data/all-form";
+import {usePagination} from "@/units/use-method/usePagination";
+import {
+  proSelectXyxxJgfk
+} from "@/service/combined-rewards-and-punishments/combined-rewards-and-punishments-case-information/combined-rewards-and-punishments-case-information";
+import {
+  queryBadFaithRankingDetails
+} from "@/service/credit-data/administrate-punishment-record-rank/administrate-punishment-record-rank";
+
+export default {
+  name: "AdministratePunishmentRecordRankDetailDialog",
+  components: {DiyElForm, ElePagination, MyTable},
+  computed: {
+    Delete() {
+      return Delete
+    },
+    Edit() {
+      return Edit
+    },
+    Plus() {
+      return Plus
+    },
+    SuccessFilled() {
+      return SuccessFilled
+    },
+    Close() {
+      return Close
+    },
+    Search(){
+      return Search
+    }
+  },
+  props:{
+    dialogVisible:{  //是否可见
+
+    },
+    isEffective:{   //是否有效期
+
+    },
+    dialogOperationType:{   //操作类型
+
+    },
+    currentDialogObj:{   //当前选中信息
+
+    },
+  },
+  setup(props,{emit}){
+    debugger
+    const formRef = ref(null);
+    const forms = ref({});
+    const headerConfig = ref([...administratePunishmentRecordRankDetailDialogHeader]);
+    const {pageIndex,pageSize,tableData,totalCount,initSearch,handleSizeChange,refEl}  = usePagination(getTableData.bind(null));
+    const tablePartShow =ref(true);
+    function getTableData(){
+      queryBadFaithRankingDetails({
+        XDRDM:props.currentDialogObj.XDRDM,
+        IS_EFFECTIVE:props.isEffective,
+        pageIndex:pageIndex.value,
+        pageSize:pageSize.value
+      }).then(res =>{
+        let msg = res.msg[0];
+        if(msg.TotalRowCount  > 0){
+          let tempData = msg.Rows;
+          tableData.value = tempData;
+          totalCount.value = res.msg[0].TotalRowCount;
+        }
+      })
+    }
+    function handleClose(){
+      emit('update:dialogVisible',false);
+    }
+    function conform(){
+
+    }
+    onBeforeMount(()=>{
+      getTableData()
+    })
+    return {
+      formRef,
+      forms,
+      headerConfig,
+      pageIndex,pageSize,tableData,totalCount,handleSizeChange,refEl,initSearch,
+      handleClose,
+      conform,
+    }
+  }
+}
+</script>
+
+<style scoped lang="scss">
+.table-part{
+  max-height: 600px;
+  overflow-y: auto;
+}
+</style>

+ 1 - 1
vite.config.js

@@ -16,7 +16,7 @@ export default defineConfig({
       // 代理所有 /api 的请求,该求情将被代理到 target 中
       '/api': {
         // 代理请求之后的请求地址(你的真实接口地址)
-        target: 'https://10.90.11.49:2002/data-business-prod/',
+        target: 'https://cimweb.zjw.sh.cegn.cn:2007/data-business-prod/',
         //target: 'http://localhost:9250/',
         secure: false,
         ws: true,