bug 接口请求方式
This commit is contained in:
parent
02639e6696
commit
f30d67b7d4
|
@ -131,7 +131,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="接口请求方式" v-if="coverageNotShow">
|
<el-form-item label="接口请求方式" v-if="coverageNotShow">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="dataForm.applyCount"
|
v-model="dataForm.apiMethodType"
|
||||||
:disabled="fieldDisabled"
|
:disabled="fieldDisabled"
|
||||||
placeholder="接口请求方式"
|
placeholder="接口请求方式"
|
||||||
></el-input>
|
></el-input>
|
||||||
|
|
|
@ -432,7 +432,7 @@
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="接口请求方式">
|
<a-form-item label="接口请求方式">
|
||||||
<a-input
|
<a-input
|
||||||
v-model:value="dataForm.data.applyCount"
|
v-model:value="dataForm.data.apiMethodType"
|
||||||
disabled="true"
|
disabled="true"
|
||||||
placeholder="接口请求方式"
|
placeholder="接口请求方式"
|
||||||
></a-input>
|
></a-input>
|
||||||
|
|
|
@ -48,8 +48,13 @@
|
||||||
<a-tooltip>
|
<a-tooltip>
|
||||||
<template #title>{{ item.name }}</template>
|
<template #title>{{ item.name }}</template>
|
||||||
<div class="content-body-title">
|
<div class="content-body-title">
|
||||||
<span v-if="item.name ==='申请摄像头列表'" @click="showVideoList(item)"> 名称:{{ item.name }} </span>
|
<span
|
||||||
<span v-else> 名称:{{ item.name }} </span>
|
v-if="item.name === '申请摄像头列表'"
|
||||||
|
@click="showVideoList(item)"
|
||||||
|
>
|
||||||
|
名称:{{ item.name }}
|
||||||
|
</span>
|
||||||
|
<span v-else>名称:{{ item.name }}</span>
|
||||||
<div></div>
|
<div></div>
|
||||||
</div>
|
</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
|
@ -72,7 +77,18 @@
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<p class="content-body-content-son">
|
<p class="content-body-content-son">
|
||||||
<span v-if="item.name ==='申请摄像头列表'">申请结果:{{ '列表地址:' + backUrl + 'resource/getApplyCameraList/' + item.processInstanceId+';'+ '视频流地址:'+backUrl + '/resource/hls/getHls/?channelId='}}</span>
|
<span v-if="item.name === '申请摄像头列表'">
|
||||||
|
申请结果:{{
|
||||||
|
'列表地址:' +
|
||||||
|
backUrl +
|
||||||
|
'resource/getApplyCameraList/' +
|
||||||
|
item.processInstanceId +
|
||||||
|
';' +
|
||||||
|
'视频流地址:' +
|
||||||
|
backUrl +
|
||||||
|
'/resource/hls/getHls/?channelId='
|
||||||
|
}}
|
||||||
|
</span>
|
||||||
<span v-else>申请结果:{{ item.comment || '暂无' }}</span>
|
<span v-else>申请结果:{{ item.comment || '暂无' }}</span>
|
||||||
<a-button
|
<a-button
|
||||||
type="primary"
|
type="primary"
|
||||||
|
@ -225,9 +241,14 @@
|
||||||
<a-modal
|
<a-modal
|
||||||
v-model:visible="videoVisible"
|
v-model:visible="videoVisible"
|
||||||
title="已申请摄像头列表"
|
title="已申请摄像头列表"
|
||||||
@ok="videoVisible=false"
|
@ok="videoVisible = false"
|
||||||
|
>
|
||||||
|
<a-table
|
||||||
|
:columns="columns"
|
||||||
|
:data-source="xVideoList"
|
||||||
|
bordered
|
||||||
|
:pagination="{ defaultPageSize: 6 }"
|
||||||
>
|
>
|
||||||
<a-table :columns="columns" :data-source="xVideoList" bordered :pagination="{defaultPageSize: 6}">
|
|
||||||
<template #bodyCell="{ column, text }">
|
<template #bodyCell="{ column, text }">
|
||||||
<!-- <template>
|
<!-- <template>
|
||||||
<a>{{ text }}</a>
|
<a>{{ text }}</a>
|
||||||
|
@ -246,7 +267,12 @@
|
||||||
getTaskHandleDetailInfo,
|
getTaskHandleDetailInfo,
|
||||||
// getProcDefBizRoute,
|
// getProcDefBizRoute,
|
||||||
} from '@/api/personalCenter'
|
} from '@/api/personalCenter'
|
||||||
import { updateRes, relaunch, selectOne,getApplyCameraList } from '@/api/home'
|
import {
|
||||||
|
updateRes,
|
||||||
|
relaunch,
|
||||||
|
selectOne,
|
||||||
|
getApplyCameraList,
|
||||||
|
} from '@/api/home'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import { message } from 'ant-design-vue'
|
import { message } from 'ant-design-vue'
|
||||||
import ApplyDetails from '@/views/personalCenter/components/ApplyDetails'
|
import ApplyDetails from '@/views/personalCenter/components/ApplyDetails'
|
||||||
|
@ -257,39 +283,56 @@
|
||||||
// let contentListLength = contentList.length
|
// let contentListLength = contentList.length
|
||||||
let tabIndex = ref(0)
|
let tabIndex = ref(0)
|
||||||
const videoVisible = ref(false)
|
const videoVisible = ref(false)
|
||||||
const columns = ref([{
|
const columns = ref([
|
||||||
|
{
|
||||||
title: '摄像头名称',
|
title: '摄像头名称',
|
||||||
dataIndex: 'name'
|
dataIndex: 'name',
|
||||||
}])
|
},
|
||||||
const xVideoList = ref([{
|
])
|
||||||
name: '111'
|
const xVideoList = ref([
|
||||||
}, {
|
{
|
||||||
name: '222'
|
name: '111',
|
||||||
},{
|
},
|
||||||
name: '111'
|
{
|
||||||
}, {
|
name: '222',
|
||||||
name: '222'
|
},
|
||||||
},{
|
{
|
||||||
name: '111'
|
name: '111',
|
||||||
}, {
|
},
|
||||||
name: '222'
|
{
|
||||||
},{
|
name: '222',
|
||||||
name: '111'
|
},
|
||||||
}, {
|
{
|
||||||
name: '222'
|
name: '111',
|
||||||
},{
|
},
|
||||||
name: '111'
|
{
|
||||||
}, {
|
name: '222',
|
||||||
name: '222'
|
},
|
||||||
},{
|
{
|
||||||
name: '111'
|
name: '111',
|
||||||
}, {
|
},
|
||||||
name: '222'
|
{
|
||||||
},{
|
name: '222',
|
||||||
name: '111'
|
},
|
||||||
}, {
|
{
|
||||||
name: '222'
|
name: '111',
|
||||||
},])
|
},
|
||||||
|
{
|
||||||
|
name: '222',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '111',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '222',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '111',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '222',
|
||||||
|
},
|
||||||
|
])
|
||||||
function tabqiehuan(item, index) {
|
function tabqiehuan(item, index) {
|
||||||
// debugger
|
// debugger
|
||||||
tabIndex.value = index
|
tabIndex.value = index
|
||||||
|
@ -636,13 +679,23 @@
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-overflow: -o-ellipsis-lastline;
|
// text-overflow: -o-ellipsis-lastline;
|
||||||
|
// overflow: hidden;
|
||||||
|
// text-overflow: ellipsis;
|
||||||
|
// display: -webkit-box;
|
||||||
|
// -webkit-line-clamp: 3;
|
||||||
|
// -webkit-box-orient: vertical;
|
||||||
|
display: flex;
|
||||||
|
color: #999999;
|
||||||
|
span {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-line-clamp: 3;
|
-webkit-line-clamp: 1;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
color: #999999;
|
max-width: 8.1rem;
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.content-body-bottom {
|
.content-body-bottom {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in New Issue