927问题修复

This commit is contained in:
Your Name
2023-09-28 15:05:56 +08:00
parent 9e3fcf5892
commit 3cd0165b17
5 changed files with 92 additions and 55 deletions
@@ -785,12 +785,13 @@ export default {
};
},
watch: {
visible: {
initpaymentArr: {
handler(val) {
if (val) {
this.applicateArr = [];
this.quiltArr = [];
this.formData = this.form;
if (this.flag == "1" || this.flag == "0") {
setTimeout(() => {
this.form2.paymentArr = this.initpaymentArr;
this.form3.paymentArr1 = this.initpaymentArr1;
console.log(this.caseAttachList, "caseAttachList");
@@ -803,11 +804,10 @@ export default {
}
});
this.fileList = this.caseAttachList;
this.fileList.forEach((item)=> {
item["name"]=item.annexName;
this.fileList.forEach((item) => {
item["name"] = item.annexName;
item["certificatePath"] = item.annexPath;
})
}, 1000);
});
}
if (this.flag == "2") {
this.form2.paymentArr = [
@@ -857,7 +857,7 @@ export default {
} else {
this.$message.warning("暂不支持预览");
}
},
},
// 文件上传成功
handlSuccess(res, file) {
@@ -2,26 +2,42 @@
<div>
<!-- 选择仲裁方式页面 -->
<el-dialog
title="审核开庭方式"
title="审核仲裁方式"
:visible="showchoosetrialmethod"
width="500px"
@close="cancel"
:destroy-on-close="true"
>
<div class="radiobox">
<el-descriptions>
<el-descriptions-item label="当前仲裁方式:">
<el-tag size="small">{{
choosetrialmethodata.arbitratMethodName
}}</el-tag>
</el-descriptions-item>
</el-descriptions>
<!-- <div class="radiobox">
<el-radio-group v-model="radio">
<el-radio :label="0">拒绝开庭方式</el-radio>
<el-radio :label="1">同意开庭方式</el-radio>
</el-radio-group>
</div>
</div> -->
<div slot="footer" class="dialog-footer">
<!-- <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" class="endbutton"
><span>提 交</span></el-button
>
<el-button @click="cancel" class="endbutton1"
><span> 取 消</span></el-button
>
</div> -->
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm(1)" class="endbutton"
><span>同 意</span></el-button
>
<el-button class="endbutton1" @click="submitForm(0)"
><span>拒 绝</span></el-button
>
</div>
</el-dialog>
</div>
@@ -33,15 +49,13 @@ export default {
name: "showchoosetrialmethodDialog",
props: ["showchoosetrialmethod", "choosetrialmethodata", "queryParams"],
data() {
return {
radio: 1,
};
return {};
},
methods: {
// 审核仲裁方式 arbitrateMethod
submitForm() {
submitForm(val) {
let paramsdata = {
opinion: this.radio,
opinion: val,
};
let id = {
id: this.choosetrialmethodata.id,
@@ -50,7 +64,7 @@ export default {
.then((res) => {
this.$modal.msgSuccess("提交成功");
this.cancel();
this.$emit("getcaseApply",this.queryParams);
this.$emit("getcaseApply", this.queryParams);
})
.catch((err) => {});
},
@@ -299,8 +299,8 @@ export default {
},
// 打开会议
openmeeting() {
window.open('https://txroom.xayunmei.com');
// window.open(`https://txroom.xayunmei.com/#/home?name=${this.user}`);
// window.open('https://txroom.xayunmei.com');
window.open(`https://txroom.xayunmei.com/#/home?name=${this.user}`);
},
// 提交仲裁结果
openArbitrationresults() {