修改部分usc问题

This commit is contained in:
gongjiale 2022-10-02 16:42:34 +08:00
parent d549a7f73d
commit aa6022f599
11 changed files with 184 additions and 74 deletions

View File

@ -27,10 +27,14 @@
<el-form-item label="名称" prop="name"> <el-form-item label="名称" prop="name">
<el-input v-model="dataForm.name" placeholder="请输入名称" style="width:90%"></el-input> <el-input v-model="dataForm.name" placeholder="请输入名称" style="width:90%"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="描述" prop="description"> <el-form-item label="描述" prop="description">
<el-input type="textarea" :rows="3" v-model="dataForm.description" placeholder="请输入描述" style="width:90%"> <el-input type="textarea" :rows="3" v-model="dataForm.description" placeholder="请输入描述" style="width:90%">
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item label="场景入口">
<el-input v-model="dataForm.sceneUrl" placeholder="请输入场景入口" style="width:90%"></el-input>
</el-form-item>
<el-form-item label="图片"> <el-form-item label="图片">
<el-upload ref="editUpload" class="upload-demo" :action="fileUploadUrl" <el-upload ref="editUpload" class="upload-demo" :action="fileUploadUrl"
@ -194,6 +198,7 @@ export default {
name: '', name: '',
applicationArea: '', applicationArea: '',
description: '', description: '',
sceneUrl:'',
fuseAttrList: [ fuseAttrList: [
{ {
attrType: '使用步骤', attrType: '使用步骤',

View File

@ -23,6 +23,7 @@
style="width: 100%" :height="qp ? '810px' : '650px'"> style="width: 100%" :height="qp ? '810px' : '650px'">
<el-table-column prop="name" label="名称" header-align="center" align="center"></el-table-column> <el-table-column prop="name" label="名称" header-align="center" align="center"></el-table-column>
<el-table-column prop="description" label="描述" header-align="center" align="center"></el-table-column> <el-table-column prop="description" label="描述" header-align="center" align="center"></el-table-column>
<el-table-column prop="sceneUrl" label="场景入口" header-align="center" align="center"></el-table-column>
<el-table-column :label="$t('handle')" fixed="right" header-align="center" align="center" width="240" right="0"> <el-table-column :label="$t('handle')" fixed="right" header-align="center" align="center" width="240" right="0">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button v-if="$hasPermission('ability:bsabilityai:update')" type="text" size="small" <el-button v-if="$hasPermission('ability:bsabilityai:update')" type="text" size="small"

View File

@ -43,6 +43,7 @@
placeholder="请选审核状态" placeholder="请选审核状态"
clearable clearable
> >
<el-option label="全部" value="-1"></el-option>
<el-option label="审核完成" value="1"></el-option> <el-option label="审核完成" value="1"></el-option>
<el-option label="审核中" value="0"></el-option> <el-option label="审核中" value="0"></el-option>
</el-select> </el-select>
@ -315,7 +316,8 @@ export default {
type: '' type: ''
} }
], ],
examineStatus: '0', // examineStatus: '-1', //
status:'',
value1: [], // value1: [], //
abilityDepartment: '', // abilityDepartment: '', //
abilityType: '', // abilityType: '', //
@ -335,17 +337,17 @@ export default {
}, },
created () { created () {
// //
const d = new Date() // const d = new Date()
let year1, month1, day1 // let year1, month1, day1
;[year1, month1, day1] = [d.getFullYear(), d.getMonth(), d.getDate()] // ;[year1, month1, day1] = [d.getFullYear(), d.getMonth(), d.getDate()]
const date1 = new Date(year1, month1, day1, 7) // const date1 = new Date(year1, month1, day1, 7)
this.value1.push(date1) // this.value1.push(date1)
// // //
let year2, month2, day2 // let year2, month2, day2
d.setTime(d.getTime() - 24 * 60 * 60 * 1000) // d.setTime(d.getTime() - 24 * 60 * 60 * 1000)
;[year2, month2, day2] = [d.getFullYear(), d.getMonth(), d.getDate()] // ;[year2, month2, day2] = [d.getFullYear(), d.getMonth(), d.getDate()]
const date2 = new Date(year2, month2, day2, 7) // const date2 = new Date(year2, month2, day2, 7)
this.value1.unshift(date2) // this.value1.unshift(date2)
}, },
mounted () { mounted () {
this.getFirstTree() this.getFirstTree()
@ -402,12 +404,17 @@ export default {
// -- // --
getFirstTree (page) { getFirstTree (page) {
if(this.examineStatus== '全部'){
this.status=''
}else{
this.status=this.examineStatus
}
this.$http this.$http
.get('/census/center/selectDeptDetailTypeCountList/', { .get('/census/center/selectDeptDetailTypeCountList/', {
params: { params: {
page: page || 1, page: page || 1,
limit: 5, limit: 5,
approveStatus: this.examineStatus, approveStatus: this.status,
deptId: this.abilityDepartment, deptId: this.abilityDepartment,
params: '', params: '',
startDate: this.startDate, startDate: this.startDate,
@ -445,12 +452,17 @@ export default {
}, },
// 使-使 // 使-使
getSecondTree () { getSecondTree () {
if(this.examineStatus== '全部'){
this.status=''
}else{
this.status=this.examineStatus
}
this.$http this.$http
.get('/census/center/selectApplyDeptDetailTypeCountList', { .get('/census/center/selectApplyDeptDetailTypeCountList', {
params: { params: {
// page: page || 1, // page: page || 1,
// limit: 5, // limit: 5,
approveStatus: this.examineStatus, approveStatus: this.status,
deptId: this.abilityDepartment, deptId: this.abilityDepartment,
params: '', params: '',
startDate: this.startDate, startDate: this.startDate,
@ -501,7 +513,7 @@ export default {
// page: page || 1, // page: page || 1,
approveStatus: passAndReview, approveStatus: passAndReview,
deptId: this.abilityDepartment, deptId: this.abilityDepartment,
type: '', type: this.abilityType,
startDate: this.startDate, startDate: this.startDate,
endDate: this.endDate endDate: this.endDate
} }
@ -520,14 +532,19 @@ export default {
} else { } else {
passAndReview = this.examineStatus passAndReview = this.examineStatus
} }
if(this.examineStatus== '全部'){
this.status=''
}else{
this.status=this.examineStatus
}
this.$http this.$http
.get('/census/center/selectCensusApplyTable', { .get('/census/center/selectCensusApplyTable', {
params: { params: {
// limit: 5, // limit: 5,
// page: page || 1, // page: page || 1,
approveStatus: this.examineStatus, approveStatus: this.status,
deptId: this.abilityDepartment, deptId: this.abilityDepartment,
type: '', type: this.abilityType,
startDate: this.startDate, startDate: this.startDate,
endDate: this.endDate endDate: this.endDate
} }
@ -710,14 +727,19 @@ export default {
}, },
// //
getDataList () { getDataList () {
if (this.value1.length > 0) { if (this.value1 && this.value1.length > 0) {
this.startDate = this.handleTime(this.value1[0], 'yyyy-MM-dd HH:mm:ss') this.startDate = this.handleTime(this.value1[0], 'yyyy-MM-dd HH:mm:ss')
this.endDate = this.handleTime(this.value1[1], 'yyyy-MM-dd HH:mm:ss') this.endDate = this.handleTime(this.value1[1], 'yyyy-MM-dd HH:mm:ss')
}else{
this.startDate =''
this.endDate =''
} }
if (this.examineStatus == 0) { if (this.examineStatus == 0) {
this.examineStatus = '审核中' this.examineStatus = '审核中'
} else { } if (this.examineStatus == 1) {
this.examineStatus = '审核完成' this.examineStatus = '审核完成'
} else {
this.examineStatus = '全部'
} }
if (this.abilityDepartment) { if (this.abilityDepartment) {
@ -731,28 +753,23 @@ export default {
} else { } else {
this.abilityType = '' this.abilityType = ''
} }
console.log('查询参数开始时间1', this.startDate)
console.log('查询参数结束时间2', this.endDate)
console.log('查询参数审核状态', this.examineStatus)
console.log('查询参数部门', this.abilityDepartment)
console.log('查询参数类型', this.abilityType)
if (this.departmentId === 1) { if (this.departmentId === 1) {
if (this.detailFlag) { // if (this.detailFlag) {
this.handleChose(3) // this.handleChose(3)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} else { // } else {
this.handleChose(1) this.handleChose(1)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} // }
// this.departmentId = 1; // this.departmentId = 1;
} else if (this.departmentId === 2) { } else if (this.departmentId === 2) {
if (this.detailFlag) { // if (this.detailFlag) {
this.handleChose(4) // this.handleChose(4)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} else { // } else {
this.handleChose(2) this.handleChose(2)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} // }
} else if (this.departmentId === 3) { } else if (this.departmentId === 3) {
this.handleChose(3) this.handleChose(3)
} else { } else {
@ -763,26 +780,26 @@ export default {
resetDataList () { resetDataList () {
this.startDate = '' this.startDate = ''
this.endDate = '' this.endDate = ''
this.examineStatus = '审核中' this.examineStatus = '全部'
this.abilityDepartment = '' this.abilityDepartment = ''
this.abilityType = '' this.abilityType = ''
if (this.departmentId === 1) { if (this.departmentId === 1) {
if (this.detailFlag) { // if (this.detailFlag) {
this.handleChose(3) // this.handleChose(3)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} else { // } else {
this.handleChose(1) this.handleChose(1)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} // }
// this.departmentId = 1; // this.departmentId = 1;
} else if (this.departmentId === 2) { } else if (this.departmentId === 2) {
if (this.detailFlag) { // if (this.detailFlag) {
this.handleChose(4) // this.handleChose(4)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} else { // } else {
this.handleChose(2) this.handleChose(2)
this.detailFlag = !this.detailFlag // this.detailFlag = !this.detailFlag
} // }
} else if (this.departmentId === 3) { } else if (this.departmentId === 3) {
this.handleChose(3) this.handleChose(3)
} else { } else {

View File

@ -352,6 +352,14 @@ export function selectInfrastructureList(params) {
params, params,
}) })
} }
//
export function selectCollectComponentList(params) {
return request({
url: 'resource/selectCollectComponentList',
method: 'get',
params,
})
}
// instanceId // instanceId
export function getApplyCameraList(id) { export function getApplyCameraList(id) {
return request({ return request({

View File

@ -346,15 +346,15 @@
) { ) {
notFilled.value.push('应用领域') notFilled.value.push('应用领域')
} }
// if ( if (
// !dataFrom.value.infoList.filter( !dataFrom.value.infoList.filter(
// (val) => val.attrType === '' (val) => val.attrType === '应用状态'
// )[0] || )[0] ||
// !dataFrom.value.infoList.filter((val) => val.attrType === '')[0] !dataFrom.value.infoList.filter((val) => val.attrType === '应用状态')[0]
// .attrValue .attrValue
// ) { ) {
// notFilled.value.push('') notFilled.value.push('应用状态')
// } }
if ( if (
!dataFrom.value.infoList.filter( !dataFrom.value.infoList.filter(
(val) => val.attrType === '应用类型' (val) => val.attrType === '应用类型'
@ -373,6 +373,7 @@
// ) { // ) {
// notFilled.value.push('') // notFilled.value.push('')
// } // }
if (notFilled.value.length > 0) { if (notFilled.value.length > 0) {
message.warning('请填写必填字段') message.warning('请填写必填字段')
console.log(notFilled.value) console.log(notFilled.value)

View File

@ -27,9 +27,12 @@
<span class="label" v-if="props.dataList.shareCondition"> <span class="label" v-if="props.dataList.shareCondition">
{{ props.dataList.shareCondition }} {{ props.dataList.shareCondition }}
</span> </span>
</p> </p>
</div> </div>
<!-- <span class="label">免费</span> --> <!-- <span class="label">免费</span> -->
</div> </div>
<div class="main"> <div class="main">
<!-- <a-tooltip placement="top"> <!-- <a-tooltip placement="top">
@ -42,6 +45,11 @@
{{ props.dataList.description }} {{ props.dataList.description }}
</div> </div>
</a-tooltip> </a-tooltip>
<div style="padding-top:20px">
<span >场景入口:</span>
<span style="margin-left:10px;cursor: pointer; text-decoration: underline;"
@click="openScene(props.dataList.sceneUrl)">{{(props.dataList.sceneUrl)}}</span>
</div>
</div> </div>
<div class="bottom" v-if="props.dataList.id"> <div class="bottom" v-if="props.dataList.id">
<!-- 融合服务 存在fuseResourceList --> <!-- 融合服务 存在fuseResourceList -->
@ -72,7 +80,9 @@
</a-button> --> </a-button> -->
</div> </div>
</div> </div>
<div class="right"></div> <div class="right">
</div>
</div> </div>
</template> </template>
<script setup> <script setup>
@ -113,6 +123,10 @@
) )
}) })
} }
}
//
const openScene = (val) => {
window.open(val, "_blank");
} }
// // // //
function toView() { function toView() {

View File

@ -33,11 +33,11 @@ const orderList = [
name: '发布时间', name: '发布时间',
orderType: 'DESC', orderType: 'DESC',
}, },
{ // {
value: 'update_date', // value: 'update_date',
name: '更新时间', // name: '',
orderType: 'DESC', // orderType: 'DESC',
}, // },
] ]
const integrationOrderList = ref(JSON.parse(JSON.stringify(orderList))) const integrationOrderList = ref(JSON.parse(JSON.stringify(orderList)))
const integrationOrder = reactive({ const integrationOrder = reactive({

View File

@ -67,7 +67,7 @@ export default defineComponent({
// //
const loading = ref(true) const loading = ref(true)
const currentPage = ref(1) const currentPage = ref(1)
const currentPageSize = ref(5) const currentPageSize = ref(10)
const pageSizeOptions = ref(['2', '5', '10', '20', '50']) const pageSizeOptions = ref(['2', '5', '10', '20', '50'])
const router = useRouter() const router = useRouter()
const select = router.currentRoute.value.query.select const select = router.currentRoute.value.query.select
@ -137,10 +137,10 @@ export default defineComponent({
searchValue.value = '' searchValue.value = ''
// //
currentPage.value = 1 currentPage.value = 1
currentPageSize.value = 5 currentPageSize.value = 10
// //
paramsGetResources.page = 1 paramsGetResources.page = 1
paramsGetResources.limit = 5 paramsGetResources.limit = 10
paramsGetResources.orderField = 'create_date' paramsGetResources.orderField = 'create_date'
paramsGetResources.orderType = 'DESC' paramsGetResources.orderType = 'DESC'

View File

@ -4,7 +4,7 @@
<a-layout-header> <a-layout-header>
<div class="title">最热能力</div> <div class="title">最热能力</div>
<div class="des"> <div class="des">
能力资源汇聚能力共享开放赋能千行百业孵化生态产业 能力资源能力共享开放赋能千行百业孵化生态产业
</div> </div>
</a-layout-header> </a-layout-header>
<a-layout class="content"> <a-layout class="content">

View File

@ -8,7 +8,7 @@
<div class="bottom"> <div class="bottom">
<div class="item"> <div class="item">
<div class="zj">组件服务</div> <div class="zj">组件服务</div>
<div <!-- <div
class="name" class="name"
v-for="(item, index) in zjList" v-for="(item, index) in zjList"
:key="item.id" :key="item.id"
@ -16,6 +16,15 @@
@click="selectOne(item.id)" @click="selectOne(item.id)"
> >
{{ index + 1 }}-{{ item.name }} {{ index + 1 }}-{{ item.name }}
</div> -->
<div
class="name"
v-for="(item, index) in zjList"
:key="item.name"
:class="index == 4 ? 'name-last' : ''"
@click="selectOne1(item.name)"
>
{{ item.name + '-' + item.num + '项' }}
</div> </div>
<div class="btn" @click="jumpPage('组件服务')">查看更多</div> <div class="btn" @click="jumpPage('组件服务')">查看更多</div>
</div> </div>
@ -80,6 +89,7 @@
pageWithAttrs, pageWithAttrs,
getDataResource, getDataResource,
selectInfrastructureList, selectInfrastructureList,
selectCollectComponentList
} from '@/api/home.js' } from '@/api/home.js'
import { ref, reactive } from 'vue' import { ref, reactive } from 'vue'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
@ -209,6 +219,51 @@
}) })
} }
}) })
}
else if (type == '组件服务') {
zjList.value = []
selectCollectComponentList().then((res) => {
for (const key in res.data.data) {
if (whoShow1.value.itShowXiHaiAn) {
if (key === '视频资源') {
zjList.value.push({
name: key,
num: res.data.data[key],
})
}
} else {
zjList.value.push({
name: key,
num: res.data.data[key],
})
}
}
// 西-
if (whoShow1.value.itShowXiHaiAn) {
getSoldierData('无人机')
.then((res) => {
let { total = 0 } = res.data.data
zjList.value.push({
name: '无人机',
num: total,
})
})
.catch((err) => {
console.log('err--无人机---------->', err)
})
getSoldierData('单兵设备')
.then((res) => {
let { total = 0 } = res.data.data
zjList.value.push({
name: '单兵设备',
num: total,
})
})
.catch((err) => {
console.log('err--单兵设备---------->', err)
})
}
})
} else { } else {
pageWithAttrs(paramsGetResources).then((res) => { pageWithAttrs(paramsGetResources).then((res) => {
console.log('object个数======>', type) console.log('object个数======>', type)
@ -318,6 +373,15 @@
}, },
}) })
} }
const selectOne1 = (name) => {
router.push({
path: '/DetailsPageconetent',
query: {
type: name,
select: '组件服务',
},
})
}
const selectOne2 = (name) => { const selectOne2 = (name) => {
console.log('点击===============》', name) console.log('点击===============》', name)
router.push({ router.push({

View File

@ -283,7 +283,7 @@
} }
const mohuchaxun = ref('组件服务') const mohuchaxun = ref('组件服务')
function onSearch() { function onSearch() {
if (text.value) { // if (text.value) {
snum.value.str = text.value snum.value.str = text.value
console.log('===================>', text.value) console.log('===================>', text.value)
store.commit('home/selectCardsData', snum.value) store.commit('home/selectCardsData', snum.value)
@ -291,9 +291,9 @@
path: '/DetailsPageconetent', path: '/DetailsPageconetent',
query: snum.value, query: snum.value,
}) })
} else { // } else {
message.warning('请输入查询内容!') // message.warning('')
} // }
// router.push({ path: '/DetailsPageconetent' }) // router.push({ path: '/DetailsPageconetent' })
} }
</script> </script>