|
@@ -415,7 +415,51 @@ export default class extends Vue {
|
|
|
saveLocation() {
|
|
|
// @ts-ignore
|
|
|
const data = this.$refs.deviceGraph.getLocation()
|
|
|
- console.log(data);
|
|
|
+ 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() {
|