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