diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 0d157d6..367782d 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -61,6 +61,21 @@ v-hasPermi="['caseManagement:list:Batchgeneration']">批量生成裁决书 批量缴费 + + 批量缴费确认 + + + + + @@ -239,7 +254,12 @@ - + + + + + + @@ -261,6 +281,9 @@ import operateDialog from './components/operateDialog.vue'; import uploadCaseDialog from './components/uploadCaseDialog.vue'; import caseCompressionPackage from './components/caseCompressionPackage.vue'; import evidenceList from './components/evidenceList.vue' +import batchConfirmationPaymen from './components/batchConfirmationPaymen.vue' +import batchSignature from './components/batchSignature.vue' +import batchPrinting from './components/batchPrinting.vue' // 秘书审核页面 import caseentryExamineDialog from './components/caseentryExamine.vue'; import { caseApplicationDetail } from "@/api/pay/pay"; @@ -269,7 +292,7 @@ import { removeCaseApply, submitCaseApply, selectCaseApply, - updateCaseLockStatus + updateCaseLockStatus, } from "@/api/caseAccess/caseEntry"; import { listDept } from "@/api/system/dept"; import { @@ -301,7 +324,10 @@ export default { uploadCaseDialog, caseentryExamineDialog, caseCompressionPackage, - evidenceList + evidenceList, + batchConfirmationPaymen, + batchSignature, + batchPrinting }, data() { return { @@ -368,6 +394,9 @@ export default { timeVisable: false, timeData: {}, operateVisable: false, + batchVisable:false, + signatureVisable:false,//批量签名 + printingVisable:false, operateData: {}, operateTitle: "", operateStatus: 0, @@ -419,14 +448,36 @@ export default { cancelOperate() { this.operateVisable = false; }, + batchOperate(){ + this.batchVisable = false; + }, + printingOperate(){ + this.printingVisable = false; + }, uploadCaseCancel() { this.uploadCaseVisable = false; }, + signatureOperate(){ + this.signatureVisable = false; + }, + // 上传证据目录弹窗 uploadCase(row) { this.uploadCaseData = row; this.uploadCaseVisable = true; }, + // 批量缴费 + batchConfirmation(){ + this.batchVisable = true; + }, + // 批量签名 + batchSignatures(){ + this.signatureVisable = true; + }, + // 批量用印 + batchPrintings(){ + this.printingVisable = true; + }, // 批量操作弹窗 operateClick(type) { this.operateVisable = true; @@ -731,6 +782,7 @@ export default { courtreviewRow(row) { // console.log(row, "组庭审核"); this.formateCourtData = row; + console.log(row) this.showformateCourt = true; }, cancelcourtReview() { diff --git a/src/views/caseManagement/components/batchConfirmationPaymen.vue b/src/views/caseManagement/components/batchConfirmationPaymen.vue new file mode 100644 index 0000000..d76fdc0 --- /dev/null +++ b/src/views/caseManagement/components/batchConfirmationPaymen.vue @@ -0,0 +1,154 @@ + + \ No newline at end of file diff --git a/src/views/caseManagement/components/batchPrinting.vue b/src/views/caseManagement/components/batchPrinting.vue new file mode 100644 index 0000000..8f7cf96 --- /dev/null +++ b/src/views/caseManagement/components/batchPrinting.vue @@ -0,0 +1,59 @@ + + \ No newline at end of file diff --git a/src/views/caseManagement/components/batchSignature.vue b/src/views/caseManagement/components/batchSignature.vue new file mode 100644 index 0000000..fcaa79a --- /dev/null +++ b/src/views/caseManagement/components/batchSignature.vue @@ -0,0 +1,59 @@ + + \ No newline at end of file diff --git a/src/views/numberManagement/caseNumberList.vue b/src/views/numberManagement/caseNumberList.vue new file mode 100644 index 0000000..628514b --- /dev/null +++ b/src/views/numberManagement/caseNumberList.vue @@ -0,0 +1,70 @@ + + + + + \ No newline at end of file diff --git a/src/views/numberManagement/components/addOrdered.vue b/src/views/numberManagement/components/addOrdered.vue new file mode 100644 index 0000000..c52da84 --- /dev/null +++ b/src/views/numberManagement/components/addOrdered.vue @@ -0,0 +1,96 @@ + + + + \ No newline at end of file diff --git a/vue.config.js b/vue.config.js index 32e1aed..7a285af 100644 --- a/vue.config.js +++ b/vue.config.js @@ -13,7 +13,7 @@ const port = process.env.port || process.env.npm_config_port || 80 // 端口 // const API = 'http://121.40.189.20:9001' //生产 const API = 'http://121.40.189.20:8001' //测试 -// const API = 'http://192.168.3.18:9001' //B +// const API = 'http://192.168.3.18:8001' //B // const API = 'http://192.168.3.77:9001' //Q // vue.config.js 配置说明