|
@@ -17,6 +17,7 @@
|
|
|
<image class="icon-item" :src="loadImgSrc('dggc.png')" v-if="item.title == '顶管工程'"></image>
|
|
|
<image class="icon-item" :src="loadImgSrc('jjgc.png')" v-if="item.title == '基建工程'"></image>
|
|
|
<image class="icon-item" :src="loadImgSrc('open_bolt.png')" v-if="item.title == '开栓'"></image>
|
|
|
+ <image class="icon-item" :src="loadImgSrc('open_bolt.png')" v-if="item.title == '带气封堵施工'"></image>
|
|
|
<view class="GStitle">{{ item.title }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -177,6 +178,11 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
|
|
|
img: '/static/logo.png',
|
|
|
title: '开栓'
|
|
|
},
|
|
|
+ {
|
|
|
+ id: 8,
|
|
|
+ img: '/static/logo.png',
|
|
|
+ title: '带气封堵施工'
|
|
|
+ },
|
|
|
]
|
|
|
|
|
|
|
|
@@ -198,6 +204,8 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
|
|
|
this.showInfrastructureDialog();
|
|
|
} else if (newId == 7) {
|
|
|
this.showOpenBolt();
|
|
|
+ }else if (newId == 8) {
|
|
|
+ this.showGasSealingDialog();
|
|
|
}
|
|
|
|
|
|
},
|
|
@@ -469,6 +477,16 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
|
|
|
.stringify(
|
|
|
obj))
|
|
|
})
|
|
|
+ } else if (this.projectType == 'DaiQiFengDuShiGong') {
|
|
|
+ let obj = {
|
|
|
+ value: item.dictValue
|
|
|
+ };
|
|
|
+ //this.handleHiddenShare();
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/gas_sealing_project/gas_sealing_project?params=' + encodeURIComponent(JSON
|
|
|
+ .stringify(
|
|
|
+ obj))
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
showGongYe() {
|
|
@@ -504,7 +522,15 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/open_bolt/open_bolt'
|
|
|
})
|
|
|
- }
|
|
|
+ },
|
|
|
+ showGasSealingDialog() {
|
|
|
+ this.projectType = 'DaiQiFengDuShiGong';
|
|
|
+ //基建工程
|
|
|
+ getDicts("air_wall_node").then(response => {
|
|
|
+ this.typeList = response.data;
|
|
|
+ });
|
|
|
+ this.handleShowSheet();
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|