|
@@ -312,7 +312,7 @@ export default {
|
|
|
// 下一步||保存
|
|
|
nextStep() {
|
|
|
this.baseImgItem = this.$refs.drawFloor.drawMainScene.imgList[0]
|
|
|
- this.baseImgItem.globalAlpha = 0.2
|
|
|
+ this.baseImgItem.globalAlpha = 0.5
|
|
|
this.baseImgItem.moveable = true;
|
|
|
// 下一步
|
|
|
if (this.step == 0) {
|
|
@@ -356,12 +356,12 @@ export default {
|
|
|
const url = this.imgService + v.StructureInfo.FloorMap
|
|
|
this.curImgItem = new SImageItem(null, url);
|
|
|
this.curImgItem.enabled = false;
|
|
|
- this.curImgItem.globalAlpha = 0.2;
|
|
|
this.curImgItem.showType = SImageShowType.AutoFit;
|
|
|
if (v.Properties) {
|
|
|
try {
|
|
|
// 计算两个比例尺差距
|
|
|
const scaleItem = this.$refs.drawFloor.scaleItem
|
|
|
+ this.curImgItem.zOrder = scaleItem.zOrder - 1;
|
|
|
const r = this.calScaleGap(v.Properties, scaleItem);
|
|
|
if (r != 1) {
|
|
|
this.$message.warning('比例尺相差较大,可以返回上一步修改比例尺')
|