视频会议预约
This commit is contained in:
@@ -62,14 +62,15 @@
|
||||
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
||||
@pagination="getList(queryParams)" />
|
||||
<!-- 弹窗 -->
|
||||
<archiveDetailsDialog v-if="showarchiveDetails" :showarchiveDetails="showarchiveDetails" :videoList="videoList" :detailform="detailform"
|
||||
<archiveDetailsDialog v-if="showarchiveDetails" :showarchiveDetails="showarchiveDetails" :caseDetail="caseDetail" :caseLog="caseLog" :videoList="videoList" :detailform="detailform"
|
||||
:flagLoading="flagLoading" @cancelpaymentdetails="cancelpaymentdetails" @updataList="updataList">
|
||||
</archiveDetailsDialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { caseApplicationList, selectSignSealUrl } from "@/api/awardManagement/awardManagement";
|
||||
import { caseApplicationList, selectSignSealUrl,caseApplicationDetail } from "@/api/awardManagement/awardManagement";
|
||||
import { caseLogRecordList } from "@/api/caseManagement/caseManagement";
|
||||
import { adjudicationArchives, videoList } from "@/api/caseFiling/caseFiling";
|
||||
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
||||
export default {
|
||||
@@ -97,7 +98,9 @@ export default {
|
||||
detailform: {}, //详情数据
|
||||
showarchiveDetails: false, //详情数据弹框
|
||||
flagLoading: false, //详情弹框loading
|
||||
videoList:""
|
||||
videoList:"",
|
||||
caseDetail:{},
|
||||
caseLog:null
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@@ -137,6 +140,8 @@ export default {
|
||||
showDetail(row) {
|
||||
this.getDetail({ id: row.id });
|
||||
this.getvideoList({ caseId: row.id });
|
||||
this.getCaseDetail({ id: row.id })
|
||||
this.getCaseLog({caseAppliId :row.id})
|
||||
this.showarchiveDetails = true;
|
||||
this.flagLoading = true;
|
||||
},
|
||||
@@ -153,10 +158,24 @@ export default {
|
||||
/** 查询详情 */
|
||||
getDetail(parms) {
|
||||
adjudicationArchives(parms).then((res) => {
|
||||
this.detailform = res.data;
|
||||
this.flagLoading = false;
|
||||
// console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||
this.detailform = res.data.logisticsInfoVOList;
|
||||
});
|
||||
},
|
||||
// 查询案件详情
|
||||
getCaseDetail(params){
|
||||
caseApplicationDetail(params).then(res=>{
|
||||
this.caseDetail = res.data;
|
||||
this.flagLoading = false;
|
||||
})
|
||||
},
|
||||
// 查看案件日志
|
||||
getCaseLog(params){
|
||||
caseLogRecordList(params).then(res=>{
|
||||
console.log(res,"LLLLLLLLLLL");
|
||||
this.caseLog = res.rows;
|
||||
})
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -8,19 +8,19 @@
|
||||
<div class="noData" v-if="noData">暂无数据!</div>
|
||||
<el-tabs v-model="activeName" @tab-click="handleClick">
|
||||
<el-tab-pane label="案件信息" name="first">
|
||||
<caseInfo :caseApplicationObj="caseApplicationObj"></caseInfo>
|
||||
<caseInfo :caseApplicationObj="caseDetail"></caseInfo>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="案件日志" name="second">
|
||||
<caselogInfo :caselogDataArr="caselogDataArr"></caselogInfo>
|
||||
<caselogInfo :caselogDataArr="caseLog"></caselogInfo>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="快递信息" name="third">
|
||||
<expressDeliveryInfo :deliveryDataArr="deliveryDataArr"></expressDeliveryInfo>
|
||||
<expressDeliveryInfo :deliveryDataArr="detailform"></expressDeliveryInfo>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="案件视频" name="fourth">
|
||||
<!-- <el-tab-pane label="案件视频" name="fourth"> -->
|
||||
<!-- <div @click="getVideo">chakanshipin</div> -->
|
||||
<el-empty description="暂无视频" v-if="!videoFlag"></el-empty>
|
||||
<!-- <el-empty description="暂无视频" v-if="!videoFlag"></el-empty>
|
||||
<video style="background-color: #181717;width: 400px;height: 200px;margin: 30px;" v-if="videoFlag" :src="headPath + item.annexPath" controls="controls" v-for="(item,index) in videoUrl" :key="index"></video>
|
||||
</el-tab-pane>
|
||||
</el-tab-pane> -->
|
||||
</el-tabs>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
@@ -35,7 +35,7 @@ import caseInfo from "./caseInfo.vue";
|
||||
import caselogInfo from "./caselogInfo.vue";
|
||||
import expressDeliveryInfo from "./expressDeliveryInfo.vue";
|
||||
export default {
|
||||
props: ["showarchiveDetails", "detailform", "flagLoading", "videoList"],
|
||||
props: ["showarchiveDetails", "detailform", "flagLoading", "videoList","caseDetail","caseLog"],
|
||||
components: {
|
||||
caseInfo,
|
||||
caselogInfo,
|
||||
@@ -49,17 +49,17 @@ export default {
|
||||
deliveryDataArr: [], //快递信息
|
||||
noData: false,
|
||||
videoUrl:[],
|
||||
headPath:"",
|
||||
headPath:window.location.origin + "/API",
|
||||
videoFlag:false
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
detailform(newValue) {
|
||||
this.headPath = window.location.origin + "/API";
|
||||
showarchiveDetails(newValue) {
|
||||
// this.headPath = ;
|
||||
if (newValue) {
|
||||
this.caseApplicationObj = this.detailform.caseApplication;
|
||||
this.caselogDataArr = this.detailform.caseLogRecordList;
|
||||
this.deliveryDataArr = this.detailform.logisticsInfoVOList;
|
||||
// this.caseApplicationObj = this.detailform.caseApplication;
|
||||
// this.caselogDataArr = this.detailform.caseLogRecordList;
|
||||
// this.deliveryDataArr = this.detailform.logisticsInfoVOList;
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
@@ -264,6 +264,7 @@ export default {
|
||||
return {
|
||||
formData: {},
|
||||
user: "",
|
||||
userId:1,
|
||||
showArbitrationresults: false,
|
||||
form2: {},
|
||||
applicateArr: [], //申请人案件资料
|
||||
@@ -278,6 +279,7 @@ export default {
|
||||
showtrialincourt: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
this.getUser();
|
||||
this.formData = this.form;
|
||||
this.applicateArr = [];
|
||||
this.quiltArr = [];
|
||||
@@ -314,7 +316,7 @@ export default {
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.getUser();
|
||||
|
||||
},
|
||||
methods: {
|
||||
// 详情显示,展示申请人案件文件
|
||||
@@ -341,12 +343,14 @@ export default {
|
||||
getUser() {
|
||||
getUserProfile().then((response) => {
|
||||
this.user = response.data.userName;
|
||||
this.userId = response.data.userId;
|
||||
});
|
||||
},
|
||||
// 打开会议
|
||||
openmeeting() {
|
||||
window.open(
|
||||
`https://txroom.xayunmei.com/#/home?name=${this.user}&id=${this.formData.id}`
|
||||
// `http://localhost:8081/#/home?name=${this.user}&id=${this.formData.id}&userId=${this.userId}`
|
||||
`https://txroom.xayunmei.com/#/home?name=${this.user}&id=${this.formData.id}&userId=${this.userId}`
|
||||
);
|
||||
},
|
||||
// 提交仲裁结果
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
<!-- <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" /> -->
|
||||
@@ -42,7 +43,7 @@ import { getDicts } from '@/api/system/dict/data.js'
|
||||
export default {
|
||||
name: "paymentList",
|
||||
dicts: ["case_status"],
|
||||
components: { },
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
queryParams: {
|
||||
@@ -83,6 +84,15 @@ export default {
|
||||
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;
|
||||
});
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<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="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"
|
||||
@@ -79,12 +79,12 @@ export default {
|
||||
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 = "已发送"
|
||||
if(item.sendStatus == 0){
|
||||
item.sendStatus = "未发送"
|
||||
}else if(item.sendStatus == 1){
|
||||
item.sendStatus = "已发送"
|
||||
}else{
|
||||
item.sendstatus = "未发送"
|
||||
item.sendStatus = "未发送"
|
||||
}
|
||||
})
|
||||
this.total = response.total;
|
||||
|
||||
Reference in New Issue
Block a user