{"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\\MajorProjectManagement\\ReadyStart\\StartAdvanceEntry.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\reform-fvue\\src\\views\\MajorProjectManagement\\ReadyStart\\StartAdvanceEntry.vue","mtime":1741235516720},{"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":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\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 utils from '@/utils.js';\nimport apiList from '@/api/MajorProject';\nimport ProjectDialog from \"../ProjectDialog.vue\";\nexport default {\n name: 'StartCreateEntry',\n components: {\n pagination: pagination,\n ProjectDialog: ProjectDialog\n },\n mixins: [TableMixin],\n data: function data() {\n return {\n markLoading: false,\n searchForm: {},\n loading: false,\n tableData: [],\n multipleSelection: [],\n queryParam: {\n pageBean: {\n page: 1,\n pageSize: 20,\n total: 0\n },\n querys: [{\n group: 'main',\n operation: 'LIKE',\n parentGroup: '',\n property: 'project_name_',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'LIKE',\n parentGroup: '',\n property: 'group_Name_',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'LIKE',\n parentGroup: '',\n property: 'm.unit_Name_',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'year(m.create_time_)',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'project_Field_',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'project_Runway_',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'project_Type_',\n relation: 'AND',\n value: 2\n }, {\n group: 'main',\n operation: 'IN',\n parentGroup: '',\n property: 'p.status',\n relation: 'AND',\n value: []\n }, {\n group: 'main',\n operation: 'LIKE',\n property: 'project_Category_',\n relation: 'AND',\n value: ''\n }]\n }\n };\n },\n created: function created() {\n this.getData();\n },\n mounted: function mounted() {},\n methods: {\n // 推进更新\n advanceRenewal: function advanceRenewal(title, data) {\n this.$refs.majorProjectsDialog.openDialog(title, data);\n },\n advanceReport: function advanceReport(row, status) {\n var _this = this;\n\n var msg = status ? '上报' : '撤回';\n this.$confirm(\"\\u786E\\u8BA4\".concat(msg, \"\\u5417\\uFF1F\"), '提示', {\n confirmButtonText: '确认',\n cancelButtonText: '取消',\n type: 'warning'\n }).then(function () {\n _this.markLoading = true;\n var pid = row.pid,\n id = row.id;\n var data = {\n id: pid,\n status: status,\n projectId: id,\n approvalResults: status ? '' : '2'\n };\n apiList.updateStatusById(data, function (res) {\n if (res.state) {\n _this.$message.success(\"\".concat(msg, \"\\u6210\\u529F\"));\n\n row.pstatus = status;\n }\n\n _this.markLoading = false;\n });\n });\n },\n getDictName: function getDictName(code, value) {\n return utils.getDictName(code, value);\n },\n handleSearch: function handleSearch(page) {\n if (page) {\n this.queryParam.pageBean.page = page;\n }\n\n this.getData();\n },\n //获取数据\n getData: function getData() {\n var _this2 = this;\n\n this.loading = true;\n this.tableData = [];\n apiList.getAdvanceData(this.queryParam, false, 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; // this.$set(this.tableData)\n\n _this2.loading = 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 }\n};",null]}