1234567891011121314151617181920 |
- <My_GeneralTemplate>
- <view style="padding: 0 30rpx; box-sizing: border-box;">
- <My_GreyRectangleForm title="商户名" required>
- <view class="right-text">商户名称</view>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="商户logo" required>
- <image class="logo" src="/static/changeImg.png" mode="aspectFit"></image>
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="是否合作">
- <van-switch checked="{{ checked }}" bind:change="onChange" />
- </My_GreyRectangleForm>
- <My_GreyRectangleForm title="合作方式" required>
- <input style="background-color: brown; width: 200rpx;" readonly type="text"/>
- </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>
|