|
@@ -2,7 +2,22 @@
|
|
|
<div class="adm-device">
|
|
|
<statistics :statistics-msg="statisticsMsg"/>
|
|
|
<div class="operation">
|
|
|
- <admSelect @selectValue="selectValue" :list="list"/>
|
|
|
+ <el-select
|
|
|
+ v-model="deviceType"
|
|
|
+ placeholder="请选择"
|
|
|
+ @change="handleFilter"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ class="adm-select"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in list"
|
|
|
+ :key="item.code"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.code"
|
|
|
+
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
<admSearch @SearchValue="SearchValue"/>
|
|
|
<el-button type="default" @click="addDevice" class="adm-btn">添加设备</el-button>
|
|
|
</div>
|
|
@@ -12,12 +27,12 @@
|
|
|
<el-tab-pane v-for="(item,index) in paneMsg" :key="index" :label="item" :name="index.toString()"/>
|
|
|
</el-tabs>
|
|
|
<div class="table">
|
|
|
- <template v-if="true">
|
|
|
- <admMultiTable :currentHeader="currentHeader" :tableData="tableData"/>
|
|
|
+ <template v-if="deviceType">
|
|
|
+ <admMultiTable :currentHeader="currentHeader" :tableData="tableData" :headersStage="headersStage"/>
|
|
|
<Pagination :paginationList="paginationList" @currentPage="currentPage"/>
|
|
|
</template>
|
|
|
<div v-else class="void align">
|
|
|
- <svg-icon name="void" :width="120" :height="123"/>
|
|
|
+ <svg-icon name="void" :width="String(120)" :height="String(123)"/>
|
|
|
<p class="void-title">暂无内容</p>
|
|
|
<p class="void-tips">可点击左上角选择设备类型</p>
|
|
|
</div>
|
|
@@ -64,11 +79,15 @@
|
|
|
</template>
|
|
|
<script lang="ts">
|
|
|
import { Vue, Component } from "vue-property-decorator";
|
|
|
-import { Statistics, AdmSelect, AdmSearch, AdmMultiTable, Pagination, dataForm } from '../components/index'
|
|
|
-
|
|
|
+import { Statistics, AdmSearch, AdmMultiTable, Pagination, dataForm } from '../components/index'
|
|
|
+import { dictType, dictInfo } from "@/api/equipComponent";
|
|
|
+import { queryEquip } from "@/api/datacenter";
|
|
|
+import { UserModule } from "@/store/modules/user";
|
|
|
+import it from "element-ui/src/locale/lang/it";
|
|
|
+import th from "element-ui/src/locale/lang/th";
|
|
|
@Component({
|
|
|
name: 'adm-device',
|
|
|
- components: { Statistics, AdmSelect, AdmSearch, AdmMultiTable, Pagination, dataForm }
|
|
|
+ components: { Statistics, AdmSearch, AdmMultiTable, Pagination, dataForm }
|
|
|
})
|
|
|
export default class extends Vue {
|
|
|
private statisticsMsg = {
|
|
@@ -77,104 +96,139 @@ export default class extends Vue {
|
|
|
|
|
|
}
|
|
|
// 设备类值
|
|
|
+ deviceType = ''
|
|
|
deviceVal = ''
|
|
|
// 维护位置
|
|
|
displayLocation = false
|
|
|
+ // 表头信息集合
|
|
|
+ headerInformation = {}
|
|
|
+ // 表头阶段信息结合
|
|
|
+ headersStage = {}
|
|
|
+ all = []
|
|
|
+ // 设备信息
|
|
|
+ private deviceInformation = []
|
|
|
// 下拉数据
|
|
|
- list = [
|
|
|
- {
|
|
|
- value: '选项1',
|
|
|
- label: '黄金糕'
|
|
|
- }, {
|
|
|
- value: '选项2',
|
|
|
- label: '双皮奶'
|
|
|
- }, {
|
|
|
- value: '选项3',
|
|
|
- label: '蚵仔煎'
|
|
|
- }, {
|
|
|
- value: '选项4',
|
|
|
- label: '龙须面'
|
|
|
- }, {
|
|
|
- value: '选项5',
|
|
|
- label: '北京烤鸭'
|
|
|
- }]
|
|
|
+ list = []
|
|
|
private dialogVisible = false
|
|
|
private paneMsg = ['设计阶段维护', '施工阶段维护', '运维阶段维护']
|
|
|
private activeName = ""
|
|
|
private paginationList = {
|
|
|
- size: 1,
|
|
|
- sizes: [10, 20.50, 100],
|
|
|
+ page:1,
|
|
|
+ size: 10,
|
|
|
+ sizes: [10, 20, 50, 100],
|
|
|
total: 200
|
|
|
}
|
|
|
// 下一步
|
|
|
private next = true
|
|
|
private deviceMsg = '添加设备'
|
|
|
private currentHeader = this.paneMsg[0]
|
|
|
- private tableData = [{
|
|
|
- date: '2016-05-03',
|
|
|
- name: '王小虎',
|
|
|
- province: '上海',
|
|
|
- city: '普陀区',
|
|
|
- address: '上海市普陀区金沙江路 1518 弄',
|
|
|
- zip: 200333
|
|
|
- }, {
|
|
|
- date: '2016-05-02',
|
|
|
- name: '王小虎',
|
|
|
- province: '上海',
|
|
|
- city: '普陀区',
|
|
|
- address: '上海市普陀区金沙江路 1518 弄',
|
|
|
- zip: 200333
|
|
|
- }, {
|
|
|
- date: '2016-05-04',
|
|
|
- name: '王小虎',
|
|
|
- province: '上海',
|
|
|
- city: '普陀区',
|
|
|
- address: '上海市普陀区金沙江路 1518 弄',
|
|
|
- zip: 200333
|
|
|
- }, {
|
|
|
- date: '2016-05-01',
|
|
|
- name: '王小虎',
|
|
|
- province: '上海',
|
|
|
- city: '普陀区',
|
|
|
- address: '上海市普陀区金沙江路 1518 弄',
|
|
|
- zip: 200333
|
|
|
- }, {
|
|
|
- date: '2016-05-08',
|
|
|
- name: '王小虎',
|
|
|
- province: '上海',
|
|
|
- city: '普陀区',
|
|
|
- address: '上海市普陀区金沙江路 1518 弄',
|
|
|
- zip: 200333
|
|
|
- }, {
|
|
|
- date: '2016-05-06',
|
|
|
- name: '王小虎',
|
|
|
- province: '上海',
|
|
|
- city: '普陀区',
|
|
|
- address: '上海市普陀区金沙江路 1518 弄',
|
|
|
- zip: 200333
|
|
|
- }, {
|
|
|
- date: '2016-05-07',
|
|
|
- name: '王小虎',
|
|
|
- province: '上海',
|
|
|
- city: '普陀区',
|
|
|
- address: '上海市普陀区金沙江路 1518 弄',
|
|
|
- zip: 200333
|
|
|
- }]
|
|
|
+ private tableData = [
|
|
|
+ {
|
|
|
+ date: '2016-05-03',
|
|
|
+ name: '王小虎',
|
|
|
+ province: '上海',
|
|
|
+ city: '普陀区',
|
|
|
+ address: '上海市普陀区金沙江路 1518 弄',
|
|
|
+ zip: 200333
|
|
|
+ }]
|
|
|
+
|
|
|
+ private get projectId(): string {
|
|
|
+ return UserModule.projectId
|
|
|
+ }
|
|
|
+
|
|
|
+ created() {
|
|
|
+ this.deviceList()
|
|
|
+ }
|
|
|
+
|
|
|
+// 设备类数据
|
|
|
+ deviceList() {
|
|
|
+ let param2 = {
|
|
|
+ distinct: true,
|
|
|
+ pageNumber: 1,
|
|
|
+ pageSize: 1000,
|
|
|
+ // projection: ["classCode"],
|
|
|
+ projectId: this.projectId
|
|
|
+ }
|
|
|
+ let promise = new Promise(resolve => {
|
|
|
+ dictType({}).then(res => {
|
|
|
+ resolve(res)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ let promise2 = new Promise(resolve => {
|
|
|
+ queryEquip(param2).then(res => {
|
|
|
+ resolve(res)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ Promise.all([promise, promise2]).then((res) => {
|
|
|
+ let allData = res[0].content;
|
|
|
+ this.deviceInformation = res[1].content
|
|
|
+ allData.filter(item => (this.deviceInformation.indexOf(item.code) > -1))
|
|
|
+ this.list = allData
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ private handleFilter(val) {
|
|
|
+ if (val) {
|
|
|
+ let param = {
|
|
|
+ category: val
|
|
|
+ }
|
|
|
+ let param2 = {
|
|
|
+ filters: val ? `classCode='${ val }'` : undefined,
|
|
|
+ pageNumber: this.paginationList.size,
|
|
|
+ pageSize: 10,
|
|
|
+ orders: "createTime desc, id asc",
|
|
|
+ }
|
|
|
+ let promise = new Promise(resolve => {
|
|
|
+ dictInfo(param).then(res => {
|
|
|
+ resolve(res)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ let promise2 = new Promise(resolve => {
|
|
|
+ queryEquip(param2).then(res => {
|
|
|
+ resolve(res)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ Promise.all([promise, promise2]).then(res => {
|
|
|
+ // 类型下信息点,默认设计阶段
|
|
|
+ this.headerInformation = res[0] // 获取表头
|
|
|
+ this.headerStage()
|
|
|
|
|
|
+ this.tableData = res[1].content.map(item => {
|
|
|
+
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ } else {
|
|
|
+ this.headerInformation = {}
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ headerStage() {
|
|
|
+ let header = []
|
|
|
+ if (Object.keys(this.headerInformation).length > 1) {
|
|
|
+ this.headerInformation.dictStages.forEach(item => {
|
|
|
+ if (this.currentHeader == item.name) {
|
|
|
+ item.infos && item.infos.forEach(val => header.push(val))
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ this.headersStage = {
|
|
|
+ basicInfos: this.headerInformation.basicInfos,
|
|
|
+ dictStages: header
|
|
|
+ }
|
|
|
+ this.all = [...this.headersStage.basicInfos, ...this.headersStage.dictStages]
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
// 维护阶段 tabs
|
|
|
handleClick(val: any) {
|
|
|
console.log(val)
|
|
|
this.currentHeader = val.label
|
|
|
- switch (val.index) {
|
|
|
- case 0:
|
|
|
- break;
|
|
|
- case 1:
|
|
|
- break;
|
|
|
- case 2:
|
|
|
- break;
|
|
|
- default:
|
|
|
- }
|
|
|
+ this.headerStage()
|
|
|
}
|
|
|
|
|
|
//设备类筛选
|