details.wxml 982 B

1234567891011121314151617181920
  1. <My_GeneralTemplate>
  2. <view style="padding: 0 30rpx; box-sizing: border-box;">
  3. <My_GreyRectangleForm title="商户名" required>
  4. <view class="right-text">商户名称</view>
  5. </My_GreyRectangleForm>
  6. <My_GreyRectangleForm title="商户logo" required>
  7. <image class="logo" src="/static/changeImg.png" mode="aspectFit"></image>
  8. </My_GreyRectangleForm>
  9. <My_GreyRectangleForm title="是否合作">
  10. <van-switch checked="{{ checked }}" bind:change="onChange" />
  11. </My_GreyRectangleForm>
  12. <My_GreyRectangleForm title="合作方式" required>
  13. <input style="background-color: brown; width: 200rpx;" readonly type="text"/>
  14. </My_GreyRectangleForm>
  15. </view>
  16. </My_GeneralTemplate>
  17. <!-- 提交按钮 -->
  18. <view class="submit_but">
  19. <van-button bindtap="submit" custom-class="custom-class" round color="linear-gradient(180deg, #82E0E9 0%, #4BBECF 100%);">保存</van-button>
  20. </view>