Compare commits
No commits in common. "931e3a0e0a78f6033b2e7e52b9e3b6b0dfe614fa" and "31e81a258c939385bf542c74fea3ce6f43fadcf1" have entirely different histories.
931e3a0e0a
...
31e81a258c
|
@ -1,10 +1,3 @@
|
||||||
/*
|
|
||||||
* @Author: hisense.wuhongjian
|
|
||||||
* @Date: 2022-07-05 12:53:03
|
|
||||||
* @LastEditors: hisense.wuhongjian
|
|
||||||
* @LastEditTime: 2022-08-23 16:37:05
|
|
||||||
* @Description: 告诉大家这是什么
|
|
||||||
*/
|
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import Vuex from 'vuex'
|
import Vuex from 'vuex'
|
||||||
import cloneDeep from 'lodash/cloneDeep'
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
@ -69,12 +62,12 @@ export default new Vuex.Store({
|
||||||
// dispatch('getDepartmentSelects')
|
// dispatch('getDepartmentSelects')
|
||||||
},
|
},
|
||||||
getCatalogueTree ({ commit }) {
|
getCatalogueTree ({ commit }) {
|
||||||
// http.get('bscatalogue/bscatalogue/page').then(res => {
|
http.get('bscatalogue/bscatalogue/page').then(res => {
|
||||||
// if (res.data.code === 0) {
|
if (res.data.code === 0) {
|
||||||
// console.log(22222, res.data)
|
console.log(22222, res.data)
|
||||||
// commit('setCatalogueTree', res.data.data)
|
commit('setCatalogueTree', res.data.data)
|
||||||
// }
|
}
|
||||||
// })
|
})
|
||||||
},
|
},
|
||||||
getDepartmentSelects ({ commit }) {
|
getDepartmentSelects ({ commit }) {
|
||||||
http.get('applyRecord/bsAbilityApplyRecord/page').then(({ data: res }) => {
|
http.get('applyRecord/bsAbilityApplyRecord/page').then(({ data: res }) => {
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
/*
|
|
||||||
* @Author: hisense.liangjunhua
|
|
||||||
* @Date: 2022-08-23 10:30:11
|
|
||||||
* @LastEditors: hisense.liangjunhua
|
|
||||||
* @LastEditTime: 2022-08-23 10:31:30
|
|
||||||
* @Description: 告诉大家这是什么
|
|
||||||
*/
|
|
||||||
const returnLocationStr = () => {
|
|
||||||
return 'qingdao'
|
|
||||||
}
|
|
||||||
|
|
||||||
export default returnLocationStr
|
|
|
@ -9,7 +9,7 @@
|
||||||
<div class="basic-information-content">
|
<div class="basic-information-content">
|
||||||
<p>
|
<p>
|
||||||
<span class="text">
|
<span class="text">
|
||||||
能力申请标题:<span> {{ dataForm.undercarriageTitle || '--' }}</span></span
|
能力申请标题:<span> {{ dataForm.name || '--' }}</span></span
|
||||||
>
|
>
|
||||||
<span class="text"
|
<span class="text"
|
||||||
>下架单号:<span>{{ dataForm.applyNumber || '--' }}</span></span
|
>下架单号:<span>{{ dataForm.applyNumber || '--' }}</span></span
|
||||||
|
@ -22,22 +22,17 @@
|
||||||
></span
|
></span
|
||||||
>
|
>
|
||||||
<span class="text"
|
<span class="text"
|
||||||
>电话:<span>{{ dataForm.undercarriageUserPhone || '--' }}</span></span
|
>电话:<span>{{ dataForm.deptPhone || '--' }}</span></span
|
||||||
>
|
>
|
||||||
<span class="text"
|
<span class="text"
|
||||||
>单位:<span>{{ dataForm.deptName || deptName }}</span></span
|
>单位:<span>{{ dataForm.deptName || deptName }}</span></span
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p v-if="dataForm.enclosure" class="accessory">
|
||||||
<span class="text"
|
|
||||||
>能力下架原因:<span>{{ dataForm.undercarriageReason || '--' }}</span></span
|
|
||||||
>
|
|
||||||
</p>
|
|
||||||
<p v-if="dataForm.undercarriageEnclosure" class="accessory">
|
|
||||||
<span>
|
<span>
|
||||||
申请附件:<span>
|
申请附件:<span>
|
||||||
{{ dataForm.undercarriageEnclosureName || '--'
|
{{ dataForm.enclosure || '--'
|
||||||
}}<button @click="downloadFile2(dataForm.undercarriageEnclosure)">
|
}}<button @click="downloadFile2(dataForm.enclosure)">
|
||||||
预览
|
预览
|
||||||
</button></span
|
</button></span
|
||||||
></span
|
></span
|
||||||
|
|
|
@ -109,7 +109,6 @@
|
||||||
<script>
|
<script>
|
||||||
import mixinViewModule from '@/mixins/view-module'
|
import mixinViewModule from '@/mixins/view-module'
|
||||||
import processModule from '@/mixins/process-module'
|
import processModule from '@/mixins/process-module'
|
||||||
import returnLocationStr from '@/utils/location'
|
|
||||||
import qs from 'qs'
|
import qs from 'qs'
|
||||||
export default {
|
export default {
|
||||||
mixins: [mixinViewModule, processModule],
|
mixins: [mixinViewModule, processModule],
|
||||||
|
@ -123,7 +122,7 @@ export default {
|
||||||
},
|
},
|
||||||
dataForm: {
|
dataForm: {
|
||||||
processDefinitionId: '',
|
processDefinitionId: '',
|
||||||
processDefinitionKey: returnLocationStr() == 'qingdao' ? 'abilityprocess_v3' : 'abilityprocess_v2'
|
processDefinitionKey: 'abilityprocess_v2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-27 11:27:22
|
* @Date: 2022-06-27 11:27:22
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-08-23 10:37:29
|
* @LastEditTime: 2022-07-25 09:39:01
|
||||||
* @Description: 能力申请
|
* @Description: 能力申请
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -121,7 +121,6 @@
|
||||||
import bus from '@/views/bus.js'
|
import bus from '@/views/bus.js'
|
||||||
import mixinViewModule from '@/mixins/view-module'
|
import mixinViewModule from '@/mixins/view-module'
|
||||||
import processModule from '@/mixins/process-module'
|
import processModule from '@/mixins/process-module'
|
||||||
import returnLocationStr from '@/utils/location'
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [mixinViewModule, processModule],
|
mixins: [mixinViewModule, processModule],
|
||||||
data () {
|
data () {
|
||||||
|
@ -136,7 +135,7 @@ export default {
|
||||||
dataForm: {
|
dataForm: {
|
||||||
taskName: '',
|
taskName: '',
|
||||||
taskId: '',
|
taskId: '',
|
||||||
processDefinitionKey: returnLocationStr() == 'qingdao' ? 'abilityprocess_v3' : 'abilityprocess_v2'
|
processDefinitionKey: 'abilityprocess_v2'
|
||||||
},
|
},
|
||||||
processInstanceId: ''
|
processInstanceId: ''
|
||||||
}
|
}
|
||||||
|
@ -145,7 +144,7 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
// 处理
|
// 处理
|
||||||
taskHandle (row) {
|
taskHandle (row) {
|
||||||
console.log('row======================>', row, this.forwardHandleUrl, this.dataForm.processDefinitionKey)
|
console.log('row======================>', row, this.forwardHandleUrl)
|
||||||
if (!row.businessKey) {
|
if (!row.businessKey) {
|
||||||
return this.$message.error(this.$t('task.businessKeyError'))
|
return this.$message.error(this.$t('task.businessKeyError'))
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,8 +65,6 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:destroy-on-close="true"
|
|
||||||
:close-on-click-modal="false"
|
|
||||||
@close="outDialog"
|
@close="outDialog"
|
||||||
:title="
|
:title="
|
||||||
flge === 'add'
|
flge === 'add'
|
||||||
|
@ -106,24 +104,21 @@
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="会议室面积(m²)"
|
label="会议室面积"
|
||||||
prop="area"
|
prop="area"
|
||||||
:label-width="formLabelWidth"
|
:label-width="formLabelWidth"
|
||||||
>
|
>
|
||||||
<el-input
|
<el-input v-model="ruleForm.area" style="width: 90%"></el-input>
|
||||||
v-model.number="ruleForm.area"
|
|
||||||
style="width: 90%"
|
|
||||||
></el-input>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="可容纳人数(人)"
|
label="可容纳人数"
|
||||||
prop="capacity"
|
prop="capacity"
|
||||||
:label-width="formLabelWidth"
|
:label-width="formLabelWidth"
|
||||||
>
|
>
|
||||||
<el-input
|
<el-input
|
||||||
v-model.number="ruleForm.capacity"
|
v-model="ruleForm.capacity"
|
||||||
style="width: 90%"
|
style="width: 90%"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -149,7 +144,7 @@
|
||||||
>
|
>
|
||||||
<div v-if="flge != 'look'">
|
<div v-if="flge != 'look'">
|
||||||
<span slot="tip" class="el-upload__tip">
|
<span slot="tip" class="el-upload__tip">
|
||||||
支持图片jpg、jpeg、png类型,只能上传一张图片且不超过100MB
|
支持图片类型,且不超过500kb
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<!-- :file-list="fileList" -->
|
<!-- :file-list="fileList" -->
|
||||||
|
@ -161,7 +156,6 @@
|
||||||
:on-preview="handlePictureCardPreview"
|
:on-preview="handlePictureCardPreview"
|
||||||
:on-success="onSuccess"
|
:on-success="onSuccess"
|
||||||
:on-remove="onRemove"
|
:on-remove="onRemove"
|
||||||
:on-exceed="beforeUpload"
|
|
||||||
:file-list="fileList"
|
:file-list="fileList"
|
||||||
list-type="picture-card"
|
list-type="picture-card"
|
||||||
:limit="1"
|
:limit="1"
|
||||||
|
@ -246,19 +240,13 @@ export default {
|
||||||
],
|
],
|
||||||
area: [
|
area: [
|
||||||
{ required: true, message: '请输入会议室面积', trigger: 'blur' },
|
{ required: true, message: '请输入会议室面积', trigger: 'blur' },
|
||||||
{ min: 1, type: 'number', trigger: 'blur' },
|
{ min: 1, trigger: 'blur' },
|
||||||
],
|
],
|
||||||
description: [
|
description: [
|
||||||
{ required: true, message: '请填写描述内容', trigger: 'blur' },
|
{ required: true, message: '请填写描述内容', trigger: 'blur' },
|
||||||
{
|
|
||||||
min: 1,
|
|
||||||
max: 500,
|
|
||||||
message: '长度在 1 到 500 个字符',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
formLabelWidth: '120px',
|
formLabelWidth: '100px',
|
||||||
checkImgSuccess: true,
|
checkImgSuccess: true,
|
||||||
dialogVisible: false,
|
dialogVisible: false,
|
||||||
flge: '',
|
flge: '',
|
||||||
|
@ -297,21 +285,11 @@ export default {
|
||||||
this.dialogImageUrl = file.url
|
this.dialogImageUrl = file.url
|
||||||
this.dialogVisible = true
|
this.dialogVisible = true
|
||||||
},
|
},
|
||||||
//上传个数限制
|
|
||||||
beforeUpload(file, fileList) {
|
|
||||||
this.$message.error('最多只能上传一张图片!')
|
|
||||||
},
|
|
||||||
//图片上传成功时钩子
|
//图片上传成功时钩子
|
||||||
onSuccess(response, file, fileList) {
|
onSuccess(response, file, fileList) {
|
||||||
const isLt2M = file.size / 1024 / 1024 < 100
|
|
||||||
if (!isLt2M) {
|
|
||||||
this.$message.error('上传图片大小不能超过100MB!')
|
|
||||||
this.fileList = []
|
|
||||||
} else {
|
|
||||||
this.ruleForm.pic = response.data
|
this.ruleForm.pic = response.data
|
||||||
// this.$refs.ruleForm.clearValidate() //上传成功清除校验
|
// this.$refs.ruleForm.clearValidate() //上传成功清除校验
|
||||||
this.checkImgSuccess = true
|
this.checkImgSuccess = true
|
||||||
}
|
|
||||||
},
|
},
|
||||||
//图片删除时钩子
|
//图片删除时钩子
|
||||||
onRemove(file, fileList) {
|
onRemove(file, fileList) {
|
||||||
|
@ -324,16 +302,13 @@ export default {
|
||||||
},
|
},
|
||||||
// 保存
|
// 保存
|
||||||
submitForm(formName, i) {
|
submitForm(formName, i) {
|
||||||
|
console.log(i, 9999999)
|
||||||
this.$refs[formName].validate((valid) => {
|
this.$refs[formName].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
if (i === 'add') {
|
if (i === 'add') {
|
||||||
this.dialogFormVisible = false
|
this.dialogFormVisible = false
|
||||||
this.$http.post('/meeting', this.ruleForm).then(({ data: res }) => {
|
this.$http.post('/meeting', this.ruleForm).then(({ data: res }) => {
|
||||||
if (res.msg === 'success') {
|
|
||||||
this.queryData()
|
this.queryData()
|
||||||
} else {
|
|
||||||
this.$message.error('保存接口调用失败')
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
} else if (i === 'edit') {
|
} else if (i === 'edit') {
|
||||||
this.dialogFormVisible = false
|
this.dialogFormVisible = false
|
||||||
|
@ -381,25 +356,11 @@ export default {
|
||||||
},
|
},
|
||||||
//删除图片
|
//删除图片
|
||||||
taskDelete(row) {
|
taskDelete(row) {
|
||||||
this.$confirm('此操作将永久删除该会议室, 是否继续?', '提示', {
|
console.log(row, '点击了删除')
|
||||||
confirmButtonText: '确定',
|
this.$http
|
||||||
cancelButtonText: '取消',
|
.put(`/meeting`, { delFlag: 1, id: row.id })
|
||||||
type: 'warning',
|
.then(({ data: res }) => {
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
this.$http.put(`/meeting`, { delFlag: 1, id: row.id }).then(() => {
|
|
||||||
this.queryData()
|
this.queryData()
|
||||||
this.$message({
|
|
||||||
type: 'success',
|
|
||||||
message: '删除成功!',
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
this.$message({
|
|
||||||
type: 'info',
|
|
||||||
message: '已取消删除',
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
//监听关闭按钮时间
|
//监听关闭按钮时间
|
||||||
|
@ -417,8 +378,4 @@ export default {
|
||||||
::v-deep .el-dialog__footer {
|
::v-deep .el-dialog__footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
::v-deep .el-image {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -86,8 +86,8 @@
|
||||||
<!-- <div>{{ multipleAdditionsItem }}</div> -->
|
<!-- <div>{{ multipleAdditionsItem }}</div> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-tooltip v-else placement="top" :disabled="itemsonson.note1 !== null?false:true" :content="itemsonson.note1">
|
<el-tooltip v-else placement="top">
|
||||||
<!-- <div slot="content" v-show="itemsonson.note1">{{ itemsonson.note1 }}</div> -->
|
<div slot="content">{{ itemsonson.note1 }}</div>
|
||||||
<el-input
|
<el-input
|
||||||
v-model="itemsonson.note1"
|
v-model="itemsonson.note1"
|
||||||
disabled="disabled"
|
disabled="disabled"
|
||||||
|
@ -107,13 +107,10 @@
|
||||||
(itemsonson.name === '服务接口' && showInterface)
|
(itemsonson.name === '服务接口' && showInterface)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<el-tooltip placement="top" :disabled="itemsonson.note1 !== null?false:true" :content="itemsonson.note1">
|
|
||||||
<el-input
|
<el-input
|
||||||
v-model="itemsonson.note1"
|
v-model="itemsonson.note1"
|
||||||
disabled="disabled"
|
disabled="disabled"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-tooltip>
|
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2022-03-29 16:45:25
|
* @Date: 2022-03-29 16:45:25
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: hisense.wuhongjian
|
||||||
* @LastEditTime: 2022-08-23 16:38:21
|
* @LastEditTime: 2022-08-16 14:11:20
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
// window.SITE_CONFIG['frontUrl'] = 'http://15.72.183.90:7008/document/#/devModelFile/';
|
// window.SITE_CONFIG['frontUrl'] = 'http://15.72.183.90:7008/document/#/devModelFile/';
|
||||||
// window.SITE_CONFIG['apiURL'] = 'http://15.72.183.90:8000/renren-admin';
|
// window.SITE_CONFIG['apiURL'] = 'http://15.72.183.90:8000/renren-admin';
|
||||||
// window.SITE_CONFIG['websocketURL'] = '15.72.183.90:8000/renren-admin';
|
// window.SITE_CONFIG['websocketURL'] = '15.72.183.90:8000/renren-admin';
|
||||||
// window.SITE_CONFIG['POI_URL'] = 'http://15.72.178.129:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address';
|
window.SITE_CONFIG['POI_URL'] = 'http://15.72.178.129:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address';
|
||||||
// 包头
|
// 包头
|
||||||
// window.SITE_CONFIG['backUrl'] = 'http://10.110.205.1:8001';
|
// window.SITE_CONFIG['backUrl'] = 'http://10.110.205.1:8001';
|
||||||
// window.SITE_CONFIG['previewUrl'] = 'http://10.110.205.1:8002/';
|
// window.SITE_CONFIG['previewUrl'] = 'http://10.110.205.1:8002/';
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2020-07-07 16:03:23
|
* @Date: 2020-07-07 16:03:23
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: hisense.wuhongjian
|
||||||
* @LastEditTime: 2022-08-23 16:38:39
|
* @LastEditTime: 2022-08-16 09:57:33
|
||||||
* @Description: 数据资源参数配置
|
* @Description: 数据资源参数配置
|
||||||
*/
|
*/
|
||||||
//const newLocation = 'qingdao'
|
//const newLocation = 'qingdao'
|
||||||
|
@ -40,7 +40,6 @@ if (newLocation === 'qingdao') {
|
||||||
// { name: '后台管理', key: 'houtaiguanli' },
|
// { name: '后台管理', key: 'houtaiguanli' },
|
||||||
{ name: '赋能案例', key: 'assignCase' },
|
{ name: '赋能案例', key: 'assignCase' },
|
||||||
{ name: '融合服务', key: 'integrationServices' },
|
{ name: '融合服务', key: 'integrationServices' },
|
||||||
{ name: 'CIM专区', key: 'cimSpecialArea' },
|
|
||||||
]
|
]
|
||||||
footerDataList.footerList = {
|
footerDataList.footerList = {
|
||||||
company: {
|
company: {
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
/*
|
|
||||||
* @Author: hisense.liangjunhua
|
|
||||||
* @Date: 2022-08-19 14:25:45
|
|
||||||
* @LastEditors: hisense.liangjunhua
|
|
||||||
* @LastEditTime: 2022-08-19 15:25:03
|
|
||||||
* @Description: 告诉大家这是什么
|
|
||||||
*/
|
|
||||||
import request from '@/utils/request'
|
|
||||||
// 各个cim总数
|
|
||||||
export function countByType() {
|
|
||||||
return request({
|
|
||||||
url: '/resource/countByType',
|
|
||||||
method: 'get',
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// cim+平台
|
|
||||||
export function getCIMApplyApplicationList() {
|
|
||||||
return request({
|
|
||||||
url: '/resource/getCIMApplyApplicationList',
|
|
||||||
method: 'get',
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// cim+图层
|
|
||||||
export function cimImgResources(params) {
|
|
||||||
return request({
|
|
||||||
url: '/resource/cimImgResources?type=' + params,
|
|
||||||
method: 'get',
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// cim+算法
|
|
||||||
export function cimAssemblyResources() {
|
|
||||||
return request({
|
|
||||||
url: '/resource/cimAssemblyResources',
|
|
||||||
method: 'get',
|
|
||||||
})
|
|
||||||
}
|
|
|
@ -2,11 +2,10 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2022-04-01 19:19:40
|
* @Date: 2022-04-01 19:19:40
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-08-23 09:37:58
|
* @LastEditTime: 2022-08-13 14:54:04
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
import returnLocationStr from '@/utils/location'
|
|
||||||
|
|
||||||
export function selectDicStoreAll(params) {
|
export function selectDicStoreAll(params) {
|
||||||
return request({
|
return request({
|
||||||
|
@ -114,30 +113,16 @@ export function lastestPage(params) {
|
||||||
|
|
||||||
// 提交申请
|
// 提交申请
|
||||||
export function submitApply(data) {
|
export function submitApply(data) {
|
||||||
const newLocation = returnLocationStr()
|
|
||||||
let url = ''
|
|
||||||
if (newLocation == 'qingdao') {
|
|
||||||
url = '/ability/center/v3/apply'
|
|
||||||
} else {
|
|
||||||
url = '/ability/center/v2/apply'
|
|
||||||
}
|
|
||||||
return request({
|
return request({
|
||||||
url: url,
|
url: '/ability/center/v2/apply',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data,
|
data,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 全部应用提交申请
|
// 提交申请
|
||||||
export function applyAllApplication(data) {
|
export function applyAllApplication(data) {
|
||||||
const newLocation = returnLocationStr()
|
|
||||||
let url = ''
|
|
||||||
if (newLocation == 'qingdao') {
|
|
||||||
url = '/ability/center/v3/applyAllApplication'
|
|
||||||
} else {
|
|
||||||
url = '/ability/center/v2/applyAllApplication'
|
|
||||||
}
|
|
||||||
return request({
|
return request({
|
||||||
url: url,
|
url: '/ability/center/v2/applyAllApplication',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data,
|
data,
|
||||||
})
|
})
|
||||||
|
|
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 321 KiB |
Before Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 149 KiB |
Before Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 143 KiB |
Before Width: | Height: | Size: 149 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.1 KiB |
|
@ -5,9 +5,7 @@
|
||||||
* @LastEditTime: 2022-08-06 15:00:49
|
* @LastEditTime: 2022-08-06 15:00:49
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
*/
|
*/
|
||||||
import {
|
import { createApp } from 'vue'
|
||||||
createApp
|
|
||||||
} from 'vue'
|
|
||||||
import Antd from 'ant-design-vue'
|
import Antd from 'ant-design-vue'
|
||||||
import mitt from 'mitt'
|
import mitt from 'mitt'
|
||||||
import App from './App'
|
import App from './App'
|
||||||
|
@ -17,8 +15,7 @@ import store from './store'
|
||||||
import 'ant-design-vue/dist/antd.css'
|
import 'ant-design-vue/dist/antd.css'
|
||||||
import '@/vab'
|
import '@/vab'
|
||||||
import * as echarts from 'echarts'
|
import * as echarts from 'echarts'
|
||||||
import * as moment from "moment"
|
import * as moment from 'moment'
|
||||||
import "dayjs/locale/zh-cn";
|
|
||||||
import vue3videoPlay from 'vue3-video-play-emiyagm' // 引入组件
|
import vue3videoPlay from 'vue3-video-play-emiyagm' // 引入组件
|
||||||
import 'vue3-video-play-emiyagm/dist/style.css' // 引入css
|
import 'vue3-video-play-emiyagm/dist/style.css' // 引入css
|
||||||
import ElementPlus from 'element-plus'
|
import ElementPlus from 'element-plus'
|
||||||
|
|
|
@ -405,16 +405,6 @@ export const constantRoutes = [
|
||||||
icon: 'error-warning-line',
|
icon: 'error-warning-line',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
// CIM专区
|
|
||||||
{
|
|
||||||
path: '/cimSpecialArea',
|
|
||||||
name: 'cimSpecialArea',
|
|
||||||
component: () => import('@/views/cimSpecialArea/index'),
|
|
||||||
meta: {
|
|
||||||
title: 'CIM专区',
|
|
||||||
icon: 'error-warning-line',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
// 能力云图
|
// 能力云图
|
||||||
{
|
{
|
||||||
path: '/capabilityCloud',
|
path: '/capabilityCloud',
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
/*
|
|
||||||
* @Author: hisense.liangjunhua
|
|
||||||
* @Date: 2022-08-22 18:22:16
|
|
||||||
* @LastEditors: hisense.liangjunhua
|
|
||||||
* @LastEditTime: 2022-08-23 09:31:02
|
|
||||||
* @Description: 告诉大家这是什么
|
|
||||||
*/
|
|
||||||
|
|
||||||
const returnLocationStr = () => {
|
|
||||||
return 'qingdao'
|
|
||||||
}
|
|
||||||
|
|
||||||
export default returnLocationStr
|
|
|
@ -1,87 +0,0 @@
|
||||||
<!--
|
|
||||||
* @Author: hisense.liangjunhua
|
|
||||||
* @Date: 2022-08-19 10:00:16
|
|
||||||
* @LastEditors: hisense.liangjunhua
|
|
||||||
* @LastEditTime: 2022-08-19 15:55:05
|
|
||||||
* @Description: 告诉大家这是什么
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div class="algorithm">
|
|
||||||
<div class="header">CIM+算法</div>
|
|
||||||
<div class="main">
|
|
||||||
<div
|
|
||||||
class="item"
|
|
||||||
v-for="val in data.list"
|
|
||||||
:key="val.id"
|
|
||||||
@click="goToView(val.id)"
|
|
||||||
>
|
|
||||||
<div class="name">{{ val.name }}</div>
|
|
||||||
<div class="img"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<script setup>
|
|
||||||
import { reactive } from 'vue'
|
|
||||||
import { cimAssemblyResources } from '@/api/cimSpecialArea'
|
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
const router = useRouter()
|
|
||||||
const data = reactive({ list: [] })
|
|
||||||
cimAssemblyResources().then((res) => {
|
|
||||||
console.log('算法================>', res.data.data)
|
|
||||||
data.list = res.data.data
|
|
||||||
})
|
|
||||||
const goToView = (id) => {
|
|
||||||
const newpage = router.resolve({
|
|
||||||
path: '/details',
|
|
||||||
query: {
|
|
||||||
id: id,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
window.open(newpage.href, '_blank')
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.algorithm {
|
|
||||||
padding: 0.7rem 1.05rem 0.5rem;
|
|
||||||
.header {
|
|
||||||
padding-bottom: 0.15rem;
|
|
||||||
border-bottom: 1px solid #bdbdbd;
|
|
||||||
font-size: 30px;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
.main {
|
|
||||||
padding: 0 0.93rem;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
.item {
|
|
||||||
width: 3.39rem;
|
|
||||||
height: 1rem;
|
|
||||||
border: 2px solid #7dbbff;
|
|
||||||
border-radius: 0.2rem;
|
|
||||||
margin: 0.3rem 0.2rem 0;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
padding: 0.41rem 0.4rem;
|
|
||||||
transition: all 0.5s;
|
|
||||||
.name {
|
|
||||||
font-size: 26px;
|
|
||||||
color: #7dbbff;
|
|
||||||
}
|
|
||||||
.img {
|
|
||||||
width: 0.57rem;
|
|
||||||
height: 0.57rem;
|
|
||||||
background: url('~@/assets/cimSpecialArea/zj.png') no-repeat;
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.item:hover {
|
|
||||||
cursor: pointer;
|
|
||||||
width: 3.45rem;
|
|
||||||
height: 1.1rem;
|
|
||||||
margin: 0.25rem 0.17rem -0.05rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -1,104 +0,0 @@
|
||||||
<template>
|
|
||||||
<div class="box">
|
|
||||||
<div class="header">
|
|
||||||
<div class="headerbox" v-for="(item, index) in headerList" :key="index">
|
|
||||||
<div>
|
|
||||||
<img :src="item.img" />
|
|
||||||
<h3>{{ item.name }}</h3>
|
|
||||||
</div>
|
|
||||||
<i></i>
|
|
||||||
<h2>{{ item.num }}个</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<script setup>
|
|
||||||
import { countByType } from '@/api/cimSpecialArea'
|
|
||||||
import { ref } from 'vue'
|
|
||||||
const headerList = ref([
|
|
||||||
{
|
|
||||||
name: 'CIM+平台',
|
|
||||||
img: require('@/assets/cimSpecialArea/platform.png'),
|
|
||||||
num: 0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'CIM+图层',
|
|
||||||
img: require('@/assets/cimSpecialArea/coverage.png'),
|
|
||||||
num: 0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'CIM+算法',
|
|
||||||
img: require('@/assets/cimSpecialArea/algorithm.png'),
|
|
||||||
num: 0,
|
|
||||||
},
|
|
||||||
])
|
|
||||||
countByType().then((res) => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
console.log(res.data.data, '====>各个cim总数')
|
|
||||||
res.data.data.map((item) => {
|
|
||||||
if (item.type === '平台') {
|
|
||||||
headerList.value[0].num = item.count
|
|
||||||
} else if (item.type === '图层') {
|
|
||||||
headerList.value[1].num = item.count
|
|
||||||
} else if (item.type === '组件') {
|
|
||||||
headerList.value[2].num = item.count
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.box {
|
|
||||||
width: 100%;
|
|
||||||
height: 3.02rem;
|
|
||||||
background: url('~@/assets/cimSpecialArea/cimBG.png') no-repeat;
|
|
||||||
display: flex;
|
|
||||||
.header {
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
.headerbox {
|
|
||||||
width: 5.34rem;
|
|
||||||
height: 2rem;
|
|
||||||
border-radius: 00.08rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
margin-right: 0.6rem;
|
|
||||||
background: #ffffff;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
img {
|
|
||||||
width: 1.04rem;
|
|
||||||
height: 1.06rem;
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
font-size: 20px;
|
|
||||||
color: #000000;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
font-size: 34px;
|
|
||||||
color: #000000;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-left: 1rem;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
i {
|
|
||||||
width: 0.01rem;
|
|
||||||
height: 1.15rem;
|
|
||||||
background: #cccccc;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.headerbox:last-child {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
.headerbox > div {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
margin-left: 0.6rem;
|
|
||||||
margin-right: 0.85rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -1,280 +0,0 @@
|
||||||
<!--
|
|
||||||
* @Author: hisense.liangjunhua
|
|
||||||
* @Date: 2022-08-19 10:00:16
|
|
||||||
* @LastEditors: hisense.liangjunhua
|
|
||||||
* @LastEditTime: 2022-08-19 17:07:55
|
|
||||||
* @Description: 告诉大家这是什么
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div class="layer">
|
|
||||||
<div class="header">CIM+图层</div>
|
|
||||||
<div class="main">
|
|
||||||
<div class="top">
|
|
||||||
<div class="box">
|
|
||||||
<div
|
|
||||||
class="item"
|
|
||||||
v-for="(val, index) in data.resourcesList"
|
|
||||||
:class="selectResources.name == val.name ? 'select-item' : ''"
|
|
||||||
:key="val.id"
|
|
||||||
v-show="index < 6"
|
|
||||||
@click="chageResources(val)"
|
|
||||||
>
|
|
||||||
<a-tooltip>
|
|
||||||
<template #title>{{ val.name }}</template>
|
|
||||||
|
|
||||||
{{ val.name }}
|
|
||||||
</a-tooltip>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<caret-down-outlined
|
|
||||||
v-show="data.resourcesList.length > 6 && !boxFlag"
|
|
||||||
@click="showList"
|
|
||||||
/>
|
|
||||||
<caret-up-outlined
|
|
||||||
v-show="data.resourcesList.length > 6 && boxFlag"
|
|
||||||
@click="boxFlag = false"
|
|
||||||
/>
|
|
||||||
<div class="listBox" v-show="boxFlag">
|
|
||||||
<div
|
|
||||||
class="item"
|
|
||||||
v-for="(val, index) in data.resourcesList"
|
|
||||||
:class="selectResources.name == val.name ? 'select-item' : ''"
|
|
||||||
:key="val.id"
|
|
||||||
v-show="index > 5"
|
|
||||||
@click="chageResources(val)"
|
|
||||||
>
|
|
||||||
<a-tooltip>
|
|
||||||
<template #title>{{ val.name }}</template>
|
|
||||||
|
|
||||||
{{ val.name }}
|
|
||||||
</a-tooltip>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="bottom">
|
|
||||||
<div class="left">
|
|
||||||
<div
|
|
||||||
class="list-item"
|
|
||||||
:class="selectDictLabel == val.dictLabel ? 'list-item-select' : ''"
|
|
||||||
v-for="val in data.dicList"
|
|
||||||
:key="val.id"
|
|
||||||
@click="selectLeft(val.dictLabel)"
|
|
||||||
>
|
|
||||||
{{ val.dictLabel }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="right">
|
|
||||||
<a-image
|
|
||||||
:width="1250"
|
|
||||||
:height="600"
|
|
||||||
:preview="false"
|
|
||||||
:src="selectResources.link || imgSrc"
|
|
||||||
:fallback="imgSrc"
|
|
||||||
@click="goToView"
|
|
||||||
/>
|
|
||||||
<div class="name">{{ selectResources.name }}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<script setup>
|
|
||||||
import { reactive, ref } from 'vue'
|
|
||||||
import { CaretDownOutlined, CaretUpOutlined } from '@ant-design/icons-vue'
|
|
||||||
import { getCategoryTreePage } from '@/api/personalCenter'
|
|
||||||
import { cimImgResources } from '@/api/cimSpecialArea'
|
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
const router = useRouter()
|
|
||||||
const data = reactive({ dicList: [], resourcesList: [] })
|
|
||||||
const selectDictLabel = ref('')
|
|
||||||
const selectResources = ref({})
|
|
||||||
const boxFlag = ref(false)
|
|
||||||
const imgSrc = ref(require('@/assets/cimSpecialArea/tcmr.jpg'))
|
|
||||||
const selectLeft = (dictLabel) => {
|
|
||||||
boxFlag.value = false
|
|
||||||
selectDictLabel.value = dictLabel
|
|
||||||
getData(selectDictLabel.value)
|
|
||||||
}
|
|
||||||
getCategoryTreePage({
|
|
||||||
page: 1,
|
|
||||||
limit: 99,
|
|
||||||
dictTypeId: '1560456227954102274',
|
|
||||||
}).then((res) => {
|
|
||||||
// console.log('获取图层分类==============>', res.data.data)
|
|
||||||
data.dicList = res.data.data.list
|
|
||||||
selectDictLabel.value = res.data.data.list[0].dictLabel
|
|
||||||
getData(selectDictLabel.value)
|
|
||||||
})
|
|
||||||
const getData = (type) => {
|
|
||||||
cimImgResources(type).then((res) => {
|
|
||||||
console.log('图层================》', res.data.data)
|
|
||||||
data.resourcesList = res.data.data
|
|
||||||
if (res.data.data.length > 0) {
|
|
||||||
selectResources.value = res.data.data[0]
|
|
||||||
} else {
|
|
||||||
selectResources.value = {}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const chageResources = (val) => {
|
|
||||||
selectResources.value = val
|
|
||||||
boxFlag.value = false
|
|
||||||
}
|
|
||||||
const showList = () => {
|
|
||||||
boxFlag.value = true
|
|
||||||
}
|
|
||||||
const goToView = () => {
|
|
||||||
if (selectResources.value.id) {
|
|
||||||
const newpage = router.resolve({
|
|
||||||
path: '/details',
|
|
||||||
query: {
|
|
||||||
id: selectResources.value.id,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
window.open(newpage.href, '_blank')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.layer {
|
|
||||||
padding: 0.7rem 1.05rem;
|
|
||||||
background: url('~@/assets/cimSpecialArea/tcbg.png') no-repeat;
|
|
||||||
font-size: 100%;
|
|
||||||
.header {
|
|
||||||
padding-bottom: 0.15rem;
|
|
||||||
border-bottom: 1px solid #bdbdbd;
|
|
||||||
font-size: 30px;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
.main {
|
|
||||||
margin-top: 0.4rem;
|
|
||||||
.top {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
text-align: center;
|
|
||||||
padding-left: 3rem;
|
|
||||||
padding-right: 1.56rem;
|
|
||||||
position: relative;
|
|
||||||
.box {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
text-align: center;
|
|
||||||
.item {
|
|
||||||
font-size: 18px;
|
|
||||||
width: 2.08rem;
|
|
||||||
height: 30px;
|
|
||||||
padding: 0 10px;
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
-o-text-overflow: ellipsis;
|
|
||||||
word-break: break-all;
|
|
||||||
color: #707070;
|
|
||||||
// margin-left: 0.2rem;
|
|
||||||
}
|
|
||||||
.item:hover {
|
|
||||||
cursor: pointer;
|
|
||||||
border-radius: 10px;
|
|
||||||
background: #ddd;
|
|
||||||
}
|
|
||||||
.select-item {
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
:deep(.anticon) {
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
top: 0.06rem;
|
|
||||||
right: 1.35rem;
|
|
||||||
}
|
|
||||||
.listBox {
|
|
||||||
width: 12.5rem;
|
|
||||||
position: absolute;
|
|
||||||
top: 0.35rem;
|
|
||||||
left: 3.2rem;
|
|
||||||
z-index: 200;
|
|
||||||
background: #fff;
|
|
||||||
border: 1px solid #000;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
text-align: center;
|
|
||||||
.item {
|
|
||||||
font-size: 18px;
|
|
||||||
width: 2.08rem;
|
|
||||||
height: 30px;
|
|
||||||
padding: 0 10px;
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
-o-text-overflow: ellipsis;
|
|
||||||
word-break: break-all;
|
|
||||||
color: #707070;
|
|
||||||
// margin-left: 0.2rem;
|
|
||||||
}
|
|
||||||
.item:hover {
|
|
||||||
cursor: pointer;
|
|
||||||
border-radius: 10px;
|
|
||||||
background: #ddd;
|
|
||||||
}
|
|
||||||
.select-item {
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.bottom {
|
|
||||||
margin-top: 0.2rem;
|
|
||||||
padding: 0 1.1rem;
|
|
||||||
display: flex;
|
|
||||||
.left {
|
|
||||||
width: 1.5rem;
|
|
||||||
text-align: center;
|
|
||||||
border-right: 1px solid #ccc;
|
|
||||||
.list-item {
|
|
||||||
height: 0.3rem;
|
|
||||||
line-height: 0.3rem;
|
|
||||||
font-size: 20px;
|
|
||||||
margin-bottom: 0.35rem;
|
|
||||||
color: #707070;
|
|
||||||
border-right: 1px solid #fff;
|
|
||||||
}
|
|
||||||
.list-item:hover {
|
|
||||||
cursor: pointer;
|
|
||||||
color: #6771fa;
|
|
||||||
}
|
|
||||||
.list-item-select,
|
|
||||||
.list-item-select:hover {
|
|
||||||
border-right: 1px solid #2433ff;
|
|
||||||
color: #2433ff;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.right {
|
|
||||||
flex: 1;
|
|
||||||
height: 6rem;
|
|
||||||
margin-left: 40px;
|
|
||||||
position: relative;
|
|
||||||
// background: #ccc;
|
|
||||||
.name {
|
|
||||||
width: 100%;
|
|
||||||
height: 0.75rem;
|
|
||||||
line-height: 0.75rem;
|
|
||||||
padding-left: 0.2rem;
|
|
||||||
background: rgba(255, 255, 255, 0.58);
|
|
||||||
font-size: 30px;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #707070;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
:deep(.ant-image-img) {
|
|
||||||
cursor: pointer;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -1,121 +0,0 @@
|
||||||
<template>
|
|
||||||
<div class="box">
|
|
||||||
<div>
|
|
||||||
<h1>CIM+平台</h1>
|
|
||||||
<div>
|
|
||||||
<swiper
|
|
||||||
:slidesPerView="3"
|
|
||||||
:spaceBetween="30"
|
|
||||||
:pagination="{ clickable: true }"
|
|
||||||
:modules="modules"
|
|
||||||
class="mySwiper"
|
|
||||||
@swiper="onSwiper"
|
|
||||||
@slideChange="onSlideChange"
|
|
||||||
>
|
|
||||||
<swiper-slide v-for="item in platformList" :key="item.id">
|
|
||||||
<div class="platformBox">
|
|
||||||
<h2>{{ item.name }}</h2>
|
|
||||||
<a-image
|
|
||||||
:preview="false"
|
|
||||||
:src="item.pic"
|
|
||||||
:fallback="item.pic2"
|
|
||||||
@click.stop="toView(item)"
|
|
||||||
/>
|
|
||||||
<a-tooltip>
|
|
||||||
<template #title>{{ item.description }}</template>
|
|
||||||
<p>{{ item.description }}</p>
|
|
||||||
</a-tooltip>
|
|
||||||
</div>
|
|
||||||
</swiper-slide>
|
|
||||||
</swiper>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<script setup>
|
|
||||||
import { ref } from 'vue'
|
|
||||||
import { Pagination } from 'swiper'
|
|
||||||
import { Swiper, SwiperSlide } from 'swiper/vue/swiper-vue.js'
|
|
||||||
import 'swiper/swiper-bundle.min.css'
|
|
||||||
import { getCIMApplyApplicationList } from '@/api/cimSpecialArea'
|
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
const router = useRouter()
|
|
||||||
const modules = ref([Pagination])
|
|
||||||
const platformList = ref([])
|
|
||||||
getCIMApplyApplicationList().then((res) => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
res.data.data.map((val) => {
|
|
||||||
if (!val.pic) {
|
|
||||||
val.pic = require('@/assets/capacitySquare/yyzy.jpg')
|
|
||||||
}
|
|
||||||
val.pic2 = require('@/assets/capacitySquare/yyzy.jpg')
|
|
||||||
})
|
|
||||||
console.log(res.data.data, '====>平台')
|
|
||||||
platformList.value.push(...res.data.data)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
const toView = (data) => {
|
|
||||||
console.log('111111111111111111===========>', data)
|
|
||||||
const newpage = router.resolve({
|
|
||||||
path: '/details',
|
|
||||||
query: {
|
|
||||||
id: data.id,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
window.open(newpage.href, '_blank')
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.box {
|
|
||||||
width: 100%;
|
|
||||||
background: #f1f4fb;
|
|
||||||
padding: 0 1.05rem 0.2rem;
|
|
||||||
h1 {
|
|
||||||
font-size: 0.3rem;
|
|
||||||
color: #000000;
|
|
||||||
font-weight: bold;
|
|
||||||
padding: 0.35rem 0 0.15rem;
|
|
||||||
margin-bottom: 0.2rem;
|
|
||||||
border-bottom: 0.01rem solid #bcbdbd;
|
|
||||||
}
|
|
||||||
.platformBox {
|
|
||||||
width: 5.34rem;
|
|
||||||
height: 5.65rem;
|
|
||||||
padding: 0.28rem 0.35rem;
|
|
||||||
// border: 0.03rem solid #0077ff;
|
|
||||||
margin-right: 0.56rem;
|
|
||||||
background: url('~@/assets/cimSpecialArea/imgBG.png') no-repeat;
|
|
||||||
background-size: 100%;
|
|
||||||
h2 {
|
|
||||||
font-size: 0.2rem;
|
|
||||||
color: #000000;
|
|
||||||
margin-bottom: 0.28rem;
|
|
||||||
}
|
|
||||||
:deep(.ant-image) {
|
|
||||||
width: 4.5rem;
|
|
||||||
height: 2.8rem;
|
|
||||||
line-height: 2.8rem;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
:deep(.ant-image-img) {
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
font-size: 0.18rem;
|
|
||||||
margin: 0.2rem 0 0;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
display: -webkit-box;
|
|
||||||
-webkit-line-clamp: 5;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
overflow: hidden;
|
|
||||||
word-break: break-all;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
:deep(.swiper) {
|
|
||||||
height: 5.9rem;
|
|
||||||
}
|
|
||||||
:deep(.swiper-horizontal
|
|
||||||
> .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction) {
|
|
||||||
bottom: -0.05rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -1,30 +0,0 @@
|
||||||
<!--
|
|
||||||
* @Author: hisense.liangjunhua
|
|
||||||
* @Date: 2022-08-09 11:32:47
|
|
||||||
* @LastEditors: hisense.liangjunhua
|
|
||||||
* @LastEditTime: 2022-08-19 10:09:58
|
|
||||||
* @Description: 告诉大家这是什么
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div class="cimSpecialArea">
|
|
||||||
<home-header></home-header>
|
|
||||||
<cimHead></cimHead>
|
|
||||||
<platform></platform>
|
|
||||||
<layer></layer>
|
|
||||||
<algorithm></algorithm>
|
|
||||||
<home-footer></home-footer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<script setup>
|
|
||||||
import HomeHeader from '@/views/home/components/header'
|
|
||||||
import cimHead from './components/cimHead'
|
|
||||||
import platform from './components/platform'
|
|
||||||
import layer from './components/layer'
|
|
||||||
import algorithm from './components/algorithm'
|
|
||||||
import HomeFooter from '@/views/newHome/components/Footer'
|
|
||||||
</script>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.cimSpecialArea {
|
|
||||||
padding-top: 0.64rem;
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -41,14 +41,10 @@
|
||||||
<div class="content-left-content">
|
<div class="content-left-content">
|
||||||
<p>
|
<p>
|
||||||
<span>{{ item.linkPlatform.name }}</span>
|
<span>{{ item.linkPlatform.name }}</span>
|
||||||
<a-tooltip v-if="approveStatus == '通过'">
|
<a-tooltip>
|
||||||
<template #title>{{ item.linkPlatform.value }}</template>
|
<template #title>{{ item.linkPlatform.value }}</template>
|
||||||
<span>{{ item.linkPlatform.value }}</span>
|
<span>{{ item.linkPlatform.value }}</span>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<a-tooltip v-else>
|
|
||||||
<template #title>请申请后查看平台地址</template>
|
|
||||||
<span>****************</span>
|
|
||||||
</a-tooltip>
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -133,7 +129,6 @@
|
||||||
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'
|
import { message } from 'ant-design-vue'
|
||||||
const approveStatus = ref('')
|
|
||||||
let dataFrom = ref({
|
let dataFrom = ref({
|
||||||
title: '使用方式',
|
title: '使用方式',
|
||||||
englishTitle: 'USAGE',
|
englishTitle: 'USAGE',
|
||||||
|
@ -188,7 +183,6 @@
|
||||||
dataFrom.value.content[0].people.value = props.dataList.deptContacts
|
dataFrom.value.content[0].people.value = props.dataList.deptContacts
|
||||||
dataFrom.value.content[0].phone.value = props.dataList.deptPhone
|
dataFrom.value.content[0].phone.value = props.dataList.deptPhone
|
||||||
dataFrom.value.content[0].postMethod.value = props.dataList.apiMethodType
|
dataFrom.value.content[0].postMethod.value = props.dataList.apiMethodType
|
||||||
approveStatus.value = props.dataList.approveStatus
|
|
||||||
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 === '组件地址') {
|
||||||
|
@ -224,7 +218,6 @@
|
||||||
dataFrom.value.content[0].people.value = val.deptContacts
|
dataFrom.value.content[0].people.value = val.deptContacts
|
||||||
dataFrom.value.content[0].phone.value = val.deptPhone
|
dataFrom.value.content[0].phone.value = val.deptPhone
|
||||||
dataFrom.value.content[0].postMethod.value = val.apiMethodType
|
dataFrom.value.content[0].postMethod.value = val.apiMethodType
|
||||||
approveStatus.value = val.approveStatus
|
|
||||||
console.log('dataList', val)
|
console.log('dataList', val)
|
||||||
val.infoList.map((item) => {
|
val.infoList.map((item) => {
|
||||||
if (item.attrType === '组件地址') {
|
if (item.attrType === '组件地址') {
|
||||||
|
|
|
@ -310,13 +310,12 @@
|
||||||
: list.value[0].arr && list.value[0].arr[0].type == '单兵设备'
|
: list.value[0].arr && list.value[0].arr[0].type == '单兵设备'
|
||||||
? '单兵设备申请'
|
? '单兵设备申请'
|
||||||
: list.value[0].children
|
: list.value[0].children
|
||||||
? '申请' +
|
? list.value[0].children
|
||||||
list.value[0].children
|
|
||||||
.filter((val) => val.id == list.value[0].checkedList[0])[0]
|
.filter((val) => val.id == list.value[0].checkedList[0])[0]
|
||||||
.resourceName.concat(
|
.resourceName.concat(
|
||||||
num.value > 1 ? '等' + num.value + '项能力' : ''
|
num.value > 1 ? '等能力申请' + num.value + '个' : '能力申请'
|
||||||
)
|
)
|
||||||
: '申请' + list.value[0].arr[0].resourceName, // 标题
|
: list.value[0].arr[0].resourceName.concat('能力申请'), // 标题
|
||||||
applicationSystem: '', // 应用系统
|
applicationSystem: '', // 应用系统
|
||||||
// applicationSystem: [], // 应用系统
|
// applicationSystem: [], // 应用系统
|
||||||
applicationScene: [], // 应用领域
|
applicationScene: [], // 应用领域
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
class="home-header"
|
class="home-header"
|
||||||
:class="[
|
:class="[
|
||||||
select !== 'home' || scrollTop > 500 ? 'white' : '',
|
select !== 'home' || scrollTop > 500 ? 'white' : '',
|
||||||
props.showView === 'algorithm-details' ? '' : '',
|
props.showView === 'algorithm-details' ? 'blue' : '',
|
||||||
]"
|
]"
|
||||||
>
|
>
|
||||||
<div class="name" @click="goToHome">
|
<div class="name" @click="goToHome">
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M384 832v85.333333h-85.333333v-85.333333h85.333333z m405.333333 0v85.333333h-85.333333v-85.333333h85.333333zM240.32 185.002667l24.149333 140.928h633.173334L835.285333 746.666667h-563.626666l-85.333334-497.685334H94.485333v-64h145.834667z m583.104 204.928H275.434667L325.632 682.666667h454.464l43.328-292.736z"
|
d="M384 832v85.333333h-85.333333v-85.333333h85.333333z m405.333333 0v85.333333h-85.333333v-85.333333h85.333333zM240.32 185.002667l24.149333 140.928h633.173334L835.285333 746.666667h-563.626666l-85.333334-497.685334H94.485333v-64h145.834667z m583.104 204.928H275.434667L325.632 682.666667h454.464l43.328-292.736z"
|
||||||
:fill="props.showView === 'algorithm-details' ? '#1296db' : '#1296db'"
|
:fill="props.showView === 'algorithm-details' ? '#fff' : '#1296db'"
|
||||||
p-id="2070"
|
p-id="2070"
|
||||||
></path>
|
></path>
|
||||||
</svg>
|
</svg>
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M544 161.536a330.666667 330.666667 0 0 1 298.666667 329.130667h-0.341334c0.213333 1.493333 0.341333 2.986667 0.341334 4.565333v219.434667h39.68a32 32 0 0 1 0 64h-212.053334a160 160 0 0 1-316.586666 0H141.909333a32 32 0 1 1 0-64h39.424v-219.434667c0-1.578667 0.128-3.072 0.341334-4.565333H181.333333a330.666667 330.666667 0 0 1 298.666667-329.130667V128a32 32 0 1 1 64 0v33.536z m-298.666667 553.130667h533.333334v-219.434667c0-1.578667 0.128-3.072 0.341333-4.565333h-0.341333a266.666667 266.666667 0 1 0-533.333334 0h-0.341333c0.213333 1.493333 0.341333 2.986667 0.341333 4.565333v219.434667z m359.765334 64H418.901333a96 96 0 0 0 186.197334 0z"
|
d="M544 161.536a330.666667 330.666667 0 0 1 298.666667 329.130667h-0.341334c0.213333 1.493333 0.341333 2.986667 0.341334 4.565333v219.434667h39.68a32 32 0 0 1 0 64h-212.053334a160 160 0 0 1-316.586666 0H141.909333a32 32 0 1 1 0-64h39.424v-219.434667c0-1.578667 0.128-3.072 0.341334-4.565333H181.333333a330.666667 330.666667 0 0 1 298.666667-329.130667V128a32 32 0 1 1 64 0v33.536z m-298.666667 553.130667h533.333334v-219.434667c0-1.578667 0.128-3.072 0.341333-4.565333h-0.341333a266.666667 266.666667 0 1 0-533.333334 0h-0.341333c0.213333 1.493333 0.341333 2.986667 0.341333 4.565333v219.434667z m359.765334 64H418.901333a96 96 0 0 0 186.197334 0z"
|
||||||
:fill="props.showView === 'algorithm-details' ? '#1296db' : '#1296db'"
|
:fill="props.showView === 'algorithm-details' ? '#fff' : '#1296db'"
|
||||||
p-id="2188"
|
p-id="2188"
|
||||||
></path>
|
></path>
|
||||||
</svg>
|
</svg>
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
</span>
|
</span>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<span @click="logout" class="out">退出</span>
|
<span @click="logout" class="out">退出</span>
|
||||||
<!-- <svg
|
<svg
|
||||||
t="1655286092324"
|
t="1655286092324"
|
||||||
class="icon"
|
class="icon"
|
||||||
viewBox="0 0 1024 1024"
|
viewBox="0 0 1024 1024"
|
||||||
|
@ -114,11 +114,7 @@
|
||||||
p-id="2161"
|
p-id="2161"
|
||||||
fill="#bfbfbf"
|
fill="#bfbfbf"
|
||||||
></path>
|
></path>
|
||||||
</svg> -->
|
</svg>
|
||||||
<i
|
|
||||||
@click="jumpPage({ name: '后台管理', key: 'houtaiguanli' })"
|
|
||||||
class="iconTo"
|
|
||||||
></i>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -256,11 +252,6 @@
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
break
|
break
|
||||||
case 'CIM专区':
|
|
||||||
router.push({
|
|
||||||
path: '/cimSpecialArea',
|
|
||||||
})
|
|
||||||
break
|
|
||||||
default:
|
default:
|
||||||
router.push('/home')
|
router.push('/home')
|
||||||
break
|
break
|
||||||
|
@ -514,7 +505,7 @@
|
||||||
border-radius: 0.05rem;
|
border-radius: 0.05rem;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0.45rem;
|
top: 0.45rem;
|
||||||
right: 2.4rem;
|
right: 2.9rem;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
.bottom {
|
.bottom {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -556,13 +547,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.iconTo {
|
|
||||||
display: block;
|
|
||||||
width: 0.35rem;
|
|
||||||
height: 0.35rem;
|
|
||||||
background: url('~@/assets/newHome/iconTo.png') no-repeat;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
<style>
|
<style>
|
||||||
html::-webkit-scrollbar {
|
html::-webkit-scrollbar {
|
||||||
|
|
|
@ -78,17 +78,11 @@
|
||||||
v-model:value="roomCreateTime"
|
v-model:value="roomCreateTime"
|
||||||
placeholder="开始时间"
|
placeholder="开始时间"
|
||||||
value-format="HH:mm:ss"
|
value-format="HH:mm:ss"
|
||||||
:disabledHours="disabledStartHours"
|
|
||||||
:disabledMinutes="disabledStartMinutes"
|
|
||||||
:disabledSeconds="disabledStartSeconds"
|
|
||||||
/>
|
/>
|
||||||
<a-time-picker
|
<a-time-picker
|
||||||
v-model:value="roomEndTime"
|
v-model:value="roomEndTime"
|
||||||
placeholder="结束时间"
|
placeholder="结束时间"
|
||||||
value-format="HH:mm:ss"
|
value-format="HH:mm:ss"
|
||||||
:disabledHours="disabledEndHours"
|
|
||||||
:disabledMinutes="disabledEndMinutes"
|
|
||||||
:disabledSeconds="disabledEndSeconds"
|
|
||||||
/>
|
/>
|
||||||
</a-space>
|
</a-space>
|
||||||
</div>
|
</div>
|
||||||
|
@ -108,8 +102,8 @@
|
||||||
<div class="topContent">{{ item.name }}</div>
|
<div class="topContent">{{ item.name }}</div>
|
||||||
<div class="centerContent">
|
<div class="centerContent">
|
||||||
<span>房间号:{{ item.num }}</span>
|
<span>房间号:{{ item.num }}</span>
|
||||||
<span>可容纳人数:{{ item.capacity }}人</span>
|
<span>可容纳人数:{{ item.capacity }}</span>
|
||||||
<span>面积:{{ item.area }}m²</span>
|
<span>面积:{{ item.area }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottonmContent">
|
<div class="bottonmContent">
|
||||||
{{ item.description }}
|
{{ item.description }}
|
||||||
|
@ -297,9 +291,6 @@
|
||||||
v-model:value="formState.startTime"
|
v-model:value="formState.startTime"
|
||||||
placeholder="开始时间"
|
placeholder="开始时间"
|
||||||
value-format="HH:mm:ss"
|
value-format="HH:mm:ss"
|
||||||
:disabledHours="disabledTimeHours"
|
|
||||||
:disabledMinutes="disabledTimeMinutes"
|
|
||||||
:disabledSeconds="disabledTimeSeconds"
|
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
@ -308,9 +299,6 @@
|
||||||
v-model:value="formState.endTime"
|
v-model:value="formState.endTime"
|
||||||
placeholder="结束时间"
|
placeholder="结束时间"
|
||||||
value-format="HH:mm:ss"
|
value-format="HH:mm:ss"
|
||||||
:disabledHours="disabledTimeEndHours"
|
|
||||||
:disabledMinutes="disabledTimeEndMinutes"
|
|
||||||
:disabledSeconds="disabledTimeEndSeconds"
|
|
||||||
/>
|
/>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
@ -653,7 +641,6 @@
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
import { Form } from 'ant-design-vue'
|
import { Form } from 'ant-design-vue'
|
||||||
import moment from 'moment'
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
// 模糊查
|
// 模糊查
|
||||||
searchValue: { type: String, default: '' },
|
searchValue: { type: String, default: '' },
|
||||||
|
@ -752,7 +739,12 @@
|
||||||
message: '请输入预约人',
|
message: '请输入预约人',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
matter: [{ min: 1, max: 500, required: true, message: '可输入500字内容' }],
|
matter: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入内容',
|
||||||
|
},
|
||||||
|
],
|
||||||
phone: [
|
phone: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -957,168 +949,6 @@
|
||||||
searchData()
|
searchData()
|
||||||
chengguoSearch()
|
chengguoSearch()
|
||||||
}
|
}
|
||||||
// 时间选择器限制----可用时间查询
|
|
||||||
//获取不可选择的小时
|
|
||||||
const disabledStartHours = () => {
|
|
||||||
if (roomEndTime.value) {
|
|
||||||
let hours = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
for (let i = hour + 1; i < 24; i++) {
|
|
||||||
hours.push(i)
|
|
||||||
}
|
|
||||||
return hours
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的分钟
|
|
||||||
const disabledStartMinutes = (selectedHour) => {
|
|
||||||
if (roomEndTime) {
|
|
||||||
let minutes = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
if (selectedHour === hour) {
|
|
||||||
for (let i = minute + 1; i < 60; i++) {
|
|
||||||
minutes.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return minutes
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的秒
|
|
||||||
const disabledStartSeconds = (selectedHour, selectedMinute) => {
|
|
||||||
if (roomEndTime) {
|
|
||||||
let seconds = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
let second = moment().second()
|
|
||||||
if (selectedHour === hour && selectedMinute.value === minute) {
|
|
||||||
for (let i = second + 1; i < 60; i++) {
|
|
||||||
seconds.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return seconds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的小时
|
|
||||||
const disabledEndHours = () => {
|
|
||||||
if (roomCreateTime.value) {
|
|
||||||
let hours = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
for (let i = 0; i < hour; i++) {
|
|
||||||
hours.push(i)
|
|
||||||
}
|
|
||||||
return hours
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的分钟
|
|
||||||
const disabledEndMinutes = (selectedHour) => {
|
|
||||||
if (roomCreateTime) {
|
|
||||||
let minutes = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
if (selectedHour === hour) {
|
|
||||||
for (let i = 0; i < minute; i++) {
|
|
||||||
minutes.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return minutes
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的秒
|
|
||||||
const disabledEndSeconds = (selectedHour, selectedMinute) => {
|
|
||||||
if (roomCreateTime) {
|
|
||||||
let seconds = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
let second = moment().second()
|
|
||||||
if (selectedHour === hour && selectedMinute.value === minute) {
|
|
||||||
for (let i = 0; i < second; i++) {
|
|
||||||
seconds.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return seconds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// 时间选择器限制----会议室预约时段
|
|
||||||
//获取不可选择的小时
|
|
||||||
const disabledTimeHours = () => {
|
|
||||||
if (formState.endTime) {
|
|
||||||
let hours = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
for (let i = hour + 1; i < 24; i++) {
|
|
||||||
hours.push(i)
|
|
||||||
}
|
|
||||||
return hours
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的分钟
|
|
||||||
const disabledTimeMinutes = (selectedHour) => {
|
|
||||||
if (formState.endTime) {
|
|
||||||
let minutes = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
if (selectedHour === hour) {
|
|
||||||
for (let i = minute + 1; i < 60; i++) {
|
|
||||||
minutes.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return minutes
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的秒
|
|
||||||
const disabledTimeSeconds = (selectedHour, selectedMinute) => {
|
|
||||||
if (formState.endTime) {
|
|
||||||
let seconds = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
let second = moment().second()
|
|
||||||
if (selectedHour === hour && selectedMinute.value === minute) {
|
|
||||||
for (let i = second + 1; i < 60; i++) {
|
|
||||||
seconds.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return seconds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的小时
|
|
||||||
const disabledTimeEndHours = () => {
|
|
||||||
if (formState.startTime) {
|
|
||||||
let hours = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
for (let i = 0; i < hour; i++) {
|
|
||||||
hours.push(i)
|
|
||||||
}
|
|
||||||
return hours
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的分钟
|
|
||||||
const disabledTimeEndMinutes = (selectedHour) => {
|
|
||||||
if (formState.startTime) {
|
|
||||||
let minutes = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
if (selectedHour === hour) {
|
|
||||||
for (let i = 0; i < minute; i++) {
|
|
||||||
minutes.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return minutes
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//获取不可选择的秒
|
|
||||||
const disabledTimeEndSeconds = (selectedHour, selectedMinute) => {
|
|
||||||
if (formState.startTime) {
|
|
||||||
let seconds = []
|
|
||||||
let hour = moment().hour()
|
|
||||||
let minute = moment().minute()
|
|
||||||
let second = moment().second()
|
|
||||||
if (selectedHour === hour && selectedMinute.value === minute) {
|
|
||||||
for (let i = 0; i < second; i++) {
|
|
||||||
seconds.push(i)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return seconds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//分页
|
//分页
|
||||||
const onRoomChange = (pageNumber) => {
|
const onRoomChange = (pageNumber) => {
|
||||||
roomPage.value = pageNumber
|
roomPage.value = pageNumber
|
||||||
|
|
|
@ -171,7 +171,7 @@
|
||||||
width="12.1rem"
|
width="12.1rem"
|
||||||
@ok="del()"
|
@ok="del()"
|
||||||
@cancel="reason = ''"
|
@cancel="reason = ''"
|
||||||
footer=""
|
footer="{}"
|
||||||
>
|
>
|
||||||
<TheShelvesAbility v-if="visible" :delObj="delObj"></TheShelvesAbility>
|
<TheShelvesAbility v-if="visible" :delObj="delObj"></TheShelvesAbility>
|
||||||
<!-- <a-input v-model:value="reason" placeholder="请输入下架原因" /> -->
|
<!-- <a-input v-model:value="reason" placeholder="请输入下架原因" /> -->
|
||||||
|
@ -457,11 +457,7 @@
|
||||||
const del = () => {
|
const del = () => {
|
||||||
console.log('下架================》', delObj.value)
|
console.log('下架================》', delObj.value)
|
||||||
undercarriage({
|
undercarriage({
|
||||||
reason: delObj2.value.reason,
|
reason: reason.value,
|
||||||
title: delObj2.value.title,
|
|
||||||
phone: delObj2.value.phone,
|
|
||||||
enclosure: delObj2.value.fileList[0].response.data,
|
|
||||||
enclosureName: delObj2.value.fileList[0].name,
|
|
||||||
resource: [
|
resource: [
|
||||||
{ resourceId: delObj.value.id, resourceName: delObj.value.name },
|
{ resourceId: delObj.value.id, resourceName: delObj.value.name },
|
||||||
],
|
],
|
||||||
|
@ -483,8 +479,8 @@
|
||||||
})
|
})
|
||||||
//提交申请按钮
|
//提交申请按钮
|
||||||
mybus.on('Determine', (val) => {
|
mybus.on('Determine', (val) => {
|
||||||
console.log('下架==============》', val)
|
delObj.value.name = val.title
|
||||||
delObj2.value = val
|
reason.value = val.reason
|
||||||
del()
|
del()
|
||||||
})
|
})
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
|
@ -494,7 +490,6 @@
|
||||||
const reason = ref('')
|
const reason = ref('')
|
||||||
const visible = ref(false)
|
const visible = ref(false)
|
||||||
const delObj = ref({})
|
const delObj = ref({})
|
||||||
const delObj2 = ref({})
|
|
||||||
const showModal = (item) => {
|
const showModal = (item) => {
|
||||||
if (item.delFlag == 0) {
|
if (item.delFlag == 0) {
|
||||||
delObj.value = item
|
delObj.value = item
|
||||||
|
|
|
@ -263,7 +263,7 @@
|
||||||
getUserInfo().then((res) => {
|
getUserInfo().then((res) => {
|
||||||
formName.value.title = props.delObj.name
|
formName.value.title = props.delObj.name
|
||||||
formName.value.user = res.data.data.realName
|
formName.value.user = res.data.data.realName
|
||||||
formName.value.phone = props.delObj.mobile
|
formName.value.phone = props.delObj.deptPhone
|
||||||
// formName.value.fileList = props.delObj.undercarriageEnclosure
|
// formName.value.fileList = props.delObj.undercarriageEnclosure
|
||||||
deptIdQuery(res.data.data.deptId).then((resValue) => {
|
deptIdQuery(res.data.data.deptId).then((resValue) => {
|
||||||
formName.value.unit = resValue.data.data.name
|
formName.value.unit = resValue.data.data.name
|
||||||
|
@ -326,7 +326,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
.TheShelvesAbility {
|
.TheShelvesAbility {
|
||||||
.title-h1 {
|
.title-h1 {
|
||||||
font-size: 0.22rem;
|
font-size: 0.22rem;
|
||||||
line-height: 0.22rem;
|
line-height: 0.22rem;
|
||||||
|
@ -471,5 +471,5 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|