融合服务我的申请修改
This commit is contained in:
parent
4a78bfa72e
commit
4c4fe02f74
|
@ -92,8 +92,8 @@
|
||||||
<div class="description">
|
<div class="description">
|
||||||
{{
|
{{
|
||||||
val.description ||
|
val.description ||
|
||||||
((val.note1 || '') &&
|
((val.note1) &&
|
||||||
(JSON.parse(val.note1)[0].channelName || '--') +
|
(JSON.parse(val.note1) && JSON.parse(val.note1)[0] && JSON.parse(val.note1)[0].channelName || '--') +
|
||||||
'等' +
|
'等' +
|
||||||
JSON.parse(val.note1).length +
|
JSON.parse(val.note1).length +
|
||||||
'个摄像头') ||
|
'个摄像头') ||
|
||||||
|
@ -148,7 +148,7 @@
|
||||||
])
|
])
|
||||||
// eslint-disable-next-line vue/no-setup-props-destructure
|
// eslint-disable-next-line vue/no-setup-props-destructure
|
||||||
dataForm.value = props.dataList
|
dataForm.value = props.dataList
|
||||||
console.log('=========================>', dataForm.value)
|
console.log('============dataList=============>', dataForm.value)
|
||||||
// const router = useRouter()
|
// const router = useRouter()
|
||||||
// const arr =
|
// const arr =
|
||||||
// router.currentRoute.value.query.name instanceof Array
|
// router.currentRoute.value.query.name instanceof Array
|
||||||
|
@ -177,7 +177,7 @@
|
||||||
let arr = JSON.parse(note1)
|
let arr = JSON.parse(note1)
|
||||||
xVideoList.value = []
|
xVideoList.value = []
|
||||||
arr.map((val) => {
|
arr.map((val) => {
|
||||||
xVideoList.value.push({ name: val.channelName, key: val.channelId })
|
xVideoList.value.push({ name: val.channelName || '', key: val.channelId })
|
||||||
})
|
})
|
||||||
videoVisible.value = true
|
videoVisible.value = true
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
style="width: 230px" :options="systemOptions" @focus="handleFocus" @blur="handleBlur"
|
style="width: 230px" :options="systemOptions" @focus="handleFocus" @blur="handleBlur"
|
||||||
@change="systemHandleChange" @search="systemHandleSearch"></a-select>
|
@change="systemHandleChange" @search="systemHandleSearch"></a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<span style="font-size:12px;color:#666;padding-left:106px"> 请输入关键字(如选项没有系统请新增)</span>
|
<span style="font-size:12px;color:#666;padding-left:106px"> 如选项没有系统请新增</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-item class="applicationScene" label="应用领域" name="applicationScene"
|
<a-form-item class="applicationScene" label="应用领域" name="applicationScene"
|
||||||
:rules="[{ required: true, message: '请选择应用领域' }]" style="width: 6.93rem">
|
:rules="[{ required: true, message: '请选择应用领域' }]" style="width: 6.93rem">
|
||||||
|
|
|
@ -148,7 +148,7 @@ let typeList = ref([
|
||||||
'能力下架',
|
'能力下架',
|
||||||
'能力需求',
|
'能力需求',
|
||||||
'需求评论',
|
'需求评论',
|
||||||
'能力评价',
|
// '能力评价',
|
||||||
])
|
])
|
||||||
// 西海岸-设备申请
|
// 西海岸-设备申请
|
||||||
let isXiHaiAn = whoShow.itShowXiHaiAn
|
let isXiHaiAn = whoShow.itShowXiHaiAn
|
||||||
|
|
Loading…
Reference in New Issue