Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Mediation-Frontend into gyj
This commit is contained in:
@@ -56,6 +56,14 @@ export function confirmPaid(data) {
|
|||||||
data: data,
|
data: data,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// 缴费确认(被申请人)
|
||||||
|
export function resConfirmPaid(data) {
|
||||||
|
return request({
|
||||||
|
url: "/pay/resConfirmPaid",
|
||||||
|
method: "post",
|
||||||
|
data: data,
|
||||||
|
});
|
||||||
|
}
|
||||||
// 案件id查询缴费清单
|
// 案件id查询缴费清单
|
||||||
export function selectPaymentDetail(data) {
|
export function selectPaymentDetail(data) {
|
||||||
return request({
|
return request({
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询邮件列表
|
||||||
|
export function emailList(data) {
|
||||||
|
return request({
|
||||||
|
url: '/sendMailRecord/list',
|
||||||
|
method: 'get',
|
||||||
|
params: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询短信列表
|
||||||
|
export function smsList(data,params) {
|
||||||
|
return request({
|
||||||
|
url: '/caseApplication/smsRecord',
|
||||||
|
method: 'post',
|
||||||
|
data: data,
|
||||||
|
params:params
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -56,4 +56,23 @@ export function getCodeImg() {
|
|||||||
method: 'get',
|
method: 'get',
|
||||||
timeout: 20000
|
timeout: 20000
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
// 获取手机验证码
|
||||||
|
export function sendCode(data) {
|
||||||
|
return request({
|
||||||
|
url: '/weChatUser/sendCode',
|
||||||
|
method: 'get',
|
||||||
|
params:data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 注册方法
|
||||||
|
export function wxregister(data) {
|
||||||
|
return request({
|
||||||
|
url: '/weChatUser/registerUser',
|
||||||
|
headers: {
|
||||||
|
isToken: false
|
||||||
|
},
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
}
|
}
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
<!-- <el-button size="mini" @click="receivedMediation(scope.row)" type="text" icon="el-icon-edit-outline">被申请人签收</el-button> -->
|
<!-- <el-button size="mini" @click="receivedMediation(scope.row)" type="text" icon="el-icon-edit-outline">被申请人签收</el-button> -->
|
||||||
<el-button size="mini" type="text" icon="el-icon-edit"
|
<el-button size="mini" type="text" icon="el-icon-edit"
|
||||||
@click="evidenceUpload(scope.row)" v-hasPermi="['caseManagement:list:evidenceEdit']">上传证据</el-button>
|
@click="evidenceUpload(scope.row)" v-hasPermi="['caseManagement:list:evidenceEdit']">上传证据</el-button>
|
||||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="caseFilingDetails(scope.row)">归档详情</el-button>
|
<el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseFlowId > 14" @click="caseFilingDetails(scope.row)">归档详情</el-button>
|
||||||
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="payStatus(scope.row)">缴费</el-button> -->
|
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="payStatus(scope.row)">缴费</el-button> -->
|
||||||
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="selectMediator(scope.row)">预约时间</el-button> -->
|
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="selectMediator(scope.row)">预约时间</el-button> -->
|
||||||
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="secretaryConfirm(scope.row)">秘书审核</el-button> -->
|
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="secretaryConfirm(scope.row)">秘书审核</el-button> -->
|
||||||
@@ -113,7 +113,7 @@
|
|||||||
:queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow" :formPayDetailAffiliate="formPayDetailAffiliate"></payDialog>
|
:queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow" :formPayDetailAffiliate="formPayDetailAffiliate"></payDialog>
|
||||||
<!-- 缴费确认查看详情 -->
|
<!-- 缴费确认查看详情 -->
|
||||||
<paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle"
|
<paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle"
|
||||||
:detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma" @getList="getList">
|
:detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma" :isapplicant="isapplicant" @getList="getList">
|
||||||
</paymentdetailsDialog>
|
</paymentdetailsDialog>
|
||||||
<!-- 案件受理 -->
|
<!-- 案件受理 -->
|
||||||
<caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
|
<caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
|
||||||
@@ -250,7 +250,8 @@ export default {
|
|||||||
timeConfirmVisable: false,
|
timeConfirmVisable: false,
|
||||||
timeConfirmData: {},
|
timeConfirmData: {},
|
||||||
confirmTionData:{},
|
confirmTionData:{},
|
||||||
buttonList: []
|
buttonList: [],
|
||||||
|
isapplicant: true, //判断角色申请人或非申请人
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -269,7 +270,7 @@ export default {
|
|||||||
this.payStatus(val);
|
this.payStatus(val);
|
||||||
}else if(type == 3 || type == 45){
|
}else if(type == 3 || type == 45){
|
||||||
// 确认缴费
|
// 确认缴费
|
||||||
this.paymentconfirmationRow(val);
|
this.paymentconfirmationRow(val,type);
|
||||||
}else if(type == 4){
|
}else if(type == 4){
|
||||||
// 受理分配
|
// 受理分配
|
||||||
this.caseAccep(val);
|
this.caseAccep(val);
|
||||||
@@ -589,7 +590,7 @@ export default {
|
|||||||
this.showAcceptance = false
|
this.showAcceptance = false
|
||||||
},
|
},
|
||||||
// 缴费确认
|
// 缴费确认
|
||||||
paymentconfirmationRow(row) {
|
paymentconfirmationRow(row,type) {
|
||||||
this.paymentConfirma = row
|
this.paymentConfirma = row
|
||||||
console.log(this.paymentConfirma)
|
console.log(this.paymentConfirma)
|
||||||
this.paymentDetails({
|
this.paymentDetails({
|
||||||
@@ -599,6 +600,12 @@ export default {
|
|||||||
this.payTitle = "缴费确认"
|
this.payTitle = "缴费确认"
|
||||||
this.flag = 0;
|
this.flag = 0;
|
||||||
this.detailform = {}
|
this.detailform = {}
|
||||||
|
if (type == 3) {
|
||||||
|
// 申请人
|
||||||
|
this.isapplicant = true
|
||||||
|
}else {
|
||||||
|
this.isapplicant = false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
cancelpaymentdetails() {
|
cancelpaymentdetails() {
|
||||||
this.openDialog = false
|
this.openDialog = false
|
||||||
|
|||||||
@@ -97,6 +97,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24" v-if="modelFlag">
|
||||||
|
<el-form-item label="调解申请书:">
|
||||||
|
<div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 3">
|
||||||
|
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
|
||||||
|
{{ item.annexName }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
<el-col :span="24" v-if="modelFlag">
|
<el-col :span="24" v-if="modelFlag">
|
||||||
<el-form-item label="调解书:">
|
<el-form-item label="调解书:">
|
||||||
<div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 7">
|
<div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 7">
|
||||||
@@ -490,13 +499,15 @@ export default {
|
|||||||
applicantEvidence: [], //申请人证据
|
applicantEvidence: [], //申请人证据
|
||||||
respondentEvidence: [], //被申请人证据
|
respondentEvidence: [], //被申请人证据
|
||||||
buttonFlag: true,
|
buttonFlag: true,
|
||||||
getUserInfoList: {}
|
getUserInfoList: {},
|
||||||
|
applicationFlag: null
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
addModifyData(val) {
|
addModifyData(val) {
|
||||||
if (val == 1) {
|
if (val == 1) {
|
||||||
this.title = "新增案件";
|
this.title = "新增案件";
|
||||||
|
this.getUserInfoFn();
|
||||||
this.modelFlag = false;
|
this.modelFlag = false;
|
||||||
this.buttonFlag = true;
|
this.buttonFlag = true;
|
||||||
this.formData = {
|
this.formData = {
|
||||||
@@ -524,48 +535,12 @@ export default {
|
|||||||
if (this.addModifyData != 1) {
|
if (this.addModifyData != 1) {
|
||||||
this.caseApplicationSelectByIdFn(this.caseData.id);
|
this.caseApplicationSelectByIdFn(this.caseData.id);
|
||||||
}
|
}
|
||||||
if (this.formData.affiliate.organizeFlag == 0) {
|
|
||||||
this.formData.affiliate.applicationName = this.getUserInfoList.nickName;
|
|
||||||
this.formData.affiliate.code = this.getUserInfoList.idCard;
|
|
||||||
this.formData.affiliate.applicationEmail = this.getUserInfoList.email;
|
|
||||||
this.formData.affiliate.applicationPhone = this.getUserInfoList.phonenumber;
|
|
||||||
} else if (this.formData.affiliate.organizeFlag == 1) {
|
|
||||||
this.formData.affiliate.nameAgent = this.getUserInfoList.nickName;
|
|
||||||
this.formData.affiliate.agentEmail = this.getUserInfoList.email;
|
|
||||||
this.formData.affiliate.contactTelphoneAgent = this.getUserInfoList.phonenumber;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
formData: {
|
|
||||||
handler(newVal) {
|
|
||||||
if (newVal) {
|
|
||||||
console.log('newVal========newVal==========newVal', newVal);
|
|
||||||
if (newVal.affiliate.organizeFlag == 0) {
|
|
||||||
this.formData.affiliate.applicationName = this.getUserInfoList.nickName;
|
|
||||||
this.formData.affiliate.code = this.getUserInfoList.idCard;
|
|
||||||
this.formData.affiliate.applicationEmail = this.getUserInfoList.email;
|
|
||||||
this.formData.affiliate.applicationPhone = this.getUserInfoList.phonenumber;
|
|
||||||
// this.formData.affiliate.nameAgent = '';
|
|
||||||
// this.formData.affiliate.agentEmail = '';
|
|
||||||
// this.formData.affiliate.contactTelphoneAgent = '';
|
|
||||||
} else if (newVal.affiliate.organizeFlag == 1) {
|
|
||||||
// this.formData.affiliate.applicationName = "";
|
|
||||||
// this.formData.affiliate.code = "";
|
|
||||||
// this.formData.affiliate.applicationEmail = "";
|
|
||||||
// this.formData.affiliate.applicationPhone = "";
|
|
||||||
this.formData.affiliate.nameAgent = this.getUserInfoList.nickName;
|
|
||||||
this.formData.affiliate.agentEmail = this.getUserInfoList.email;
|
|
||||||
this.formData.affiliate.contactTelphoneAgent = this.getUserInfoList.phonenumber;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
deep: true, // 深度监听
|
|
||||||
immediate: true, // 初始化监听
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
console.log(this.formData, "000000000000000000")
|
console.log(this.formData, "000000000000000000")
|
||||||
this.getUserInfoFn();
|
// this.getUserInfoFn();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 切换申请类型 */
|
/** 切换申请类型 */
|
||||||
@@ -576,8 +551,11 @@ export default {
|
|||||||
/**获取申请人信息 */
|
/**获取申请人信息 */
|
||||||
getUserInfoFn() {
|
getUserInfoFn() {
|
||||||
getUserInfo().then(res => {
|
getUserInfo().then(res => {
|
||||||
console.log(res, "信息信息信息信息信息信息信息信息信息信息信息信息信息信息");
|
|
||||||
this.getUserInfoList = res.data;
|
this.getUserInfoList = res.data;
|
||||||
|
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);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
/** 根据案件id获取对应信息 */
|
/** 根据案件id获取对应信息 */
|
||||||
@@ -671,6 +649,23 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
clearValidate(val) {
|
clearValidate(val) {
|
||||||
|
if (val == 0) {
|
||||||
|
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.formData.affiliate.nameAgent = null;
|
||||||
|
this.formData.affiliate.agentEmail = null;
|
||||||
|
this.formData.affiliate.contactTelphoneAgent = null;
|
||||||
|
} else if (val == 1) {
|
||||||
|
this.$set(this.formData.affiliate, "nameAgent", this.getUserInfoList.nickName);
|
||||||
|
this.$set(this.formData.affiliate, "agentEmail", this.getUserInfoList.email);
|
||||||
|
this.$set(this.formData.affiliate, "contactTelphoneAgent", this.getUserInfoList.phonenumber);
|
||||||
|
this.formData.affiliate.applicationName = null;
|
||||||
|
this.formData.affiliate.code = null;
|
||||||
|
this.formData.affiliate.applicationEmail = null;
|
||||||
|
this.formData.affiliate.applicationPhone = null;
|
||||||
|
}
|
||||||
this.$refs["ruleForm"].clearValidate()
|
this.$refs["ruleForm"].clearValidate()
|
||||||
},
|
},
|
||||||
cancel() {
|
cancel() {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="调解方式:" v-if="courtReviewform.agreeFlag == 1">
|
<el-form-item label="调解方式:" v-if="courtReviewform.agreeFlag == 1">
|
||||||
<el-radio-group v-model="courtReviewform.mediationMethod">
|
<el-radio-group v-model="courtReviewform.mediationMethod">
|
||||||
<el-radio :label="1">开庭调解</el-radio>
|
<el-radio :label="1">线上调解</el-radio>
|
||||||
<el-radio :label="2">线下调解</el-radio>
|
<el-radio :label="2">线下调解</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
loanStartDate: "",
|
loanStartDate: "",
|
||||||
title: "开庭调解",
|
title: "线上调解",
|
||||||
applicateArr: [],
|
applicateArr: [],
|
||||||
quiltArr: [],
|
quiltArr: [],
|
||||||
recordArr: [],
|
recordArr: [],
|
||||||
@@ -159,7 +159,7 @@ export default {
|
|||||||
mediationVisable(val) {
|
mediationVisable(val) {
|
||||||
this.recordArr = [];
|
this.recordArr = [];
|
||||||
if (this.mediationData.mediationMethod == "1") {
|
if (this.mediationData.mediationMethod == "1") {
|
||||||
this.title = "开庭调解";
|
this.title = "线上调解";
|
||||||
this.mediationType = true;
|
this.mediationType = true;
|
||||||
} else if (this.mediationData.mediationMethod == "2") {
|
} else if (this.mediationData.mediationMethod == "2") {
|
||||||
this.title = "线下调解";
|
this.title = "线下调解";
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<el-descriptions-item label="案件标的">{{
|
<el-descriptions-item label="案件标的">{{
|
||||||
formPayDetail.caseSubjectAmount
|
formPayDetail.caseSubjectAmount
|
||||||
}}</el-descriptions-item>
|
}}</el-descriptions-item>
|
||||||
<el-descriptions-item label="案件应缴费用">{{
|
<el-descriptions-item label="申请人应缴费用">{{
|
||||||
formPayDetail.feePayable
|
formPayDetail.feePayable
|
||||||
}}</el-descriptions-item>
|
}}</el-descriptions-item>
|
||||||
<el-descriptions-item label="被申请人">{{
|
<el-descriptions-item label="被申请人">{{
|
||||||
@@ -23,6 +23,11 @@
|
|||||||
{{ formPayDetail.caseStatusName }}
|
{{ formPayDetail.caseStatusName }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="驳回原因" v-if="formPayDetail.reason">
|
||||||
|
<el-tag size="mini" type='danger' effect="dark">
|
||||||
|
{{ formPayDetail.reason }}
|
||||||
|
</el-tag>
|
||||||
|
</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
<div class="paySelectType">
|
<div class="paySelectType">
|
||||||
<el-radio-group v-model="paySelect" @input="changPayType">
|
<el-radio-group v-model="paySelect" @input="changPayType">
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<el-dialog :title="title" :visible="openDialog" @close="cancel" :destroy-on-close="true" center>
|
<el-dialog :title="title" :visible="openDialog" @close="cancel" :destroy-on-close="true" center>
|
||||||
<el-form ref="form" :model="form" label-width="90px" :disabled="true">
|
<el-form ref="form" :model="form" label-width="180px" :disabled="true">
|
||||||
<el-form-item label="案件编号:" prop="caseNum">
|
<el-form-item label="案件编号:" prop="caseNum">
|
||||||
<el-input v-model="form.caseNum" placeholder="" />
|
<el-input v-model="form.caseNum" placeholder="" :disabled="true"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="案件标的:" prop="caseSubjectAmount">
|
<el-form-item label="案件标的:" prop="caseSubjectAmount">
|
||||||
<el-input v-model="form.caseSubjectAmount" />
|
<el-input v-model="form.caseSubjectAmount" :disabled="true"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="缴费人:" prop="applicantName">
|
<!-- <el-form-item label="缴费人:" prop="applicantName">
|
||||||
<el-input v-model="form.applicationName" placeholder="" />
|
<el-input v-model="form.applicationName" placeholder="" />
|
||||||
@@ -26,9 +26,21 @@
|
|||||||
{{ item.annexName }}
|
{{ item.annexName }}
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- 判断缴费是否通过 -->
|
||||||
|
<el-form-item label="是否缴费通过:" v-if="flag == 0">
|
||||||
|
<el-radio-group v-model="yesOrNo">
|
||||||
|
<el-radio :label="1">通过</el-radio>
|
||||||
|
<el-radio :label="0">驳回</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 缴费驳回原因-->
|
||||||
|
<el-form-item label="驳回原因:" v-if="yesOrNo == 0" prop="reason" :rules="[{ required: true, message: '请输入驳回原因',trigger: 'blur',},]">
|
||||||
|
<el-input type="textarea" :rows="2" placeholder="请输入驳回原因" v-model="form.reason"></el-input>
|
||||||
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" @click="submitForm" v-if="flag == 0" class="endbutton">确认已缴费</el-button>
|
<!-- <el-button type="primary" @click="submitForm" v-if="flag == 0" class="endbutton">确认已缴费</el-button> -->
|
||||||
|
<el-button type="primary" @click="submitForm" v-if="flag == 0" class="endbutton">确 认</el-button>
|
||||||
<el-button @click="cancel" class="endbutton1">取 消</el-button>
|
<el-button @click="cancel" class="endbutton1">取 消</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
@@ -36,13 +48,16 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { confirmPaid } from '@/api/caseManagement/caseManagement.js'
|
import { confirmPaid, resConfirmPaid } from '@/api/caseManagement/caseManagement.js'
|
||||||
export default {
|
export default {
|
||||||
props: ["openDialog", "title", "flag", "detailform", "getList", "paymentConfirma", "queryParams"],
|
props: ["openDialog", "title", "flag", "detailform", "getList", "paymentConfirma", "queryParams",'isapplicant'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
form: {},
|
form: {
|
||||||
srcList: []
|
reason: '',//驳回原因
|
||||||
|
},
|
||||||
|
yesOrNo: 1,
|
||||||
|
srcList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -53,6 +68,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
openDialog: {
|
||||||
|
handler(val) {
|
||||||
|
if (val) {
|
||||||
|
this.yesOrNo = 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
preview(data) {
|
preview(data) {
|
||||||
@@ -66,16 +88,34 @@ export default {
|
|||||||
let paramsVal = {
|
let paramsVal = {
|
||||||
caseId: this.paymentConfirma.id,
|
caseId: this.paymentConfirma.id,
|
||||||
batchNumber: "",
|
batchNumber: "",
|
||||||
caseFlowId: this.paymentConfirma.caseFlowId
|
caseFlowId: this.paymentConfirma.caseFlowId,
|
||||||
|
yesOrNo: this.yesOrNo,
|
||||||
|
reason: this.form.reason
|
||||||
}
|
}
|
||||||
confirmPaid(paramsVal).then((res) => {
|
this.$refs["form"].validate((valid) => {
|
||||||
this.$message({
|
if (valid) {
|
||||||
message: "确认成功",
|
if (this.isapplicant) {
|
||||||
type: "success",
|
confirmPaid(paramsVal).then((res) => {
|
||||||
});
|
this.$message({
|
||||||
this.cancel();
|
message: "确认成功",
|
||||||
this.$emit("getList", this.queryParams);
|
type: "success",
|
||||||
});
|
});
|
||||||
|
})
|
||||||
|
console.log('申请人');
|
||||||
|
} else {
|
||||||
|
// 被申请人 resConfirmPaid
|
||||||
|
resConfirmPaid(paramsVal).then((res) => {
|
||||||
|
this.$message({
|
||||||
|
message: "确认成功",
|
||||||
|
type: "success",
|
||||||
|
});
|
||||||
|
})
|
||||||
|
console.log('被申请人');
|
||||||
|
}
|
||||||
|
this.cancel();
|
||||||
|
this.$emit("getList", this.queryParams);
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
cancel() {
|
cancel() {
|
||||||
this.$emit("cancelpaymentdetails");
|
this.$emit("cancelpaymentdetails");
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<el-descriptions-item label="案件标的">{{
|
<el-descriptions-item label="案件标的">{{
|
||||||
formResPayDetail.caseSubjectAmount
|
formResPayDetail.caseSubjectAmount
|
||||||
}}</el-descriptions-item>
|
}}</el-descriptions-item>
|
||||||
<el-descriptions-item label="案件应缴费用">{{
|
<el-descriptions-item label="被申请人应缴费用">{{
|
||||||
formResPayDetail.feePayable
|
formResPayDetail.feePayable
|
||||||
}}</el-descriptions-item>
|
}}</el-descriptions-item>
|
||||||
<el-descriptions-item label="被申请人">{{
|
<el-descriptions-item label="被申请人">{{
|
||||||
@@ -23,6 +23,11 @@
|
|||||||
{{ formResPayDetail.caseStatusName }}
|
{{ formResPayDetail.caseStatusName }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="驳回原因" v-if="formResPayDetail.reason">
|
||||||
|
<el-tag size="mini" type='danger' effect="dark">
|
||||||
|
{{ formResPayDetail.reason }}
|
||||||
|
</el-tag>
|
||||||
|
</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
<div class="paySelectType">
|
<div class="paySelectType">
|
||||||
<el-radio-group v-model="paySelect" @input="changPayType">
|
<el-radio-group v-model="paySelect" @input="changPayType">
|
||||||
|
|||||||
@@ -0,0 +1,104 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
||||||
|
<el-form-item label="案件编号" prop="caseNum">
|
||||||
|
<el-input v-model="queryParams.caseNum" placeholder="请输入案件编号" clearable @keyup.enter.native="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
||||||
|
<el-table-column label="序号" type="index" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{
|
||||||
|
(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
|
||||||
|
}}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="案件编号" align="center" prop="caseNum" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="名称" align="center" prop="mailName" :show-overflow-tooltip="true" />
|
||||||
|
<!-- <el-table-column label="证件号码" align="center" prop="caseNum" :show-overflow-tooltip="true" /> -->
|
||||||
|
<el-table-column label="邮箱地址" align="center" prop="mailAddress" />
|
||||||
|
<el-table-column label="发送时间" align="center" prop="sendTime" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="发送状态" align="center" prop="sendStatus" />
|
||||||
|
<!-- <el-table-column label="文书类型" align="center" prop="hearDate" :show-overflow-tooltip="true" /> -->
|
||||||
|
<!-- 缴费人 -->
|
||||||
|
<!-- <el-table-column label="案件状态" align="center" prop="caseStatusName" /> -->
|
||||||
|
<el-table-column label="内容" align="center" prop="mailContent"></el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList(queryParams)" />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
emailList,
|
||||||
|
} from "@/api/deliveryRecord/deliveryRecord.js";
|
||||||
|
|
||||||
|
import { getDicts } from '@/api/system/dict/data.js'
|
||||||
|
export default {
|
||||||
|
name: "paymentList",
|
||||||
|
dicts: ["case_status"],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
caseStatus: [],
|
||||||
|
// 遮罩层
|
||||||
|
loading: false,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 表格数据
|
||||||
|
form: {},
|
||||||
|
// 校验表单
|
||||||
|
rules: {},
|
||||||
|
dataList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
getDicts("case_status").then(res => {
|
||||||
|
this.caseStatus = res.data;
|
||||||
|
this.getList(this.queryParams);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList(this.queryParams);
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 查询列表数据
|
||||||
|
getList(parms) {
|
||||||
|
this.loading = true;
|
||||||
|
emailList(parms).then((response) => {
|
||||||
|
this.dataList = response.rows;
|
||||||
|
this.dataList.forEach(item => {
|
||||||
|
if (item.sendStatus == 0) {
|
||||||
|
item.sendStatus = "未发送"
|
||||||
|
} else if (item.sendStatus == 1) {
|
||||||
|
item.sendStatus = "已发送"
|
||||||
|
} else {
|
||||||
|
item.sendStatus = "未发送"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
||||||
|
<el-form-item label="案件编号" prop="caseNum">
|
||||||
|
<el-input v-model="queryParams.caseNum" placeholder="请输入案件编号" clearable @keyup.enter.native="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
||||||
|
<el-table-column label="序号" type="index" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{
|
||||||
|
(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
|
||||||
|
}}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="案件编号" align="center" prop="caseNum" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="手机号" align="center" prop="phone" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="发送时间" align="center" prop="sendTime" />
|
||||||
|
<el-table-column label="发送状态" align="center" prop="sendStatus" />
|
||||||
|
<el-table-column label="发送内容" align="center" prop="sendContent" :show-overflow-tooltip="true" />
|
||||||
|
</el-table>
|
||||||
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList({caseNum:queryParams.caseNum},{pageNum:queryParams.pageNum,pageSize:queryParams.pageSize})" />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
smsList,
|
||||||
|
} from "@/api/deliveryRecord/deliveryRecord.js";
|
||||||
|
|
||||||
|
import { getDicts } from '@/api/system/dict/data.js'
|
||||||
|
export default {
|
||||||
|
name: "paymentList",
|
||||||
|
dicts: ["case_status"],
|
||||||
|
components: { },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
caseStatus: [],
|
||||||
|
// 遮罩层
|
||||||
|
loading: false,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 表格数据
|
||||||
|
form: {},
|
||||||
|
// 校验表单
|
||||||
|
rules: {},
|
||||||
|
dataList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
getDicts("case_status").then(res => {
|
||||||
|
this.getList({caseNum:this.queryParams.caseNum},{pageNum:this.queryParams.pageNum,pageSize:this.queryParams.pageSize});
|
||||||
|
})
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList({caseNum:this.queryParams.caseNum},{pageNum:this.queryParams.pageNum,pageSize:this.queryParams.pageSize});
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 查询列表数据
|
||||||
|
getList(data,params) {
|
||||||
|
this.loading = true;
|
||||||
|
smsList(data,params).then((response) => {
|
||||||
|
this.dataList = response.rows;
|
||||||
|
this.dataList.forEach(item=>{
|
||||||
|
if(item.sendStatus == 0){
|
||||||
|
item.sendStatus = "发送失败"
|
||||||
|
}else if(item.sendStatus == 1){
|
||||||
|
item.sendStatus = "已送达"
|
||||||
|
}else if(item.sendStatus == 2){
|
||||||
|
item.sendStatus = "已读取"
|
||||||
|
}else{
|
||||||
|
item.sendStatus = "发送失败"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
||||||
+71
-10
@@ -29,6 +29,39 @@
|
|||||||
<svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />
|
<svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />
|
||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item prop="identityNo">
|
||||||
|
<el-input v-model="registerForm.identityNo" type="text" auto-complete="off" placeholder="身份证号码">
|
||||||
|
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="email">
|
||||||
|
<el-input v-model="registerForm.email" type="text" auto-complete="off" placeholder="邮箱">
|
||||||
|
<svg-icon slot="prefix" icon-class="email" class="el-input__icon input-icon" />
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="name">
|
||||||
|
<el-input v-model="registerForm.name" type="text" auto-complete="off" placeholder="用户名">
|
||||||
|
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="phone">
|
||||||
|
<el-input
|
||||||
|
v-model="registerForm.phone"
|
||||||
|
auto-complete="off"
|
||||||
|
placeholder="手机号"
|
||||||
|
style="width: 63%"
|
||||||
|
>
|
||||||
|
<svg-icon slot="prefix" icon-class="phone" class="el-input__icon input-icon" />
|
||||||
|
</el-input>
|
||||||
|
<div class="register-code">
|
||||||
|
<el-button type="primary" :disabled="codeDisabled" @click="getCodeNumber(registerForm.phone)">{{codeText}}</el-button>
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="verifyCode">
|
||||||
|
<el-input v-model="registerForm.verifyCode" type="text" auto-complete="off" placeholder="手机验证码">
|
||||||
|
<svg-icon slot="prefix" icon-class="validCode" class="el-input__icon input-icon" />
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item prop="code" v-if="captchaEnabled">
|
<el-form-item prop="code" v-if="captchaEnabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="registerForm.code"
|
v-model="registerForm.code"
|
||||||
@@ -67,7 +100,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getCodeImg, register } from "@/api/login";
|
import { getCodeImg, register, sendCode, wxregister } from "@/api/login";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Register",
|
name: "Register",
|
||||||
@@ -80,13 +113,16 @@ export default {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
return {
|
return {
|
||||||
|
codeText: "发送验证码",
|
||||||
|
codeDisabled:false,
|
||||||
codeUrl: "",
|
codeUrl: "",
|
||||||
registerForm: {
|
registerForm: {
|
||||||
username: "",
|
username: "",
|
||||||
password: "",
|
password: "",
|
||||||
|
phone:"",
|
||||||
confirmPassword: "",
|
confirmPassword: "",
|
||||||
code: "",
|
code: "",
|
||||||
uuid: ""
|
uuid: "",
|
||||||
},
|
},
|
||||||
registerRules: {
|
registerRules: {
|
||||||
username: [
|
username: [
|
||||||
@@ -124,7 +160,7 @@ export default {
|
|||||||
this.$refs.registerForm.validate(valid => {
|
this.$refs.registerForm.validate(valid => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
register(this.registerForm).then(res => {
|
wxregister(this.registerForm).then(res => {
|
||||||
const username = this.registerForm.username;
|
const username = this.registerForm.username;
|
||||||
this.$alert("<font color='red'>恭喜你,您的账号 " + username + " 注册成功!</font>", '系统提示', {
|
this.$alert("<font color='red'>恭喜你,您的账号 " + username + " 注册成功!</font>", '系统提示', {
|
||||||
dangerouslyUseHTMLString: true,
|
dangerouslyUseHTMLString: true,
|
||||||
@@ -140,7 +176,31 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
|
getCodeNumber(data) {
|
||||||
|
sendCode({
|
||||||
|
phone: data
|
||||||
|
}).then(res => {
|
||||||
|
if (res.code != 200) {
|
||||||
|
this.$modal.msgError(res.msg);
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
this.$modal.msgSuccess('发送成功');
|
||||||
|
let time = 60;
|
||||||
|
let timer = setInterval(() => {
|
||||||
|
time--;
|
||||||
|
this.codeDisabled = true;
|
||||||
|
this.codeText = time + 's重试'
|
||||||
|
if (time == 0) {
|
||||||
|
clearInterval(timer)
|
||||||
|
this.codeText = '发送验证码'
|
||||||
|
this.codeDisabled = false;
|
||||||
|
}
|
||||||
|
}, 1000)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@@ -164,13 +224,14 @@ export default {
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
width: 400px;
|
width: 400px;
|
||||||
|
height: 90%;
|
||||||
padding: 25px 25px 5px 25px;
|
padding: 25px 25px 5px 25px;
|
||||||
.el-input {
|
// .el-input {
|
||||||
height: 38px;
|
// height: 38px;
|
||||||
input {
|
// input {
|
||||||
height: 38px;
|
// height: 38px;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
.input-icon {
|
.input-icon {
|
||||||
height: 39px;
|
height: 39px;
|
||||||
width: 14px;
|
width: 14px;
|
||||||
|
|||||||
+2
-1
@@ -12,7 +12,7 @@ const name = process.env.VUE_APP_TITLE || '调解系统' // 网页标题
|
|||||||
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
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:9001' //生产
|
||||||
const API = 'http://121.40.189.20:6001' //测试
|
// const API = 'http://121.40.189.20:6001' //测试
|
||||||
// const API = 'http://192.168.3.18:6001' //B
|
// const API = 'http://192.168.3.18:6001' //B
|
||||||
// const API = 'http://172.16.0.237:6001' //Q
|
// const API = 'http://172.16.0.237:6001' //Q
|
||||||
// const API = 'http://172.16.1.43:6001' //w
|
// const API = 'http://172.16.1.43:6001' //w
|
||||||
@@ -61,6 +61,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
configureWebpack: {
|
configureWebpack: {
|
||||||
name: name,
|
name: name,
|
||||||
|
devtool: '#eval-source-map',
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
'@': resolve('src')
|
'@': resolve('src')
|
||||||
|
|||||||
Reference in New Issue
Block a user