{"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\\Municipal\\SpecialGroupAudit.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\reform-fvue\\src\\views\\ReformSituation\\Municipal\\SpecialGroupAudit.vue","mtime":1742979107291},{"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//\nimport pagination from '@/components/pagination';\nimport { TableMixin } from '@/mixins/tableMixin';\nimport dictUtils from '@/components/dict/DictSelectUtils.js';\nimport utils from '@/utils.js';\nimport EntryDialog from \"./components/entryDialog.vue\";\nimport api from '@/api/ReformSituation/municipal';\nexport default {\n name: 'DepartmentAudit',\n components: {\n pagination: pagination,\n EntryDialog: EntryDialog\n },\n mixins: [TableMixin],\n data: function data() {\n return {\n markLoading: false,\n searchForm: {},\n loading: false,\n tableData: [],\n multipleSelection: [],\n auditStatus: false,\n querys: [{\n group: 'main',\n operation: 'BETWEEN',\n parentGroup: '',\n property: 'CREATE_TIME_',\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: 'EQUAL',\n parentGroup: '',\n property: 'group_name_',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'IN',\n parentGroup: '',\n property: 'status_',\n relation: 'AND',\n value: [3]\n }],\n queryParam: {\n pageBean: {\n page: 1,\n pageSize: 20,\n total: 0\n }\n },\n groupNameOptions: [{\n label: '党建统领体制改革专项小组',\n value: '党建统领体制改革专项小组'\n }, {\n label: '经济体制改革专项小组',\n value: '经济体制改革专项小组'\n }, {\n label: '社会民生领域改革专项小组',\n value: '社会民生领域改革专项小组'\n }, {\n label: '民主与法制领域改革专项小组',\n value: '民主与法制领域改革专项小组'\n }, {\n label: '文化体制改革专项小组',\n value: '文化体制改革专项小组'\n }, {\n label: '平安法治领域改革专项小组',\n value: '平安法治领域改革专项小组'\n } // {\n // label: '其他',\n // value: '其他'\n // }\n ]\n };\n },\n created: function created() {\n this.getData();\n },\n mounted: function mounted() {},\n methods: {\n // 状态按钮筛选\n getTableData: function getTableData(val) {\n if (this.auditStatus != val) {\n this.auditStatus = val;\n this.queryParam.pageBean.page = 1;\n this.querys[3].value = this.auditStatus ? [4, 5, 6, 7] : [3];\n this.handleSearch(1);\n }\n },\n selectHandle: function selectHandle(row) {\n if (row.status != 1) {\n return true;\n }\n },\n getDictName: function getDictName(code, value) {\n return utils.getDictName(code, value);\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 // 撤回\n revocation: function revocation(item) {\n var _this2 = this;\n\n var data = {\n status: 3,\n id: item.id,\n approvalResults: 2\n };\n this.$confirm('确认执行撤销操作吗?', '提示', {\n confirmButtonText: '确定',\n cancelButtonText: '取消',\n type: 'error'\n }).then(function () {\n _this2.markLoading = true;\n api.getUpdateStatus(data).then(function (res) {\n if (res.state) {\n _this2.$message.success('撤销操作成功');\n\n _this2.handleSearch(1);\n }\n\n _this2.markLoading = false;\n });\n }).catch(function () {});\n },\n //获取数据\n getData: function getData() {\n var _this3 = this;\n\n this.loading = true;\n this.tableData = [];\n this.queryParam.querys = this.querys;\n api.getGroupTableData(this.queryParam).then(function (res) {\n if (res.rows) {\n _this3.tableData = res.rows;\n _this3.queryParam.pageBean.page = res.page;\n _this3.queryParam.pageBean.total = res.total;\n\n _this3.$set(_this3.tableData);\n\n _this3.loading = false;\n }\n });\n },\n //修改\n handleDbClick: function handleDbClick(data, title) {\n this.$refs.ProjectsDialog.open(data, title);\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 }\n};",null]}