|
@@ -54,11 +54,11 @@
|
|
|
<el-button type="primary" class="fr" @click="handleNext">下一步</el-button>
|
|
|
</template>
|
|
|
<template v-else-if="displayLocation && deviceVal">
|
|
|
- <div class="dialog-button">
|
|
|
- <el-button type="primary">保存</el-button>
|
|
|
- <el-button type="default">取消</el-button>
|
|
|
- <el-button type="default">重置</el-button>
|
|
|
- </div>
|
|
|
+ <deviceGraph ref="deviceGraph" :equip="curEquip" @goBack="goBack"/>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="saveLocation">确定</el-button>
|
|
|
+ <el-button type="default" @click="resetLocation">重置</el-button>
|
|
|
+ </span>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<div>
|
|
@@ -71,12 +71,12 @@
|
|
|
</template>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- <template v-if="maintain == '维护'">
|
|
|
- <div class="dialog-button">
|
|
|
- <el-button type="primary">保存</el-button>
|
|
|
- <el-button type="default">取消</el-button>
|
|
|
- <el-button type="default">重置</el-button>
|
|
|
- </div>
|
|
|
+ <template v-if="displayLocation && deviceVal">
|
|
|
+ <deviceGraph ref="deviceGraph" :equip="curEquip" @goBack="goBack"/>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="saveLocation">确定</el-button>
|
|
|
+ <el-button type="default" @click="resetLocation">重置</el-button>
|
|
|
+ </span>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
|
|
@@ -98,14 +98,15 @@
|
|
|
import { Component, Vue, Watch } from "vue-property-decorator";
|
|
|
import { AdmMultiTable, AdmSearch, dataForm, Pagination, Statistics } from '../components/index'
|
|
|
import { allDevice, BeatchQueryParam, dictInfo } from "@/api/equipComponent";
|
|
|
-import { queryCount, queryEquip } from "@/api/datacenter";
|
|
|
+import { queryCount, queryEquip, createEquip, updateEquip } from "@/api/datacenter";
|
|
|
import { UserModule } from "@/store/modules/user";
|
|
|
+import deviceGraph from "./components/deviceGraph"
|
|
|
import tools from "@/utils/maintain"
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
name: 'adm-device',
|
|
|
- components: { Statistics, AdmSearch, AdmMultiTable, Pagination, dataForm }
|
|
|
+ components: { Statistics, AdmSearch, AdmMultiTable, Pagination, dataForm, deviceGraph }
|
|
|
})
|
|
|
export default class extends Vue {
|
|
|
|
|
@@ -168,6 +169,8 @@ export default class extends Vue {
|
|
|
status = '添加'
|
|
|
// 维护位置开关
|
|
|
maintain = ''
|
|
|
+ // 传到维护位置的设备信息
|
|
|
+ curEquip = {}
|
|
|
|
|
|
// 项目id
|
|
|
get projectId(): string {
|
|
@@ -370,17 +373,27 @@ export default class extends Vue {
|
|
|
addDevice() {
|
|
|
this.status = '添加'
|
|
|
this.dialogVisible = true
|
|
|
+ this.currRowContent = {}
|
|
|
}
|
|
|
|
|
|
|
|
|
// 维护位置
|
|
|
handlePosition() {
|
|
|
+ this.curEquip = tools.formatData(this.$refs.dataForm.form)
|
|
|
this.displayLocation = true
|
|
|
}
|
|
|
|
|
|
// 添加 事件处理
|
|
|
handleDataForm() {
|
|
|
- console.log(this.$refs.dataForm.form)
|
|
|
+ const eq = tools.formatData(this.$refs.dataForm.form);
|
|
|
+ if (eq.id) {
|
|
|
+ //更新
|
|
|
+ this.handleUpdateEquip(eq);
|
|
|
+ } else {
|
|
|
+ eq.classCode = this.deviceVal[1]
|
|
|
+ // 创建
|
|
|
+ this.handleCreateEquip(eq);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// 编辑当前行
|
|
@@ -402,6 +415,71 @@ export default class extends Vue {
|
|
|
this.displayLocation = false
|
|
|
}
|
|
|
|
|
|
+ // 取消
|
|
|
+ cancelLocation() {
|
|
|
+ // @ts-ignore
|
|
|
+ this.$refs.deviceGraph.cancelLocation()
|
|
|
+ }
|
|
|
+ // 保存
|
|
|
+ saveLocation() {
|
|
|
+ // @ts-ignore
|
|
|
+ const data = this.$refs.deviceGraph.getLocation()
|
|
|
+ if (data) {
|
|
|
+ this.curEquip.bimLocation = `${data.x},${data.y},${data.z}`;
|
|
|
+ this.curEquip.buildingId = data.buildingId;
|
|
|
+ this.curEquip.floorId = data.floorId;
|
|
|
+ }
|
|
|
+ if (this.curEquip.id) {
|
|
|
+ //更新
|
|
|
+ this.handleUpdateEquip(this.curEquip);
|
|
|
+ } else {
|
|
|
+ this.curEquip.classCode = this.deviceVal[1]
|
|
|
+ // 创建
|
|
|
+ this.handleCreateEquip(this.curEquip);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 更新设备
|
|
|
+ handleUpdateEquip(obj) {
|
|
|
+ let pa;
|
|
|
+ if (Array.isArray(obj)) {
|
|
|
+ pa = { content: obj }
|
|
|
+ } else {
|
|
|
+ pa = { content: [obj] }
|
|
|
+ }
|
|
|
+ updateEquip(pa).then(res => {
|
|
|
+ if (res.result == 'success') {
|
|
|
+ this.$message.success('更新成功');
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.handleChangeDevice()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // 创建设备
|
|
|
+ handleCreateEquip(obj: any) {
|
|
|
+ let pa;
|
|
|
+ if (Array.isArray(obj)) {
|
|
|
+ pa = { content: obj }
|
|
|
+ } else {
|
|
|
+ pa = { content: [obj] }
|
|
|
+ }
|
|
|
+ createEquip(pa).then(res => {
|
|
|
+ if (res.result == 'success') {
|
|
|
+ this.$message.success('创建成功');
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.handleChangeDevice()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // 重置
|
|
|
+ resetLocation() {
|
|
|
+ // @ts-ignore
|
|
|
+ this.$refs.deviceGraph.resetLocation()
|
|
|
+ }
|
|
|
+ // 返回
|
|
|
+ goBack() {
|
|
|
+ this.displayLocation = false
|
|
|
+ }
|
|
|
+
|
|
|
@Watch("deviceType", { immediate: true, deep: true })
|
|
|
handleDeviceMsg() {
|
|
|
this.deviceVal = this.deviceType
|