|
@@ -1,20 +1,19 @@
|
|
|
-<My_GeneralTemplate overflowHidden="{{false}}" padBot="20rpx">
|
|
|
|
|
|
|
+<My_GeneralTemplate overflowHidden="{{false}}" padBot="20rpx">
|
|
|
<view style="padding: 0 30rpx; box-sizing: border-box;">
|
|
<view style="padding: 0 30rpx; box-sizing: border-box;">
|
|
|
<My_GreyRectangleForm title="商户名" required>
|
|
<My_GreyRectangleForm title="商户名" required>
|
|
|
<view class="right-text">{{partnerDetails.fbrand}}</view>
|
|
<view class="right-text">{{partnerDetails.fbrand}}</view>
|
|
|
</My_GreyRectangleForm>
|
|
</My_GreyRectangleForm>
|
|
|
<My_GreyRectangleForm title="商户logo" required>
|
|
<My_GreyRectangleForm title="商户logo" required>
|
|
|
- <image class="logo" src="{{partnerDetails.attinfos[0].fobsurl}}" mode="aspectFill" catchtap="previewImg"></image>
|
|
|
|
|
|
|
+ <image style="z-index: 9;" class="logo" src="{{partnerDetails.attinfos[0].fobsurl}}" mode="aspectFill" catchtap="previewImg"></image>
|
|
|
</My_GreyRectangleForm>
|
|
</My_GreyRectangleForm>
|
|
|
<My_GreyRectangleForm title="是否合作">
|
|
<My_GreyRectangleForm title="是否合作">
|
|
|
<van-switch checked="{{ checked }}" bind:change="onChange" />
|
|
<van-switch checked="{{ checked }}" bind:change="onChange" />
|
|
|
</My_GreyRectangleForm>
|
|
</My_GreyRectangleForm>
|
|
|
<My_GreyRectangleForm title="合作方式" required>
|
|
<My_GreyRectangleForm title="合作方式" required>
|
|
|
- <input style="background-color: brown; position: absolute; opacity: 0;" readonly type="text" bindfocus="dropDownFocus" bindblur="dropDownBlur" />
|
|
|
|
|
- <view class="right-text">{{showType}}
|
|
|
|
|
|
|
+ <view class="right-text" catchtap="dropDown">{{showType}}
|
|
|
<van-icon size="12px" name="arrow-down" />
|
|
<van-icon size="12px" name="arrow-down" />
|
|
|
</view>
|
|
</view>
|
|
|
- <van-transition show="{{dropDownList}}" class="pattern-item-box" name="fade-down">
|
|
|
|
|
|
|
+ <van-transition show="{{dropDownList}}" class="pattern-item-box" style="z-index: 999;" name="fade">
|
|
|
<view class="pattern-item" bindtap="modeSelect">
|
|
<view class="pattern-item" bindtap="modeSelect">
|
|
|
<view wx:for="{{methodsList}}" data-index="{{index}}" data-name="{{item}}">{{item}}</view>
|
|
<view wx:for="{{methodsList}}" data-index="{{index}}" data-name="{{item}}">{{item}}</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -25,4 +24,5 @@
|
|
|
<!-- 提交按钮 -->
|
|
<!-- 提交按钮 -->
|
|
|
<view class="submit_but">
|
|
<view class="submit_but">
|
|
|
<van-button bindtap="submit" custom-class="custom-class" round color="linear-gradient(180deg, #82E0E9 0%, #4BBECF 100%);">保存</van-button>
|
|
<van-button bindtap="submit" custom-class="custom-class" round color="linear-gradient(180deg, #82E0E9 0%, #4BBECF 100%);">保存</van-button>
|
|
|
-</view>
|
|
|
|
|
|
|
+</view>
|
|
|
|
|
+<view wx:if="{{dropDownList}}" style="height: 100vh; width: 100vw; position: absolute; top: 0; left: 0; opacity: 0.3; z-index: 0;" bindtap="closeTheDropDown"></view>
|