调解员排序
This commit is contained in:
@@ -507,6 +507,7 @@ export default {
|
|||||||
addVisable(val) {
|
addVisable(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
this.activeName = "first";
|
this.activeName = "first";
|
||||||
|
this.getTemplateFn();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -14,8 +14,15 @@
|
|||||||
<el-form-item label="缴费金额:" prop="feePayable">
|
<el-form-item label="缴费金额:" prop="feePayable">
|
||||||
<el-input v-model="form.feePayable" />
|
<el-input v-model="form.feePayable" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="缴费凭证:" prop="caseStatusName">
|
<el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList.length > 0">
|
||||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index" @click="preview(item.annexPath)">
|
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index"
|
||||||
|
@click="preview(item.annexPath)">
|
||||||
|
{{ item.annexName }}
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="被申请人缴费凭证:" v-if="form.resCaseAttachList.length > 0">
|
||||||
|
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.resCaseAttachList" :key="index"
|
||||||
|
@click="preview(item.annexPath)">
|
||||||
{{ item.annexName }}
|
{{ item.annexName }}
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -29,9 +36,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {confirmPaid} from '@/api/caseManagement/caseManagement.js'
|
import { confirmPaid } 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"],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
form: {},
|
form: {},
|
||||||
@@ -42,7 +49,6 @@ export default {
|
|||||||
detailform: {
|
detailform: {
|
||||||
handler(val) {
|
handler(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
console.log(val,"PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP");
|
|
||||||
this.form = val;
|
this.form = val;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -58,19 +64,18 @@ export default {
|
|||||||
// 确认缴费
|
// 确认缴费
|
||||||
submitForm() {
|
submitForm() {
|
||||||
let paramsVal = {
|
let paramsVal = {
|
||||||
caseId:this.paymentConfirma.id,
|
caseId: this.paymentConfirma.id,
|
||||||
batchNumber:"",
|
batchNumber: "",
|
||||||
caseFlowId:this.paymentConfirma.caseFlowId
|
caseFlowId: this.paymentConfirma.caseFlowId
|
||||||
}
|
}
|
||||||
confirmPaid(paramsVal).then((res) => {
|
confirmPaid(paramsVal).then((res) => {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: "确认成功",
|
message: "确认成功",
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
|
||||||
this.cancel();
|
this.cancel();
|
||||||
this.$emit("getList", this.queryParams);
|
this.$emit("getList", this.queryParams);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
cancel() {
|
cancel() {
|
||||||
this.$emit("cancelpaymentdetails");
|
this.$emit("cancelpaymentdetails");
|
||||||
|
|||||||
Reference in New Issue
Block a user