|
@@ -691,7 +691,7 @@ wepy.component({
|
|
|
item.icon = utils.getMapSpaceIcon(item.roomFuncType).icon;
|
|
|
item.typeName = utils.getMapSpaceIcon(item.roomFuncType).typeName;
|
|
|
item.selectIcon = item.icon;
|
|
|
- if (item.typeName == '开发办公区') {
|
|
|
+ if (item.typeName == '开放办公区') {
|
|
|
item.circleColor = '#6B96D9';
|
|
|
} else if (item.typeName == '个人办公区') {
|
|
|
item.circleColor = '#AC8BE8';
|
|
@@ -778,11 +778,19 @@ wepy.component({
|
|
|
if (!sign) {
|
|
|
// 如果是父亲传进来的areaId 不执行下面的触发
|
|
|
console.log('this.selectArea==', this.selectArea);
|
|
|
- // this.$emit('mapChangeSpaceInfo', area); // 传给父组件,以请求数据
|
|
|
+ this.$emit('mapChangeSpaceInfo', area); // 传给父组件,以请求数据
|
|
|
}
|
|
|
},
|
|
|
// 获取选中的空间
|
|
|
selectAreaFun(currentSelect) {
|
|
|
+ if (!currentSelect.isCompanyControl) {
|
|
|
+ wx.showToast({
|
|
|
+ title: '不可选区域',
|
|
|
+ duration: 1000,
|
|
|
+ icon: 'none'
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
this.selectArea = null;
|
|
|
this.doSelectArea(currentSelect);
|
|
|
},
|