{"remainingRequest":"D:\\jenkins\\workspace\\reform-fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\reform-fvue\\src\\views\\ReformSituation\\qxReformSituationPropel.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\reform-fvue\\src\\views\\ReformSituation\\qxReformSituationPropel.vue","mtime":1745219095805},{"path":"D:\\jenkins\\workspace\\reform-fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\reform-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\reform-fvue\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\r\nimport {TableMixin} from '@/mixins/tableMixin'\r\nimport utils from '@/utils.js'\r\nimport pagination from '@/components/pagination/index.vue'\r\nimport AddFormDialog from '@/views/ReformSituation/components/addFormDialog.vue'\r\nimport RefusalDialog from '@/views/ReformSituation/components/refusalDialog.vue'\r\nimport countyApi from '@/api/ReformSituation/countyApi'\r\nexport default {\r\n name: 'qxReformSituationPropel',\r\n components: {\r\n AddFormDialog,\r\n pagination,\r\n RefusalDialog\r\n },\r\n mixins: [TableMixin],\r\n data() {\r\n return {\r\n markLoading: false,\r\n searchForm: {},\r\n loading: false,\r\n tableData: [],\r\n querys: [\r\n {\r\n group: 'main',\r\n operation: 'BETWEEN',\r\n parentGroup: '',\r\n property: 'CREATE_TIME_',\r\n relation: 'AND',\r\n value: ''\r\n },\r\n {\r\n group: 'main',\r\n operation: 'LIKE',\r\n parentGroup: '',\r\n property: 'unit_name_',\r\n relation: 'AND',\r\n value: '',\r\n },\r\n // {\r\n // group: 'main',\r\n // operation: 'IN',\r\n // parentGroup: '',\r\n // property: 'status',\r\n // relation: 'AND',\r\n // value: ['0','1','2','3','4','5'],\r\n // },\r\n ],\r\n queryParam: {\r\n pageBean: {\r\n page: 1,\r\n pageSize: 20,\r\n total: 0,\r\n },\r\n params:{\r\n level:'1'\r\n }\r\n },\r\n // 弹层\r\n addDialogShow:false,\r\n addRow:{},\r\n addTitle:'',\r\n }\r\n },\r\n created() {\r\n this.getData()\r\n },\r\n methods: {\r\n historicalDismissal(data){\r\n this.$refs.refusalDialog.upDate(data)\r\n },\r\n handleSearch(page) {\r\n this.queryParam.querys = []\r\n this.querys.forEach((item) => {\r\n if (item.value !== undefined) {\r\n this.queryParam.querys.push(item)\r\n }\r\n })\r\n if (page) {\r\n this.queryParam.pageBean.page = page\r\n }\r\n this.getData()\r\n },\r\n getData() {\r\n this.loading = true\r\n this.tableData = []\r\n this.queryParam.querys = this.querys\r\n countyApi.booksList(this.queryParam,false).then(res => {\r\n if (res.rows) {\r\n this.tableData = res.rows\r\n this.queryParam.pageBean.page = res.page\r\n this.queryParam.pageBean.total = res.total\r\n this.$set(this.tableData)\r\n this.loading = false\r\n }\r\n })\r\n },\r\n handleDbClick(data,title){\r\n this.$refs.addFormDialog.upDate(data, title)\r\n },\r\n // 撤回\r\n revocation(item) {\r\n // let data = {\r\n // status: 0,\r\n // id: item.recId\r\n // }\r\n this.$confirm('确认执行撤销操作吗?', '提示', {\r\n confirmButtonText: '确定',\r\n cancelButtonText: '取消',\r\n type: 'error'\r\n }).then(() => {\r\n this.markLoading = true\r\n // data.approvalResults = 2\r\n // pilot.updateMunStatus(data, res => {\r\n // if (res.state) {\r\n // this.$message.success('撤销操作成功')\r\n // this.handleSearch(1)\r\n // }\r\n // this.markLoading = false\r\n // })\r\n\r\n })\r\n },\r\n //展示数量\r\n handleSizeChange(val) {\r\n this.queryParam.pageBean.pageSize = val\r\n this.handleSearch(1)\r\n },\r\n //表格页数\r\n handleCurrentChange(val) {\r\n this.queryParam.pageBean.page = val\r\n this.handleSearch(val)\r\n },\r\n onConfirm(){\r\n this.handleSearch(1)\r\n }\r\n }\r\n}\r\n",null]}