视频bug修改
This commit is contained in:
@@ -199,7 +199,7 @@
|
||||
</evidenceDialog>
|
||||
|
||||
<!-- 开庭时间修改 -->
|
||||
<timeDialog :timeVisable="timeVisable" @getcaseApply="getcaseApply" @cancelTime="cancelTime" :timeData="timeData">
|
||||
<timeDialog :timeVisable="timeVisable" @getcaseApply="getcaseApply" @cancelTime="cancelTime" :timeData="timeData" :queryParams="queryParams">
|
||||
</timeDialog>
|
||||
<!-- 批量操作弹窗 -->
|
||||
<operateDialog :queryParams="queryParams" :operateStatus="operateStatus" :operateVisable="operateVisable"
|
||||
@@ -685,6 +685,7 @@ export default {
|
||||
selectCaseApply({ id }).then((res) => {
|
||||
// this.visible = true;
|
||||
// this.formData = res.data;
|
||||
this.form.caseName = res.data.caseName;
|
||||
this.adjudicatename = {
|
||||
applicantName: res.data.applicantName,
|
||||
respondentName: res.data.respondentName,
|
||||
|
||||
@@ -15,6 +15,11 @@
|
||||
<el-input v-model="formData.caseNum" placeholder="请输入案件编号" :disabled="flag == '1'" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="案件名称:" prop="caseName">
|
||||
<el-input v-model="formData.caseName" placeholder="请输入案件名称" :disabled="flag == '1'" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="案件标的:" prop="caseSubjectAmount">
|
||||
<el-input v-model="formData.caseSubjectAmount" placeholder="请输入案件标的"
|
||||
@@ -622,6 +627,13 @@ export default {
|
||||
trigger: "blur",
|
||||
},
|
||||
],
|
||||
caseName: [
|
||||
{
|
||||
required: true,
|
||||
message: "案件名称不能为空",
|
||||
trigger: "blur",
|
||||
},
|
||||
],
|
||||
loanStartDate: [
|
||||
{
|
||||
required: true,
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
</el-tag>
|
||||
</div>
|
||||
<div v-if="noArbitrator || isAgreePendTral == 0">
|
||||
<el-table :data="dataList" style="width: 100%" @selection-change="handleSelectionChange">
|
||||
<el-table ref="selectTable" :data="dataList" style="width: 100%" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" v-if="noArbitrator || isAgreePendTral == 0">
|
||||
</el-table-column>
|
||||
<el-table-column label="仲裁员姓名" align="center" prop="nickName" :show-overflow-tooltip="true" />
|
||||
@@ -67,7 +67,9 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
hearDate: "",
|
||||
courtReviewform: {},
|
||||
courtReviewform: {
|
||||
hearDate:null
|
||||
},
|
||||
noArbitrator: false,
|
||||
isAgreePendTral: 1,
|
||||
total: 0,
|
||||
@@ -87,9 +89,10 @@ export default {
|
||||
this.getarbitrAtor();
|
||||
},
|
||||
watch: {
|
||||
showformateCourt(val) {
|
||||
showcourtReview(val) {
|
||||
if (val) {
|
||||
this.isAgreePendTral = 1;
|
||||
this.courtReviewform.hearDate = null
|
||||
}
|
||||
},
|
||||
form: {
|
||||
@@ -112,6 +115,10 @@ export default {
|
||||
},
|
||||
// 勾选仲裁员
|
||||
handleSelectionChange(val) {
|
||||
if (val.length > 1) {
|
||||
this.$refs.selectTable.clearSelection();
|
||||
this.$refs.selectTable.toggleRowSelection(val.pop());
|
||||
}
|
||||
this.arbitrators = [];
|
||||
val.forEach((item) => {
|
||||
this.arbitrators.push({
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
<div v-if="noArbitrator || isAgreePendTral == 0">
|
||||
<el-table
|
||||
:data="dataList"
|
||||
ref="selectTable"
|
||||
style="width: 100%"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
@@ -148,6 +149,10 @@ export default {
|
||||
},
|
||||
// 勾选仲裁员
|
||||
handleSelectionChange(val) {
|
||||
if (val.length > 1) {
|
||||
this.$refs.selectTable.clearSelection();
|
||||
this.$refs.selectTable.toggleRowSelection(val.pop());
|
||||
}
|
||||
this.arbitrators = [];
|
||||
val.forEach((item) => {
|
||||
this.arbitrators.push({
|
||||
|
||||
@@ -95,6 +95,10 @@ export default {
|
||||
},
|
||||
//选择支付方式(线上,线下)
|
||||
changPayType(data) {
|
||||
if(data == 1){
|
||||
document.getElementById("qrcodeImg").innerHTML = "";
|
||||
this.payMain = ""
|
||||
}
|
||||
this.submitForm.payType = data;
|
||||
},
|
||||
beforeUpload(flie, fileList) {
|
||||
@@ -198,6 +202,9 @@ export default {
|
||||
watch:{
|
||||
openPay(val){
|
||||
if(val){
|
||||
this.submitForm.payOrderList = []
|
||||
this.paySelect = 1;
|
||||
this.fileList = [];
|
||||
this.filedata.id = this.payId;
|
||||
this.submitForm.caseId = this.payId;
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ import { updateHeardate } from '@/api/caseManagement/caseManagement'
|
||||
import { getToken } from "@/utils/auth";
|
||||
import moment from "moment";
|
||||
export default {
|
||||
props: ["timeVisable", "timeData"],
|
||||
props: ["timeVisable", "timeData","queryParams"],
|
||||
data() {
|
||||
return {
|
||||
loanStartDate: "",
|
||||
@@ -60,7 +60,7 @@ export default {
|
||||
updateHeardate(data).then(res => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.cancel();
|
||||
this.$emit("getcaseApply");
|
||||
this.$emit("getcaseApply",this.queryParams);
|
||||
})
|
||||
},
|
||||
submitTime() {
|
||||
|
||||
Reference in New Issue
Block a user