@@ -573,8 +573,8 @@ export default {
nameAgent: "",
contactTelphoneAgent: "",
contactAddressAgent: "",
- responSex:1,
- responBirth:""
+ responSex: 1,
+ responBirth: ""
},
],
}, //被申请人主体信息
@@ -874,6 +874,9 @@ export default {
...this.form3.paymentArr1,
];
this.formData.caseAttachList = [...this.caseAttachListArr];
+ this.formData.caseAffiliates[1].responBirth = moment(this.formData.caseAffiliates[1].responBirth).format(
+ "YYYY-MM-DD HH:mm:ss"
+ );
if (this.formData.id) {
editCaseApply({
...this.formData,
diff --git a/src/views/caseManagement/components/choosetrialmethodDaiog.vue b/src/views/caseManagement/components/choosetrialmethodDaiog.vue
index bf3dc4e..91ad14f 100644
--- a/src/views/caseManagement/components/choosetrialmethodDaiog.vue
+++ b/src/views/caseManagement/components/choosetrialmethodDaiog.vue
@@ -56,12 +56,11 @@ export default {
submitForm(val) {
let paramsdata = {
opinion: val,
- ids: [this.choosetrialmethodata.id]
};
- // let id = {
- // id: this.choosetrialmethodata.id,
- // };
- arbitrateMethod(paramsdata)
+ let id = {
+ id: this.choosetrialmethodata.id,
+ };
+ arbitrateMethod(paramsdata,id)
.then((res) => {
this.$modal.msgSuccess("提交成功");
this.cancel();
diff --git a/src/views/caseManagement/components/operateDialog.vue b/src/views/caseManagement/components/operateDialog.vue
index c0f8f12..a6ce9b8 100644
--- a/src/views/caseManagement/components/operateDialog.vue
+++ b/src/views/caseManagement/components/operateDialog.vue
@@ -1,13 +1,13 @@
-
+
{{
- (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
+ (queryParamsData.pageNum - 1) * queryParamsData.pageSize + scope.$index + 1
}}
@@ -25,17 +25,33 @@
-
+
+
+ 同意
+ 拒绝
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/index.vue b/src/views/index.vue
index 7195972..f9afd4e 100644
--- a/src/views/index.vue
+++ b/src/views/index.vue
@@ -41,7 +41,7 @@
待缴费确认
-
+
{{ dataCount.caseApplyGroupCheck }}
@@ -77,6 +77,15 @@
待审核仲裁方式
+
+
{{ dataCount.updateOnlineHearDate }}
+
+

+
+
+
{{ dataCount.caseApplyGroupOnline }}
@@ -175,10 +184,12 @@ export default {
},
// 点击代办案件按钮
pushPage(status) {
- if (status < 10) {
+ if (status == 0 || status == 1 || status == 2 || status == 5 || status == 6 || status == 7 || status == 31 || status == 8 || status == 9) {
this.$router.push({ name: 'CaseManagement/caseList', params: { status: status } })
- } else if (status > 10) {
+ } else if (status == 11 || status == 12 || status == 13 || status == 14 || status == 15 || status == 16) {
this.$router.push({ name: 'AwardManagement/listofAwards', params: { status: status } })
+ } else if (status == 3){
+ this.$router.push({ name: 'PaymentManagement/paymentList', params: { status: status } })
}
}
// goTarget(href) {
diff --git a/src/views/paymentManagement/paymentList.vue b/src/views/paymentManagement/paymentList.vue
index db5fc95..4a5f99d 100644
--- a/src/views/paymentManagement/paymentList.vue
+++ b/src/views/paymentManagement/paymentList.vue
@@ -23,10 +23,10 @@
@keyup.enter.native="handleQuery"
>
@@ -136,10 +136,10 @@ import {
casePay,
} from "@/api/pay/pay";
import paymentdetailsDialog from "./components/paymentdetailsDialog.vue";
-
+import { getDicts } from '@/api/system/dict/data.js'
export default {
name: "paymentList",
- dicts: ["case_status"],
+ // dicts: ["case_status"],
components: { paymentdetailsDialog },
data() {
return {
@@ -180,10 +180,18 @@ export default {
detailform: {}, //缴费详情数据
openDialog: false, //缴费详情数据弹框
flag: null,
+ caseStatus:[]
};
},
created() {
- this.getList();
+ getDicts("case_status").then(res => {
+ this.caseStatus = res.data;
+ let params = this.$route.params.status;
+ if (params >= 0) {
+ this.queryParams.caseStatus = params;
+ }
+ this.getList();
+ })
},
methods: {
/** 搜索按钮操作 */