{"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\\reconciliationManagement\\inquiryStatement\\component\\inquiryStatementRecording.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\jd_cgpt_fvue\\src\\views\\Normal\\reconciliationManagement\\inquiryStatement\\component\\inquiryStatementRecording.vue","mtime":1713213612856},{"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//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\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 Breadcrumb from '@/components/Breadcrumb/index.vue'\r\nimport reconciliationManagement from '@/api/BasicDataManagement/reconciliationManagement.js'\r\nimport utils from '@/utils.js'\r\nexport default {\r\n name: 'inquiryStatementRecording',\r\n components: {Breadcrumb},\r\n data() {\r\n return {\r\n breadcrumbOpt: [{breadcrumbName: '对账单查询'}, {breadcrumbName: '详情'}],\r\n parameter: {},\r\n }\r\n },\r\n created() {\r\n if (this.$route.query.detailRows) {\r\n let row = JSON.parse(JSON.stringify(this.$route.query.detailRows))\r\n this.selectOne(row)\r\n }\r\n },\r\n mounted() {},\r\n methods: {\r\n handlerefuse() {\r\n this.$prompt('请输入拒绝原因', '提示', {\r\n confirmButtonText: '确定',\r\n cancelButtonText: '取消',\r\n })\r\n .then(({value}) => {\r\n if (value) {\r\n this.refuse(value)\r\n } else {\r\n this.$message({\r\n type: 'warning',\r\n message: '请输入拒绝原因!',\r\n })\r\n return\r\n }\r\n })\r\n .catch(() => {})\r\n },\r\n selectOne(row) {\r\n reconciliationManagement.selectOne(row.id).then((res) => {\r\n console.log(res, '1111')\r\n this.parameter = res.data.value\r\n if (!this.parameter.detailList) {\r\n this.parameter.detailList = []\r\n }\r\n })\r\n },\r\n // 关闭//面包屑点击\r\n handleClose() {\r\n this.$router.push({\r\n name: 'inquiryStatement',\r\n params: {\r\n pageBean: this.$route.query.pageBean,\r\n },\r\n })\r\n this.parameter = {}\r\n },\r\n //详情\r\n detail(val) {\r\n if (val) {\r\n this.modifychoData(val)\r\n }\r\n },\r\n //获取详情\r\n modifychoData(val) {},\r\n //撤回\r\n withdrawBtn() {\r\n this.$confirm('确定要撤回吗?', '提示', {\r\n confirmButtonText: '确定',\r\n cancelButtonText: '取消',\r\n type: 'warning',\r\n }).then(() => {\r\n reconciliationManagement\r\n .batchReceipt(this.parameter.bizReconciliation.id)\r\n .then((res) => {\r\n if (res.data.state) {\r\n this.$message.success('撤回成功!')\r\n this.$router.go(-1)\r\n }\r\n })\r\n })\r\n },\r\n //发布\r\n shipmentsBtn() {\r\n this.$confirm('确定要发布吗?', '提示', {\r\n confirmButtonText: '确定',\r\n cancelButtonText: '取消',\r\n type: 'warning',\r\n }).then(() => {\r\n reconciliationManagement\r\n .batchSent(this.parameter.bizReconciliation.id)\r\n .then((res) => {\r\n if (res.data.state) {\r\n this.$message.success('发布成功!')\r\n this.$router.go(-1)\r\n }\r\n })\r\n })\r\n },\r\n //确认\r\n handleconfrim() {\r\n this.$confirm('确定要确认吗?', '提示', {\r\n confirmButtonText: '确定',\r\n cancelButtonText: '取消',\r\n type: 'warning',\r\n }).then(() => {\r\n reconciliationManagement\r\n .batchconfrim(this.parameter.bizReconciliation.id)\r\n .then((res) => {\r\n if (res.data.state) {\r\n this.$message.success('确认成功!')\r\n this.$router.go(-1)\r\n }\r\n })\r\n })\r\n },\r\n //拒绝\r\n refuse(refuse) {\r\n reconciliationManagement\r\n .batchRefuset(this.parameter.bizReconciliation.id, refuse)\r\n .then((res) => {\r\n if (res.data.state) {\r\n this.$message.success('已拒绝!')\r\n this.$router.go(-1)\r\n }\r\n })\r\n },\r\n },\r\n}\r\n",null]}