282 lines
9.7 KiB
Vue
282 lines
9.7 KiB
Vue
<template>
|
|
<view class="device">
|
|
<view class="nav">
|
|
<view class="nav-menu" :class="{ 'nav-menu-active': select.engineeringName }" @click="openDrawer"
|
|
>{{ select.engineeringName || '工程' }}
|
|
</view>
|
|
<picker @change="projectNameChange" :value="select.projectNameIndex" :range="projectList" range-key="text" v-if="engineeringList.length">
|
|
<view class="nav-menu" :class="{ 'nav-menu-active': select.projectName }"
|
|
>{{ select.projectName || '项目' }}
|
|
</view>
|
|
</picker>
|
|
<!-- <picker @change="projectTypeChange" :value="select.projectTypeIndex" :range="projectType" range-key="text">
|
|
<view class="nav-menu" :class="{ 'nav-menu-active': select.projectType }"
|
|
>{{ select.projectType || '类型' }}
|
|
</view>
|
|
</picker> -->
|
|
</view>
|
|
<view class="content device" :style="{ minHeight: minHeight }">
|
|
<uni-card
|
|
:title="item.equipmentName"
|
|
:sub-title="item.projectName"
|
|
:extra="item.projectType"
|
|
padding="0"
|
|
v-for="(item, index) in deviceListFilter"
|
|
:key="index"
|
|
@click="jump(item)"
|
|
thumbnail="/static/device.png"
|
|
>
|
|
<!-- <text>{{ item.project }} {{ item.type }}</text> -->
|
|
</uni-card>
|
|
<Cn-empty v-if="store.empty || deviceListFilter.length == 0"></Cn-empty>
|
|
<uni-load-more
|
|
v-if="deviceListFilter && deviceListFilter.length > 0"
|
|
:status="store.status"
|
|
></uni-load-more>
|
|
</view>
|
|
<uni-drawer ref="showRight" mode="right" :mask-click="false" :width="375">
|
|
<uni-indexed-list
|
|
:options="engineeringListFilter"
|
|
:showSelect="false"
|
|
@click="closeDrawer"
|
|
></uni-indexed-list>
|
|
</uni-drawer>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import { getProjectList } from '@/common/api/project'
|
|
import { queryDictData } from '@/common/api/dictionary'
|
|
import { queryEngineering } from '@/common/api/engineering.js'
|
|
import { pinyin } from 'pinyin-pro'
|
|
|
|
export default {
|
|
props: {
|
|
store: {
|
|
type: Object,
|
|
default: {},
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
loading: false,
|
|
select: {
|
|
projectName: '',
|
|
projectNameIndex: 0,
|
|
projectType: '',
|
|
projectTypeIndex: 0,
|
|
engineeringName: '',
|
|
engineeringId: '',
|
|
},
|
|
navHeight: 0,
|
|
minHeight: '',
|
|
engineeringList: [],
|
|
projectList: [],
|
|
projectType: [],
|
|
}
|
|
},
|
|
computed: {
|
|
engineeringListFilter() {
|
|
let result = []
|
|
this.engineeringList.forEach((item) => {
|
|
let arr = pinyin(item.name[0], { toneType: 'none', type: 'array' })
|
|
let letter = arr[0][0].toUpperCase()
|
|
console.log(letter)
|
|
let index = result.findIndex((item) => item.letter === letter)
|
|
if (index === -1) {
|
|
result.push({
|
|
letter,
|
|
data: [item.name],
|
|
})
|
|
} else {
|
|
result[index].data.push(item.name)
|
|
}
|
|
})
|
|
return result
|
|
},
|
|
deviceListFilter() {
|
|
return this.store.data.filter((item) => {
|
|
if (this.select.projectName && this.select.projectType) {
|
|
return item.project === this.select.projectName && item.type === this.select.projectType
|
|
} else if (this.select.projectName) {
|
|
return item.projectId === this.projectList[this.select.projectNameIndex].id
|
|
} else if (this.select.projectType) {
|
|
return item.projectType === this.projectType[this.select.projectTypeIndex].id
|
|
} else {
|
|
return true
|
|
}
|
|
})
|
|
},
|
|
},
|
|
created() {
|
|
this.init()
|
|
},
|
|
mounted() {
|
|
setTimeout(() => {
|
|
// 获取nav高度
|
|
uni.createSelectorQuery()
|
|
.select('.nav')
|
|
.boundingClientRect((rect) => {
|
|
this.navHeight = rect.height
|
|
// #ifdef H5
|
|
this.minHeight = 'calc(100vh - env(safe-area-inset-bottom) - ' + (50 + this.navHeight) + 'px)'
|
|
// #endif
|
|
// #ifdef APP-PLUS
|
|
this.minHeight = 'calc(100vh - ' + this.navHeight + 'px)'
|
|
// #endif
|
|
})
|
|
.exec()
|
|
}, 1000)
|
|
},
|
|
methods: {
|
|
async init(){
|
|
let engineering = uni.getStorageSync('engineering')
|
|
let res = await queryEngineering()
|
|
this.engineeringList = res.data
|
|
if (this.engineeringList.length === 0) {
|
|
return
|
|
}
|
|
if (!engineering) {
|
|
uni.setStorageSync('engineering', res.data[0])
|
|
this.select.engineeringName = res.data[0].name
|
|
this.select.engineeringId = res.data[0].id
|
|
} else {
|
|
this.select.engineeringName = engineering.name
|
|
this.select.engineeringId = engineering.id
|
|
}
|
|
this.getProjectList()
|
|
this.getDeviceList()
|
|
},
|
|
getDeviceList() {
|
|
this.store.params.pageSize = 999
|
|
this.store.params.engineerId = this.select.engineeringId
|
|
this.store.reload()
|
|
|
|
},
|
|
getProjectList() {
|
|
getProjectList({
|
|
pageNum: 1,
|
|
pageSize: 9999,
|
|
engineeringId: this.select.engineeringId,
|
|
}).then((res) => {
|
|
console.log(res)
|
|
let arr = [
|
|
{
|
|
text: '全部项目',
|
|
value: '-1',
|
|
},
|
|
...res.data.records.map((item) => {
|
|
return {
|
|
text: item.name,
|
|
value: item.id,
|
|
...item,
|
|
}
|
|
}),
|
|
]
|
|
this.projectList = arr
|
|
})
|
|
},
|
|
queryDictData() {
|
|
queryDictData('项目类型').then((res) => {
|
|
this.projectType = [
|
|
{
|
|
text: '全部类型',
|
|
value: '',
|
|
},
|
|
...res.data.map((item) => {
|
|
return {
|
|
text: item.anotherName,
|
|
value: item.id,
|
|
}
|
|
}),
|
|
]
|
|
})
|
|
},
|
|
closeDrawer(e) {
|
|
console.log(e)
|
|
this.engineeringList.forEach((item) => {
|
|
if (item.name === e.item.name) {
|
|
uni.setStorageSync('engineering', item)
|
|
this.select.engineeringName = item.name
|
|
this.select.engineeringId = item.id
|
|
}
|
|
})
|
|
this.getDeviceList()
|
|
this.getProjectList()
|
|
this.select.projectName = ''
|
|
this.select.projectNameIndex = 0
|
|
this.$refs.showRight.close()
|
|
},
|
|
openDrawer(item) {
|
|
if (this.engineeringList.length === 0) {
|
|
uni.showToast({
|
|
title: '暂无工程',
|
|
icon: 'none',
|
|
})
|
|
return
|
|
} else if (this.engineeringList.length === 1) {
|
|
uni.showToast({
|
|
title: '暂无其他工程',
|
|
icon: 'none',
|
|
})
|
|
return
|
|
}
|
|
this.$refs.showRight.open()
|
|
},
|
|
submitFeedBack() {
|
|
uni.navigateTo({ url: '/pages/home/feedback' })
|
|
},
|
|
projectTypeChange(e) {
|
|
this.select.projectTypeIndex = e.detail.value
|
|
if (e.detail.value === 0) {
|
|
this.select.projectType = ''
|
|
return
|
|
}
|
|
this.select.projectType = this.projectType[e.detail.value].text
|
|
},
|
|
projectNameChange(e) {
|
|
console.log(e)
|
|
this.select.projectNameIndex = e.detail.value
|
|
if (e.detail.value === 0) {
|
|
this.select.projectName = ''
|
|
return
|
|
}
|
|
this.select.projectName = this.projectList[e.detail.value].text
|
|
},
|
|
registerDevice() {
|
|
uni.showModal({
|
|
title: '提示',
|
|
content: '请选择设备类型',
|
|
confirmText: '直连装置',
|
|
cancelText: '网关接入',
|
|
cancelColor: '#007aff',
|
|
success: ({ confirm, cancel }) => {
|
|
if (confirm) {
|
|
uni.navigateTo({
|
|
url: '/pages/device/new',
|
|
})
|
|
} else if (cancel) {
|
|
uni.navigateTo({
|
|
url: '/pages/gateway/list',
|
|
})
|
|
}
|
|
},
|
|
})
|
|
},
|
|
registerGateway() {
|
|
uni.navigateTo({
|
|
url: '/pages/gateway/new',
|
|
})
|
|
},
|
|
navMenuClick(index) {
|
|
this.navMenuActive = index
|
|
},
|
|
jump(item) {
|
|
uni.navigateTo({
|
|
url: '/pages/device/APF/detail',
|
|
})
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss"></style>
|