| 12345678910111213141516171819202122232425262728 |
- <My_GeneralTemplate overflowHidden="{{false}}" padBot="20rpx">
- <view style="padding: 0 30rpx; box-sizing: border-box;">
- <My_GreyRectangleForm title="商户名" required>
- <view class="right-text">{{partnerDetails.fbrand}}</view>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="商户logo" required>
- <image class="logo" src="{{partnerDetails.attinfos[0].fobsurl}}" mode="aspectFill" catchtap="previewImg"></image>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="是否合作">
- <van-switch checked="{{ checked }}" bind:change="onChange" />
- </My_GreyRectangleForm>
- <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}}
- <van-icon size="12px" name="arrow-down" />
- </view>
- <van-transition show="{{dropDownList}}" class="pattern-item-box" name="fade-down">
- <view class="pattern-item" bindtap="modeSelect">
- <view wx:for="{{methodsList}}" data-index="{{index}}" data-name="{{item}}">{{item}}</view>
- </view>
- </van-transition>
- </My_GreyRectangleForm>
- </view>
- </My_GeneralTemplate>
- <!-- 提交按钮 -->
- <view class="submit_but">
- <van-button bindtap="submit" custom-class="custom-class" round color="linear-gradient(180deg, #82E0E9 0%, #4BBECF 100%);">保存</van-button>
- </view>
|