Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Mediation-Frontend into gyj
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
<el-button size="mini" @click="caseLog(scope.row)" type="text"
|
||||
icon="el-icon-edit-outline">案件日志</el-button>
|
||||
<el-button size="mini" @click="viewpaymentformRow(scope.row)" type="text"
|
||||
icon="el-icon-edit">查看缴费单</el-button>
|
||||
icon="el-icon-edit" v-if="scope.row.caseFlowId > 2">查看缴费单</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="evidenceUpload(scope.row)"
|
||||
v-hasPermi="['caseManagement:list:evidenceEdit']" v-if="scope.row.caseFlowId <= 9">上传证据</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseFlowId == 15 ||
|
||||
@@ -116,7 +116,7 @@
|
||||
</paymentdetailsDialog>
|
||||
<!-- 案件受理 -->
|
||||
<caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
|
||||
:caseAcceptanceData="caseAcceptanceData" @getList="getList"></caseAcceptance>
|
||||
:caseAcceptanceData="caseAcceptanceData" @getList="getList" :queryParams="queryParams"></caseAcceptance>
|
||||
<!-- 被申请人缴费 -->
|
||||
<respondentPay :openResPay="openResPay" :resPayTitle="resPayTitle" :formResPayDetail="formResPayDetail"
|
||||
:resPayId="resPayId" :resPayForm="resPayForm" :queryParams="queryParams" @getList="getList"
|
||||
|
||||
@@ -545,14 +545,6 @@ export default {
|
||||
this.getUserInfoFn();
|
||||
this.modelFlag = false;
|
||||
this.buttonFlag = true;
|
||||
this.formData = {
|
||||
affiliate: {
|
||||
organizeFlag: 0,
|
||||
respondentSex: 0,
|
||||
},
|
||||
columnValueList: [],
|
||||
caseAttachList: [],
|
||||
};
|
||||
} else if (val == 3) {
|
||||
this.title = "修改案件";
|
||||
this.modelFlag = true;
|
||||
@@ -565,6 +557,20 @@ export default {
|
||||
},
|
||||
addVisable(val) {
|
||||
if (val) {
|
||||
if(this.addModifyData == 1){
|
||||
this.formData = {
|
||||
affiliate: {
|
||||
organizeFlag: 0,
|
||||
respondentSex: 0,
|
||||
},
|
||||
columnValueList: [],
|
||||
caseAttachList: [],
|
||||
};
|
||||
this.$set(this.formData.affiliate, "applicationName", this.getUserInfoList.nickName);
|
||||
this.$set(this.formData.affiliate, "code", this.getUserInfoList.idCard);
|
||||
this.$set(this.formData.affiliate, "applicationEmail", this.getUserInfoList.email);
|
||||
this.$set(this.formData.affiliate, "applicationPhone", this.getUserInfoList.phonenumber);
|
||||
}
|
||||
this.activeName = "first";
|
||||
this.showmediate = false;
|
||||
this.getTemplateFn();
|
||||
@@ -605,7 +611,7 @@ export default {
|
||||
if (item.annexType == 2) {
|
||||
this.applicantEvidence.push(item);
|
||||
} else if (item.annexType == 6) {
|
||||
this.respondentEvidence.push(item);
|
||||
// this.respondentEvidence.push(item);
|
||||
} else if (item.annexType == 7) {
|
||||
this.showmediate = true
|
||||
}
|
||||
@@ -765,8 +771,8 @@ export default {
|
||||
// this.$set(this.formData.affiliate, 'applicantHome', this.formZipData.affiliate.applicantHome);
|
||||
// this.$set(this.formData.affiliate, 'applicantAddress', this.formZipData.affiliate.applicantAddress);
|
||||
// this.$set(this.formData.affiliate, 'contactTelphoneAgent', this.formZipData.affiliate.contactTelphoneAgent);
|
||||
this.$set(this.formData.affiliate, 'nameAgent', this.formZipData.affiliate.nameAgent);
|
||||
this.$set(this.formData.affiliate, 'agentEmail', this.formZipData.affiliate.agentEmail);
|
||||
// this.$set(this.formData.affiliate, 'nameAgent', this.formZipData.affiliate.nameAgent);
|
||||
// this.$set(this.formData.affiliate, 'agentEmail', this.formZipData.affiliate.agentEmail);
|
||||
this.$set(this.formData.affiliate, 'respondentName', this.formZipData.affiliate.respondentName);
|
||||
this.$set(this.formData.affiliate, 'respondentPhone', this.formZipData.affiliate.respondentPhone);
|
||||
this.$set(this.formData.affiliate, 'respondentIdentityNum', this.formZipData.affiliate.respondentIdentityNum);
|
||||
|
||||
@@ -28,12 +28,12 @@
|
||||
</el-radio-group>
|
||||
</el-form-item> -->
|
||||
<el-form-item v-if="courtReviewform.agreeFlag == 0" label="拒绝理由:" prop="rejectReason" :rules="[
|
||||
{
|
||||
required: true,
|
||||
message: '拒绝理由不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
]">
|
||||
{
|
||||
required: true,
|
||||
message: '拒绝理由不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
]">
|
||||
<el-input v-model="courtReviewform.rejectReason" type="textarea" :rows="8" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
@@ -63,7 +63,13 @@ export default {
|
||||
watch: {
|
||||
showAcceptance(val) {
|
||||
if (val) {
|
||||
console.log(this.caseAcceptanceData)
|
||||
console.log(this.caseAcceptanceData);
|
||||
this.courtReviewform = {
|
||||
mediationMethod: 2,
|
||||
paperFlag: 0,
|
||||
arbitrateConfirm: 0,
|
||||
agreeFlag: 1
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
@@ -176,6 +176,7 @@ export default {
|
||||
},
|
||||
watch: {
|
||||
mediationVisable(val) {
|
||||
this.mediaResult = 1;
|
||||
this.recordArr = [];
|
||||
this.recordArrMediate = [];
|
||||
if (this.mediationData.mediationMethod == "1") {
|
||||
@@ -194,7 +195,6 @@ export default {
|
||||
},
|
||||
recordArrMediate(val){
|
||||
if(val.length >= 1){
|
||||
console.log('监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听');
|
||||
this.selectRoido = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user