bug调试发起会议传入案件id

This commit is contained in:
Your Name
2023-10-10 16:22:52 +08:00
parent 0a590130c7
commit 1076a9f2c0
5 changed files with 25 additions and 12 deletions
+8
View File
@@ -49,3 +49,11 @@ export function evidenceUpload(data) {
data: data, data: data,
}); });
} }
// 案件日志列表查询
export function caseLogRecordList(data) {
return request({
url: "/caseLogRecord/list",
method: "get",
params: data,
});
}
+7 -2
View File
@@ -146,7 +146,7 @@
<el-button <el-button
size="mini" size="mini"
type="text" type="text"
icon="el-icon-zoom-in" icon="el-icon-notebook-2"
@click="caselogRow(scope.row)" @click="caselogRow(scope.row)"
v-hasPermi="['monitor:online:forceLogout']" v-hasPermi="['monitor:online:forceLogout']"
>案件日志</el-button >案件日志</el-button
@@ -355,6 +355,7 @@
:payTitle="payTitle" :payTitle="payTitle"
:form="form" :form="form"
:payForm="payForm" :payForm="payForm"
:queryParams="queryParams"
@getcaseApply="getcaseApply" @getcaseApply="getcaseApply"
@paycancelRow="paycancelRow" @paycancelRow="paycancelRow"
></payDialog> ></payDialog>
@@ -386,7 +387,7 @@ import {
submitCaseApply, submitCaseApply,
selectCaseApply, selectCaseApply,
} from "@/api/caseAccess/caseEntry"; } from "@/api/caseAccess/caseEntry";
import { document } from "@/api/caseManagement/caseManagement"; import { document, caseLogRecordList } from "@/api/caseManagement/caseManagement";
export default { export default {
name: "caseList", name: "caseList",
@@ -540,6 +541,10 @@ export default {
// 案件日志 // 案件日志
caselogRow(row) { caselogRow(row) {
this.showcaseLog = true; this.showcaseLog = true;
},
// 查询案件日志信息
caseLogRecordListFn() {
}, },
// 关闭案件日志 // 关闭案件日志
cancelcaseLog() { cancelcaseLog() {
@@ -696,14 +696,14 @@ export default {
}, //被申请人主体信息 }, //被申请人主体信息
// 表单校验 // 表单校验
rules: { rules: {
caseNum: [ // caseNum: [
{ // {
required: true, // required: true,
message: "案件编号不能为空", // message: "案件编号不能为空",
trigger: "blur", // trigger: "blur",
}, // },
{ max: 20, message: "长度应小于20个字符", trigger: "blur" }, // { max: 20, message: "长度应小于20个字符", trigger: "blur" },
], // ],
caseSubjectAmount: [ caseSubjectAmount: [
{ {
required: true, required: true,
@@ -47,7 +47,7 @@
import { casePay, selectCaseApplicationConfirm } from "@/api/pay/pay"; import { casePay, selectCaseApplicationConfirm } from "@/api/pay/pay";
import QRCode from "qrcodejs2"; import QRCode from "qrcodejs2";
export default { export default {
props: ["openPay", "payTitle", "form", "payForm"], props: ["openPay", "payTitle", "form", "payForm", "queryParams"],
data() { data() {
return { return {
// key: value // key: value
@@ -300,7 +300,7 @@ export default {
// 打开会议 // 打开会议
openmeeting() { openmeeting() {
// window.open('https://txroom.xayunmei.com'); // window.open('https://txroom.xayunmei.com');
window.open(`https://txroom.xayunmei.com/#/home?name=${this.user}`); window.open(`https://txroom.xayunmei.com/#/home?name=${this.user}&id=${this.formData.id}`);
}, },
// 提交仲裁结果 // 提交仲裁结果
openArbitrationresults() { openArbitrationresults() {