|
|
|
|
@ -114,6 +114,12 @@ |
|
|
|
|
{{item.stationName || ''}} |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view v-if="landList.length > 9" class="station_act" @click="showLand = !showLand"> |
|
|
|
|
<uni-icons v-if="!showLand" type="bottom" size="14" color="#2D8CF0" style="margin-right:10rpx;"> |
|
|
|
|
</uni-icons> |
|
|
|
|
<uni-icons v-if="showLand" type="top" size="14" color="#2D8CF0" style="margin-right:10rpx;"></uni-icons> |
|
|
|
|
{{showLand?'收起':'展开'}} |
|
|
|
|
</view> |
|
|
|
|
<view class="form_item_box"> |
|
|
|
|
<!-- 陆岛 --> |
|
|
|
|
<view class="form_item_li"> |
|
|
|
|
@ -553,7 +559,7 @@ |
|
|
|
|
console.log(this.form.id) |
|
|
|
|
uni.showModal({ |
|
|
|
|
title: '提示', |
|
|
|
|
content: this.form.id == undefined ? '您确认提交该条报送数据?' : '您确认将该条数据进行修改?', |
|
|
|
|
content: this.pageType == 'add' ? '您确认提交该条报送数据?' : '您确认将该条数据进行修改?', |
|
|
|
|
success: (res) => { |
|
|
|
|
if (res.confirm) { |
|
|
|
|
this.submitForm(); |
|
|
|
|
@ -566,7 +572,7 @@ |
|
|
|
|
title: '提交中...', |
|
|
|
|
mask: true |
|
|
|
|
}) |
|
|
|
|
this.$request(getApp().globalData.baseUrl + '/api/biz/waterwayIslandData/saveOrUpdate', this |
|
|
|
|
this.$request(getApp().globalData.baseUrl + '/api/biz/waterwayIslandData/saveOrUpdateV2', this |
|
|
|
|
.form, |
|
|
|
|
'POST').then(res => { |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
|