{"remainingRequest":"D:\\jenkins\\workspace\\jd_cgpt_fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\jd_cgpt_fvue\\src\\views\\Normal\\ManagementBid\\participateRegistration\\component\\participateRecording.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\jd_cgpt_fvue\\src\\views\\Normal\\ManagementBid\\participateRegistration\\component\\participateRecording.vue","mtime":1719348014190},{"path":"D:\\jenkins\\workspace\\jd_cgpt_fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\jd_cgpt_fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\jd_cgpt_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\r\nimport bankCard from './bankCard.vue'\r\nimport routerManagement from '@/api/BasicDataManagement/routerManagement.js'\r\nimport Breadcrumb from '@/components/Breadcrumb/index.vue'\r\nexport default {\r\n name: 'domesticDialog',\r\n components: {Breadcrumb, bankCard},\r\n props: {\r\n editData: Object,\r\n },\r\n data() {\r\n return {\r\n totalValue: 0,\r\n breadcrumbOpt: [{breadcrumbName: '物资采购'}, {breadcrumbName: '结算'}],\r\n tableData: [],\r\n tableLoading: false,\r\n multipleSelection: [],\r\n queryParam: {\r\n pageBean: {\r\n page: 1,\r\n pageSize: 20,\r\n total: 0,\r\n },\r\n },\r\n querys: [\r\n {\r\n group: 'main',\r\n operation: 'EQUAL',\r\n parentGroup: '',\r\n property: 'status',\r\n relation: 'AND',\r\n value: '3',\r\n },\r\n {\r\n group: 'main',\r\n operation: 'EQUAL',\r\n parentGroup: '',\r\n property: 'noticeType',\r\n relation: 'AND',\r\n value: '1',\r\n },\r\n ],\r\n }\r\n },\r\n created() {\r\n this.addModifyBtn()\r\n this.loadData()\r\n },\r\n mounted() {},\r\n methods: {\r\n open() {\r\n if (this.multipleSelection.length == 0)\r\n return this.$message.warning('请选择结算订单')\r\n this.$refs.child.open(this.multipleSelection) //访问银行卡组件弹窗\r\n },\r\n //勾选数据\r\n selectionChange(val) {\r\n this.multipleSelection = val\r\n this.totalValue = 0\r\n val.forEach((item) => {\r\n this.totalValue += item.price\r\n })\r\n },\r\n //获取记录表\r\n addModifyBtn() {\r\n console.log(this.$route.query.recordData)\r\n },\r\n // 关闭//面包屑点击\r\n handleClose() {\r\n this.$router.push({\r\n name: 'participateRegistration',\r\n params: {\r\n tabsActiveName: 'participateMaterial',\r\n pageBean: this.$route.query.pageBean,\r\n },\r\n })\r\n },\r\n //获取数据\r\n loadData() {\r\n this.tableLoading = true\r\n this.queryParam.querys = []\r\n if (this.querys[0].value) {\r\n this.queryParam.querys.push(this.querys[0])\r\n }\r\n if (this.querys[1].value) {\r\n this.queryParam.querys.push(this.querys[1])\r\n }\r\n this.$http\r\n .post('${portal}/userParticipation/v1/page', this.queryParam)\r\n .then((res) => {\r\n if (res.data.state) {\r\n this.tableData = []\r\n this.tableLoading = false\r\n let data = res.data.value.rows\r\n this.queryParam.pageBean = {\r\n page: res.data.value.page,\r\n pageSize: res.data.value.pageSize,\r\n total: res.data.value.total,\r\n }\r\n data.forEach((item, index) => {\r\n if (item.price != undefined) {\r\n this.tableData.push(item)\r\n }\r\n })\r\n \r\n }\r\n console.log('返回的表格数据', this.tableData)\r\n })\r\n },\r\n load() {\r\n this.loadData()\r\n },\r\n },\r\n}\r\n",null]}