合并版本

This commit is contained in:
wuhongjian 2022-07-15 14:10:46 +08:00
commit 09518566c7
15 changed files with 434 additions and 227 deletions

View File

@ -424,7 +424,7 @@ export default {
this.submitFrom.infoList.push(obj) this.submitFrom.infoList.push(obj)
}, },
submitData () { submitData () {
console.log('编辑11111111111===============>', this.putOnTheShelfList) console.log('提交11111111111===============>', this.putOnTheShelfList)
const arr = [] const arr = []
this.putOnTheShelfList.map(item => { this.putOnTheShelfList.map(item => {
item.children.map(child => { item.children.map(child => {
@ -510,45 +510,45 @@ export default {
}) })
}) })
this.submitFrom.infoList = this.submitFrom.infoList.sort((a, b) => arr.indexOf(a.attrType) - arr.indexOf(b.attrType)) this.submitFrom.infoList = this.submitFrom.infoList.sort((a, b) => arr.indexOf(a.attrType) - arr.indexOf(b.attrType))
if (this.submitFrom.id) { // if (this.submitFrom.id) {
// // //
this.submitFrom.infoList.map(val => { // this.submitFrom.infoList.map(val => {
if (val.attrType === '组件类型') { // if (val.attrType === '') {
val.attrValue = this.radio // val.attrValue = this.radio
} // }
}) // })
console.log('编辑===============>', this.submitFrom) // console.log('===============>', this.submitFrom)
console.log(this.submitFrom.infoList, '===============abc') // console.log(this.submitFrom.infoList, '===============abc')
// // //
const newArr = this.submitFrom.infoList.filter((element, index, self) => { // const newArr = this.submitFrom.infoList.filter((element, index, self) => {
return self.findIndex(x => x.attrType === element.attrType) === index // return self.findIndex(x => x.attrType === element.attrType) === index
}) // })
this.submitFrom.infoList = newArr // this.submitFrom.infoList = newArr
console.log(this.submitFrom.infoList, '====================================wpwpwp') // console.log(this.submitFrom.infoList, '====================================wpwpwp')
this.$http // this.$http
.put('/resource/update', this.submitFrom) // .put('/resource/update', this.submitFrom)
.then(({ data: res }) => { // .then(({ data: res }) => {
if (res.code !== 0) { // if (res.code !== 0) {
this.$message.error('修改失败!') // this.$message.error('!')
} else { // } else {
this.$message.success('修改成功!') // this.$message.success('')
this.clear() // this.clear()
} // }
}) // })
.catch(() => {}) // .catch(() => {})
} else { // } else {
this.$http // this.$http
.post('/resource/insert?source= b', this.submitFrom) // .post('/resource/insert?source= b', this.submitFrom)
.then(({ data: res }) => { // .then(({ data: res }) => {
if (res.code !== 0) { // if (res.code !== 0) {
this.$message.error('上架失败!') // this.$message.error('!')
} else { // } else {
this.$message.success('上架成功!') // this.$message.success('')
this.clear() // this.clear()
} // }
}) // })
.catch(() => {}) // .catch(() => {})
} // }
}, },
// //
UpdateData (item) { UpdateData (item) {

View File

@ -113,10 +113,39 @@ export default {
this.options = dataList this.options = dataList
if (!this.data.note1) { if (!this.data.note1) {
this.$http.get('/sys/user/info').then(({ data: res }) => { this.$http.get('/sys/user/info').then(({ data: res }) => {
console.log(res.data)
this.data.note1 = res.data.deptId this.data.note1 = res.data.deptId
}) })
} }
}) })
} else if (this.data.name === '部门联系人') {
this.$http.get('/sys/dept/all').then(res => {
const dataList = []
res.data.data.forEach((element) => {
dataList.push(element)
})
this.options = dataList
if (!this.data.note1) {
this.$http.get('/sys/user/info').then(({ data: res }) => {
console.log(res.data)
this.data.note1 = res.data.realName || ''
})
}
})
} else if (this.data.name === '部门联系人电话') {
this.$http.get('/sys/dept/all').then(res => {
const dataList = []
res.data.data.forEach((element) => {
dataList.push(element)
})
this.options = dataList
if (!this.data.note1) {
this.$http.get('/sys/user/info').then(({ data: res }) => {
console.log(res.data)
this.data.note1 = res.data.mobile || ''
})
}
})
} }
}, },
chekBoxChange (list) { chekBoxChange (list) {

View File

@ -36,13 +36,32 @@
<div class="add">添加更多{{ configure.name }}</div> <div class="add">添加更多{{ configure.name }}</div>
<div class="form" v-for="(val, index) in configure.list" :key="'key3' + val.name + index"> <div class="form" v-for="(val, index) in configure.list" :key="'key3' + val.name + index">
<span>{{ val.name }}</span> <span>{{ val.name }}</span>
<a-input v-model:value="val.note1" :maxlength="24" :placeholder="'请填写' + val.name + ',不超过24个字符'" <!-- <a-input v-model:value="val.note1" ::maxlength="24" placeholder="'请填写' + val.name + ',不超过24个字符'"
v-if="val.type == 'input'"/> v-if="val.type == 'input'"/> -->
<template v-if="val.type == 'input2'">
<a-input
v-model:value="val.note1"
:placeholder="'请填写' + val.name"
/>
<span style="width: 2.5rem; padding-left: 0.1rem">
{{
numType == '一次性买断'
? '元'
: numType == '按调用次数'
? '元/次'
: numType == '按并发路数'
? '元/路'
: numType == '按年计费'
? '元/年'
: ''
}}
</span>
</template>
<a-textarea v-model:value="val.note1" :showCount="true" :maxlength="200" :placeholder="'请填写' + val.name" <a-textarea v-model:value="val.note1" :showCount="true" :maxlength="200" :placeholder="'请填写' + val.name"
v-else-if="val.type == 'textArea'"/> v-else-if="val.type == 'textArea'"/>
<a-input-number v-model:value="val.note1" :min="0" :max="9999" :step="0.01" string-mode <a-input-number v-model:value="val.note1" :min="0" :max="9999" :step="0.01" string-mode
:placeholder="'请填写' + val.name" v-else-if="val.type == 'number'" /> :placeholder="'请填写' + val.name" v-else-if="val.type == 'number'" />
<a-radio-group v-model:value="val.note1" :options="val.options" v-else-if="val.type == 'radio'" /> <a-radio-group v-model:value="val.note1" :options="val.options" v-else-if="val.type == 'radio'" @change="radioChange"/>
<!-- <upload :key="showKey" type="图片" btnName="上传图片" :maxCount="1" :data="val" :list="[]" tip="支持图片类型大小不超过100M" <!-- <upload :key="showKey" type="图片" btnName="上传图片" :maxCount="1" :data="val" :list="[]" tip="支持图片类型大小不超过100M"
v-else-if="val.type == 'image'"></upload> --> v-else-if="val.type == 'image'"></upload> -->
<upload :key="showKey" :child='val' limit='1' accept='.jpg,.png' v-else-if="val.type == 'image'"></upload> <upload :key="showKey" :child='val' limit='1' accept='.jpg,.png' v-else-if="val.type == 'image'"></upload>
@ -68,7 +87,8 @@ export default {
data () { data () {
return { return {
data: [], data: [],
showKey: 0 showKey: 0,
numType: '一次性买断'
} }
}, },
methods: { methods: {
@ -85,7 +105,21 @@ export default {
if (flag) { if (flag) {
const obj = {} const obj = {}
list.forEach((item) => { list.forEach((item) => {
obj[item.field] = item.note1 if (item.type === 'input2') {
obj[item.field] =
item.note1 +
(this.numType === '一次性买断'
? '元'
: this.numType === '按调用次数'
? '元/次'
: this.numType === '按并发路数'
? '元/路'
: this.numType === '按年计费'
? '元/年'
: '')
} else {
obj[item.field] = item.note1
}
}) })
this.data.push(obj) this.data.push(obj)
this.$emit('changeInfoList', { this.$emit('changeInfoList', {
@ -108,6 +142,10 @@ export default {
attrValue: JSON.stringify(this.data), attrValue: JSON.stringify(this.data),
delFlag: 0 delFlag: 0
}) })
},
radioChange (e) {
console.log(e, 'wewewe')
this.numType = e.target.value
} }
}, },
created () { created () {

View File

@ -23,8 +23,8 @@
tip="支持文件类型大小不超过100M"></upload> tip="支持文件类型大小不超过100M"></upload>
<upload @changeInfoList='changeInfoList' :title='item.name' accept='.mp4' :list="item" v-else-if="item.type == 'video'" type="视频" btnName="上传视频" :maxCount="1" :dataList="item" <upload @changeInfoList='changeInfoList' :title='item.name' accept='.mp4' :list="item" v-else-if="item.type == 'video'" type="视频" btnName="上传视频" :maxCount="1" :dataList="item"
tip="支持视频类型大小不超过100M"></upload> tip="支持视频类型大小不超过100M"></upload>
<input-select-checkbox :list="[]" v-else-if="item.type == 'text'" type="disabled" :data="item" :name="item.name" :value="typeInput"></input-select-checkbox> <input-select-checkbox :list="[]" v-else-if="item.type == 'AbilityType'" type="disabled" :data="item" :name="item.name" :value="typeInput"></input-select-checkbox>
<input-select-checkbox :list="[]" v-else-if="item.type == 'text2'" type="disabled" :data="item" :name="item.name" :value="type"></input-select-checkbox> <input-select-checkbox :list="[]" v-else-if="item.type == 'ComponentType'" type="disabled" :data="item" :name="item.name" :value="type"></input-select-checkbox>
<input-select-checkbox :list="[]" v-else-if="item.type == 'input'" type="input" :data="item" :name="item.name"></input-select-checkbox> <input-select-checkbox :list="[]" v-else-if="item.type == 'input'" type="input" :data="item" :name="item.name"></input-select-checkbox>
<input-select-checkbox :list="[]" v-else-if="item.type == 'select'" type="select" :data="item" :name="item.name" :options="item.options"></input-select-checkbox> <input-select-checkbox :list="[]" v-else-if="item.type == 'select'" type="select" :data="item" :name="item.name" :options="item.options"></input-select-checkbox>
<input-select-checkbox :list="[]" v-else-if="item.type == 'checkBox'" type="checkBox" :data="item" :name="item.name" :options="item.options"></input-select-checkbox> <input-select-checkbox :list="[]" v-else-if="item.type == 'checkBox'" type="checkBox" :data="item" :name="item.name" :options="item.options"></input-select-checkbox>
@ -106,13 +106,13 @@ export default {
field: 'type', field: 'type',
type: 'radio', type: 'radio',
options: ['一次性买断', '按调用次数', '按并发路数', '按年计费'], options: ['一次性买断', '按调用次数', '按并发路数', '按年计费'],
note1: '' note1: '一次性买断'
}, },
{ {
name: '计费标准', name: '计费标准',
field: 'price', field: 'price',
type: 'number', type: 'input2',
company: '元', // company: '',
note1: '' note1: ''
}, },
{ {

View File

@ -221,7 +221,7 @@ export default {
} }
}, },
operationType (val) { operationType (val) {
if (val !== 'all') { if (val !== 'all' && val !== '') {
this.dataForm.operationType = val this.dataForm.operationType = val
} }
} }
@ -245,6 +245,7 @@ export default {
// //
resetFunction () { resetFunction () {
this.operationType = '' //
const params = { const params = {
status: '', status: '',
creatorName: '', creatorName: '',
@ -254,10 +255,10 @@ export default {
operationType: 'all' operationType: 'all'
} }
this.value1 = '' // this.value1 = '' //
this.operationType = '' //
this.page = 1 this.page = 1
this.limit = 10 this.limit = 10
this.dataForm = params this.dataForm = params
console.log('this.dataForm', this.dataForm)
this.getDataList() // this.getDataList() //
}, },
// //

View File

@ -32,7 +32,7 @@ if (newLocation === 'qingdao') {
{ name: '能力统计', key: 'abilityStatistics' }, { name: '能力统计', key: 'abilityStatistics' },
// { name: '', key: 'developmentGuide' }, // { name: '', key: 'developmentGuide' },
{ name: '指导手册', key: 'instructionManual' }, { name: '指导手册', key: 'instructionManual' },
// { name: '', key: 'demandCenter' }, { name: '需求中心', key: 'demandCenter' },
// { name: '', key: 'personalCenter' }, // { name: '', key: 'personalCenter' },
{ name: '区市站点', key: 'mapTest' }, { name: '区市站点', key: 'mapTest' },
// { name: '', key: 'houtaiguanli' }, // { name: '', key: 'houtaiguanli' },

View File

@ -2,7 +2,7 @@
* @Author: hisense.liangjunhua * @Author: hisense.liangjunhua
* @Date: 2022-06-13 10:22:27 * @Date: 2022-06-13 10:22:27
* @LastEditors: hisense.liangjunhua * @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-07-14 09:44:38 * @LastEditTime: 2022-07-15 11:50:22
* @Description: 算法上架 * @Description: 算法上架
--> -->
<template> <template>
@ -157,13 +157,13 @@
field: 'type', field: 'type',
type: 'radio', type: 'radio',
options: ['一次性买断', '按调用次数', '按并发路数', '按年计费'], options: ['一次性买断', '按调用次数', '按并发路数', '按年计费'],
note1: '', note1: '一次性买断',
}, },
{ {
name: '计费标准', name: '计费标准',
field: 'price', field: 'price',
type: 'number', type: 'input2',
company: '元', // company: '',
note1: '', note1: '',
}, },
{ {

View File

@ -2,7 +2,7 @@
* @Author: hisense.liangjunhua * @Author: hisense.liangjunhua
* @Date: 2022-06-17 14:11:08 * @Date: 2022-06-17 14:11:08
* @LastEditors: hisense.liangjunhua * @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-07-13 18:14:42 * @LastEditTime: 2022-07-15 11:51:18
* @Description: 上架 * @Description: 上架
--> -->
<template> <template>
@ -58,6 +58,25 @@
:placeholder="'请填写' + val.name + ',不超过24个字符'" :placeholder="'请填写' + val.name + ',不超过24个字符'"
v-if="val.type == 'input'" v-if="val.type == 'input'"
/> />
<template v-if="val.type == 'input2'">
<a-input
v-model:value="val.note1"
:placeholder="'请填写' + val.name"
/>
<span style="width: 0.5rem; padding-left: 0.1rem">
{{
numType == '一次性买断'
? '元'
: numType == '按调用次数'
? '元/次'
: numType == '按并发路数'
? '元/路'
: numType == '按年计费'
? '元/年'
: ''
}}
</span>
</template>
<a-textarea <a-textarea
v-model:value="val.note1" v-model:value="val.note1"
:showCount="true" :showCount="true"
@ -77,6 +96,7 @@
<a-radio-group <a-radio-group
v-model:value="val.note1" v-model:value="val.note1"
:options="val.options" :options="val.options"
@change="radioChange"
v-else-if="val.type == 'radio'" v-else-if="val.type == 'radio'"
/> />
<upload <upload
@ -110,13 +130,13 @@
:options="item.options" :options="item.options"
/> />
<a-input <a-input
v-else-if="item.type == 'text'" v-else-if="item.type == 'AbilityType'"
v-model:value="item.note1" v-model:value="item.note1"
:placeholder="'请输入' + item.name" :placeholder="'请输入' + item.name"
:disabled="true" :disabled="true"
/> />
<a-input <a-input
v-else-if="item.type == 'text2'" v-else-if="item.type == 'ComponentType'"
v-model:value="item.note1" v-model:value="item.note1"
:placeholder="'请输入' + item.name" :placeholder="'请输入' + item.name"
:disabled="true" :disabled="true"
@ -179,11 +199,14 @@
:list="props.videoList" :list="props.videoList"
tip="支持视频类型大小不超过100M" tip="支持视频类型大小不超过100M"
></upload> ></upload>
<a-button v-else-if="item.type == 'dialog'" @click="sourceClick"> <a-button
v-else-if="item.type == 'AssociatedApplication'"
@click="sourceClick"
>
请选择来源应用 请选择来源应用
</a-button> </a-button>
<a-button <a-button
v-else-if="item.type == 'dialog2'" v-else-if="item.type == 'AssociatedComponents'"
@click="componentsClick" @click="componentsClick"
> >
请选择关联组件 请选择关联组件
@ -329,6 +352,10 @@
list: [], list: [],
}) })
const showKey = ref(0) const showKey = ref(0)
const numType = ref('一次性买断')
const radioChange = (e) => {
numType.value = e.target.value
}
props.refData.children.map((item) => { props.refData.children.map((item) => {
if (item.name == '基本信息') { if (item.name == '基本信息') {
item.children.map((val) => { item.children.map((val) => {
@ -436,7 +463,21 @@
if (flag) { if (flag) {
let obj = {} let obj = {}
list.forEach((item) => { list.forEach((item) => {
obj[item.field] = item.note1 if (item.type === 'input2') {
obj[item.field] =
item.note1 +
(numType.value == '一次性买断'
? '元'
: numType.value == '按调用次数'
? '元/次'
: numType.value == '按并发路数'
? '元/路'
: numType.value == '按年计费'
? '元/年'
: '')
} else {
obj[item.field] = item.note1
}
}) })
data.value[title].push(obj) data.value[title].push(obj)
// console.log(data.value[title]) // console.log(data.value[title])
@ -685,17 +726,18 @@
margin-top: 20px; margin-top: 20px;
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
align-items: center;
span:first-child { span:first-child {
width: 120px; width: 120px;
} }
:deep(.ant-input-textarea) { :deep(.ant-input-textarea) {
width: 570px; width: 520px;
} }
:deep(.ant-radio-group) { :deep(.ant-radio-group) {
width: 570px; width: 520px;
} }
:deep(.ant-input-number) { :deep(.ant-input-number) {
@ -704,7 +746,7 @@
:deep(.ant-input) { :deep(.ant-input) {
resize: none; resize: none;
width: 570px; width: 520px;
} }
.ant-btn { .ant-btn {
@ -742,7 +784,7 @@
} }
.application-Area { .application-Area {
width: 570px; width: 520px;
display: grid; display: grid;
margin-top: -5px; margin-top: -5px;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;

View File

@ -92,6 +92,7 @@
align-items: center; align-items: center;
.item { .item {
width: 424px; width: 424px;
height:306px;
padding: 35px; padding: 35px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@ -1,6 +1,6 @@
<template> <template>
<!-- 使用方式 --> <!-- 使用方式 -->
<div class="usage-mode" v-if="flag"> <div class="usage-mode" v-if="true">
<div class="tltle"> <div class="tltle">
<DetalsTitle <DetalsTitle
:title="dataFrom.title" :title="dataFrom.title"
@ -12,7 +12,6 @@
<div class="left"> <div class="left">
<div class="content-left-title"> <div class="content-left-title">
<span>{{ item.title }}</span> <span>{{ item.title }}</span>
<span>{{ item.titleSon }}</span>
</div> </div>
<div class="content-left-content"> <div class="content-left-content">
<p> <p>
@ -30,33 +29,61 @@
</div> </div>
<div class="right"> <div class="right">
<div @click="technical()">技术文档</div> <div @click="technical()">技术文档</div>
<!-- <div>新手指引</div> --> <div @click="technicalNew()">新手指引</div>
</div> </div>
</div> </div>
<div class="content-right"> <div class="content-right">
<div class="content-right-title">{{ item.contact }}</div> <div class="content-right-left">
<div class="content-right-content"> <div class="content-right-title">{{ item.contact }}</div>
<p> <div class="content-right-content">
<span>{{ item.facilitator.name }}</span> <p>
<a-tooltip> <span>{{ item.facilitator.name }}</span>
<template #title>{{ item.facilitator.value }}</template> <a-tooltip>
<span>{{ item.facilitator.value }}</span> <template #title>{{ item.facilitator.value }}</template>
</a-tooltip> <span>{{ item.facilitator.value }}</span>
</p> </a-tooltip>
<p> </p>
<span>{{ item.people.name }}</span> <p>
<a-tooltip> <span>{{ item.people.name }}</span>
<template #title>{{ item.people.value }}</template> <a-tooltip>
<span>{{ item.people.value }}</span> <template #title>{{ item.people.value }}</template>
</a-tooltip> <span>{{ item.people.value }}</span>
</p> </a-tooltip>
<p> </p>
<span>{{ item.phone.name }}</span> <p>
<a-tooltip> <span>{{ item.phone.name }}</span>
<template #title>{{ item.phone.value }}</template> <a-tooltip>
<span>{{ item.phone.value }}</span> <template #title>{{ item.phone.value }}</template>
</a-tooltip> <span>{{ item.phone.value }}</span>
</p> </a-tooltip>
</p>
</div>
</div>
<div class="content-right-right">
<div class="content-right-title">{{ item.contact2 }}</div>
<div class="content-right-content">
<p>
<span>{{ item.facilitator2.name }}</span>
<a-tooltip>
<template #title>{{ item.facilitator2.value }}</template>
<span>{{ item.facilitator2.value }}</span>
</a-tooltip>
</p>
<p>
<span>{{ item.people2.name }}</span>
<a-tooltip>
<template #title>{{ item.people2.value }}</template>
<span>{{ item.people2.value }}</span>
</a-tooltip>
</p>
<p>
<span>{{ item.phone2.name }}</span>
<a-tooltip>
<template #title>{{ item.phone2.value }}</template>
<span>{{ item.phone2.value }}</span>
</a-tooltip>
</p>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -65,16 +92,15 @@
<script setup> <script setup>
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle' import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
import { message } from 'ant-design-vue'
import { pinyin } from 'pinyin-pro' import { pinyin } from 'pinyin-pro'
import { ref, defineProps, watch } from 'vue' import { ref, defineProps, watch } from 'vue'
import { message } from 'ant-design-vue'
let dataFrom = ref({ let dataFrom = ref({
title: '使用方式', title: '使用方式',
englishTitle: 'USAGE', englishTitle: 'USAGE',
content: [ content: [
{ {
title: '技术对接', title: '组件地址',
titleSon: '调用接口',
link: { link: {
name: '服务接口:', name: '服务接口:',
value: '', value: '',
@ -83,16 +109,23 @@
name: '请求方式:', name: '请求方式:',
value: '', value: '',
}, },
contact: '联系厂商', linkValue: '',
facilitator: { name: '服务商:', value: '科大讯飞' }, contact: '归属部门',
people: { name: '联系人:', value: '李四' }, facilitator: { name: '归属部门:', value: '' },
people: { name: '部门联系人:', value: '' },
phone: { phone: {
name: '联系电话:', name: '联系人电话:',
value: '12345678901', value: '',
},
contact2: '服务商',
facilitator2: { name: '服务商:', value: '' },
people2: { name: '服务商联系人:', value: '' },
phone2: {
name: '联系人电话:',
value: '',
}, },
}, },
], ],
link: '',
}) })
// //
const props = defineProps({ const props = defineProps({
@ -105,6 +138,9 @@
item.attrType === '技术文档' || item.attrType === '技术文档' ||
item.attrType === '服务商' || item.attrType === '服务商' ||
item.attrType === '服务商联系人' || item.attrType === '服务商联系人' ||
item.attrType === '使用手册' ||
item.attrType === '服务接口' ||
item.attrType === '样式服务地址' ||
item.attrType === '服务商联系电话' item.attrType === '服务商联系电话'
)[0] )[0]
if (!obj) { if (!obj) {
@ -112,23 +148,22 @@
} else { } else {
// eslint-disable-next-line vue/no-setup-props-destructure // eslint-disable-next-line vue/no-setup-props-destructure
dataFrom.value.content[0].link.value = props.dataList.apiUrl dataFrom.value.content[0].link.value = props.dataList.apiUrl
// eslint-disable-next-line vue/no-setup-props-destructure dataFrom.value.content[0].facilitator.value = props.dataList.deptName
dataFrom.value.content[0].postMethod.value = props.dataList.apiMethodType dataFrom.value.content[0].people.value = props.dataList.deptContacts
dataFrom.value.content[0].phone.value = props.dataList.deptPhone
dataFrom.value.content[0].postMethod.value = val.apiMethodType
console.log('dataList', props.dataList) console.log('dataList', props.dataList)
props.dataList.infoList.map((item) => { props.dataList.infoList.map((item) => {
if (item.attrType === '使用方式') { if (item.attrType === '组件地址') {
dataFrom.value.content[0].titleSon = item.attrValue dataFrom.value.content[0].linkValue = item.attrValue || '--'
} else if (item.attrType === '服务商') { } else if (item.attrType === '服务商') {
dataFrom.value.content[0].facilitator.value = item.attrValue || '--' dataFrom.value.content[0].facilitator2.value = item.attrValue || '--'
} else if (item.attrType === '服务商联系人') { } else if (item.attrType === '服务商联系人') {
dataFrom.value.content[0].people.value = item.attrValue || '--' dataFrom.value.content[0].people2.value = item.attrValue || '--'
} else if (item.attrType === '服务商联系电话') { } else if (item.attrType === '服务商联系电话') {
dataFrom.value.content[0].phone.value = item.attrValue || '--' dataFrom.value.content[0].phone2.value = item.attrValue || '--'
} } else if (item.attrType === '服务接口') {
// } else if (item.attrType === '') { debugger
// dataFrom.value.link = item.attrValue || '--'
// }
else if (item.attrType === '服务接口') {
dataFrom.value.content[0].link.value = item.attrValue || '--' dataFrom.value.content[0].link.value = item.attrValue || '--'
} }
}) })
@ -143,29 +178,32 @@
item.attrType === '技术文档' || item.attrType === '技术文档' ||
item.attrType === '服务商' || item.attrType === '服务商' ||
item.attrType === '服务商联系人' || item.attrType === '服务商联系人' ||
item.attrType === '使用手册' ||
item.attrType === '服务接口' ||
item.attrType === '样式服务地址' ||
item.attrType === '服务商联系电话' item.attrType === '服务商联系电话'
)[0] )[0]
if (!obj) { if (!obj) {
flag.value = false flag.value = false
} else { } else {
dataFrom.value.content[0].link.value = val.apiUrl dataFrom.value.content[0].link.value = val.apiUrl
dataFrom.value.content[0].facilitator.value = val.deptName
dataFrom.value.content[0].people.value = val.deptContacts
dataFrom.value.content[0].phone.value = val.deptPhone
dataFrom.value.content[0].postMethod.value = val.apiMethodType dataFrom.value.content[0].postMethod.value = val.apiMethodType
console.log('dataList', val) console.log('dataList', val)
val.infoList.map((item) => { val.infoList.map((item) => {
if (item.attrType === '使用方式') { if (item.attrType === '组件地址') {
dataFrom.value.content[0].titleSon = item.attrValue dataFrom.value.content[0].linkValue = item.attrValue || '--'
} else if (item.attrType === '服务商') { } else if (item.attrType === '服务商') {
dataFrom.value.content[0].facilitator.value = dataFrom.value.content[0].facilitator2.value =
item.attrValue || '--' item.attrValue || '--'
} else if (item.attrType === '服务商联系人') { } else if (item.attrType === '服务商联系人') {
dataFrom.value.content[0].people.value = item.attrValue || '--' dataFrom.value.content[0].people2.value = item.attrValue || '--'
} else if (item.attrType === '服务商联系电话') { } else if (item.attrType === '服务商联系电话') {
dataFrom.value.content[0].phone.value = item.attrValue || '--' dataFrom.value.content[0].phone2.value = item.attrValue || '--'
} } else if (item.attrType === '服务接口') {
// else if (item.attrType === '') { debugger
// dataFrom.value.link = item.attrValue || '--'
// }
else if (item.attrType === '服务接口') {
dataFrom.value.content[0].link.value = item.attrValue || '--' dataFrom.value.content[0].link.value = item.attrValue || '--'
} }
}) })
@ -185,7 +223,6 @@
let obj = props.dataList.infoList.filter( let obj = props.dataList.infoList.filter(
(item) => item.attrType === '技术文档' (item) => item.attrType === '技术文档'
)[0] )[0]
// console.log('dataFrom.value.link', obj.attrValue)
if (obj) { if (obj) {
window.open(window.SITE_CONFIG.frontUrl + obj.attrValue) window.open(window.SITE_CONFIG.frontUrl + obj.attrValue)
} else { } else {
@ -195,6 +232,31 @@
message.error('暂未上传技术文档') message.error('暂未上传技术文档')
} }
} }
function technicalNew() {
//
// const type = pinyin(props.dataList.type, {
// pattern: 'initial',
// }).replace(/\s*/g, '')
// //
// const id = props.dataList.id
// window.open(window.SITE_CONFIG.frontUrl + type + '/' + id + '.md', '_blank')
let obj = props.dataList.infoList.filter(
(item) => item.attrType === '使用手册'
)[0]
console.log('dataFrom.value.link', obj.attrValue)
if (obj) {
window.open(
window.SITE_CONFIG.previewUrl +
'hisense_office/onlinePreview?url=' +
btoa(encodeURI(obj.attrValue))
)
} else {
message.config({
top: '100px', //
})
message.error('暂未上传使用手册')
}
}
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
@ -202,103 +264,128 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
padding: 80px 0; padding: 0.8rem 0;
.content { .content {
margin-top: 30px; margin-top: 0.3rem;
display: flex; display: flex;
.content-left { .content-left {
height: 150px; height: 1.5rem;
width: 620px; width: 6.2rem;
background: linear-gradient(to right, #7184fc, #94a3fc); background: url('~@/assets/detailsAll/business/business_usage_mode_bg.png')
border-radius: 10px; no-repeat;
margin-right: 60px; background-position: center;
box-shadow: 0px 5px 15px rgba(82, 106, 255, 0.4); background-size: 100% 100%;
border-radius: 0.1rem;
margin-right: 0.6rem;
box-shadow: 0rem 0.05rem 0.15rem rgba(82, 106, 255, 0.4);
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0 35px; padding: 0 0.35rem;
.left { .left {
.content-left-title { .content-left-title {
font-size: 26px; font-size: 0.26rem;
line-height: 26px; line-height: 0.26rem;
color: #212956; color: #212956;
margin-bottom: 20px; margin-bottom: 0.2rem;
span:first-child { span:first-child {
margin-right: 10px; margin-right: 0.1rem;
} }
} }
.content-left-content { .content-left-content {
width: 420px; width: 4.2rem;
font-size: 20px; font-size: 0.2rem;
color: rgba(33, 41, 86, 0.8); color: rgba(33, 41, 86, 0.8);
line-height: 20px; line-height: 0.2rem;
p { p {
overflow: hidden; display: -webkit-box;
text-overflow: ellipsis; margin-bottom: 0.1rem;
white-space: nowrap;
margin-bottom: 10px; span:last-of-type {
width: 298px;
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
} }
} }
} }
.right { .right {
div { div {
height: 40px; height: 0.4rem;
width: 130px; width: 1.3rem;
background: #ffffff; background: #ffffff;
border-radius: 20px; border-radius: 0.2rem;
color: #526aff; color: #526aff;
font-size: 20px; font-size: 0.2rem;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
} }
div:first-child { div:first-child {
margin-bottom: 20px; margin-bottom: 0.2rem;
} }
} }
} }
.content-right { .content-right {
height: 150px; height: 1.5rem;
width: 620px; width: 6.2rem;
background: linear-gradient( background: url('~@/assets/detailsAll/business/business_usage_mode_bg.png')
to right, no-repeat;
rgba(113, 132, 252, 0.4), background-position: center;
rgba(148, 163, 252, 0.4) background-size: 100% 100%;
); border-radius: 0.1rem;
border-radius: 10px; box-shadow: 0rem 0.05rem 0.15rem rgba(82, 106, 255, 0.4);
box-shadow: 0px 5px 15px rgba(82, 106, 255, 0.4);
display: flex; display: flex;
flex-direction: column; justify-content: space-around;
justify-content: center; align-items: center;
padding: 0 30px; padding: 0 0.3rem;
.content-right-title {
font-size: 26px; .content-right-left {
line-height: 26px; border-right: 0.01rem solid #707fe0;
color: #212956; padding-right: 0.1rem;
margin-bottom: 25px; margin-right: 0.1rem;
} }
.content-right-title {
font-size: 0.26rem;
line-height: 0.26rem;
color: #212956;
margin-bottom: 0.15rem;
}
.content-right-content { .content-right-content {
display: flex; display: flex;
font-size: 18px; font-size: 0.16rem;
color: rgba(33, 41, 86, 0.8); color: rgba(33, 41, 86, 0.8);
line-height: 20px; line-height: 0.2rem;
overflow: hidden; overflow: hidden;
-webkit-line-clamp: 1; -webkit-line-clamp: 1;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
margin-bottom: 10px; flex-direction: column;
p { p {
// width: 160px; // width: 1.60rem;
height: 20px; height: 0.2rem;
overflow: hidden; display: -webkit-box;
text-overflow: ellipsis; // overflow: hidden;
margin-bottom: 0.08rem;
white-space: nowrap; white-space: nowrap;
margin-right: 15px; -webkit-line-clamp: 1;
-webkit-box-orient: vertical;
margin-right: 0.15rem;
span { span {
display: inline-block;
max-width: 1.2rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer; cursor: pointer;
} }
} }

View File

@ -1,6 +1,6 @@
<template> <template>
<!-- 使用方式 --> <!-- 使用方式 -->
<div class="usage-mode" v-if="flag"> <div class="usage-mode" v-if="true">
<div class="tltle"> <div class="tltle">
<DetalsTitle <DetalsTitle
:title="dataFrom.title" :title="dataFrom.title"

View File

@ -1,6 +1,6 @@
<!--使用方式--> <!--使用方式-->
<template> <template>
<div class="application-deployment-and-security" v-if="flag"> <div class="application-deployment-and-security" v-if="true">
<div class="title"> <div class="title">
<DetalsTitle <DetalsTitle
:title="dataFrom.title" :title="dataFrom.title"

View File

@ -1,6 +1,6 @@
<template> <template>
<!-- 使用方式 --> <!-- 使用方式 -->
<div class="usage-mode" v-if="flag"> <div class="usage-mode" v-if="true">
<div class="tltle"> <div class="tltle">
<DetalsTitle <DetalsTitle
:title="dataFrom.title" :title="dataFrom.title"

View File

@ -168,6 +168,7 @@
<div <div
v-if=" v-if="
selectCardsname !== '应用资源' && selectCardsname !== '应用资源' &&
selectCardsname !== '数据资源' &&
selectCardsname !== '融合服务' selectCardsname !== '融合服务'
" "
> >

View File

@ -83,10 +83,7 @@
</div> --> </div> -->
<div class="content-body-content"> <div class="content-body-content">
<p class="content-body-content-son"> <p class="content-body-content-son">
审核结果{{ 审核结果{{ item.ended ? '审核完成' : '审核中' }}
// item.ended ? '' : item.backToFirst ? '' : ''
item.approveStatus || item.resourceStatusTip || '--'
}}
</p> </p>
</div> </div>
<!-- <div class="content-body-content" v-if="item.currentTaskList"> <!-- <div class="content-body-content" v-if="item.currentTaskList">
@ -344,6 +341,7 @@
let tabIndex = ref(0) let tabIndex = ref(0)
let typeIndex = ref(0) let typeIndex = ref(0)
const videoVisible = ref(false) const videoVisible = ref(false)
const numFlag = ref(true)
const columns = ref([ const columns = ref([
{ {
title: '摄像头名称', title: '摄像头名称',
@ -374,6 +372,7 @@
} }
// //
const changeType = (item, index) => { const changeType = (item, index) => {
numFlag.value = true
num.value = [] num.value = []
showType.value = '' showType.value = ''
console.log(item, index) console.log(item, index)
@ -499,48 +498,54 @@
unfinished: 0, unfinished: 0,
}) })
const initNum = () => { const initNum = () => {
num.value = [] if (numFlag.value) {
getMyProcessInstancePage({ num.value = []
page: 1, getMyProcessInstancePage({
limit: 4, page: 1,
ended: 'false', limit: 4,
processDefinitionKey: processDefinitionKey.value, ended: 'false',
}).then((res) => { processDefinitionKey: processDefinitionKey.value,
if (res.data.code == 0) { }).then((res) => {
num.value.unfinished = res.data.data.total if (res.data.code == 0) {
getMyProcessInstancePage({ num.value.unfinished = res.data.data.total
page: 1, getMyProcessInstancePage({
limit: 4, page: 1,
ended: 'true', limit: 4,
processDefinitionKey: processDefinitionKey.value, ended: 'true',
}).then((res) => { processDefinitionKey: processDefinitionKey.value,
if (res.data.code == 0) { }).then((res) => {
num.value.finished = res.data.data.total if (res.data.code == 0) {
} num.value.finished = res.data.data.total
}) numFlag.value = false
} }
}) })
}
})
}
} }
const initNum2 = () => { const initNum2 = () => {
num.value = [] if (numFlag.value) {
getTabilityapplication({ num.value = []
page: 1, getTabilityapplication({
limit: 4, page: 1,
ended: 'false', limit: 4,
}).then((res) => { ended: 'false',
if (res.data.code == 0) { }).then((res) => {
num.value.unfinished = res.data.data.total if (res.data.code == 0) {
getTabilityapplication({ num.value.unfinished = res.data.data.total
page: 1, getTabilityapplication({
limit: 4, page: 1,
ended: 'true', limit: 4,
}).then((res) => { ended: 'true',
if (res.data.code == 0) { }).then((res) => {
num.value.finished = res.data.data.total if (res.data.code == 0) {
} num.value.finished = res.data.data.total
}) numFlag.value = false
} }
}) })
}
})
}
} }
// initNum() // initNum()
const total = ref('') const total = ref('')
@ -564,6 +569,9 @@
ended: ended.value, ended: ended.value,
// name: name.value, // name: name.value,
} }
if (ended.value === '') {
delete params.ended
}
if (typeIndex.value == 0) { if (typeIndex.value == 0) {
getTabilityapplication(params).then((res) => { getTabilityapplication(params).then((res) => {
contentList.data = [] contentList.data = []