accredit.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <view>
  3. <view class="add">
  4. 请输入账号添加
  5. </view>
  6. <view class="card">
  7. <view class="top">
  8. <view class="top-left">
  9. <text class="">选择积分来源</text>
  10. </view>
  11. <view class="top-right" style="display: flex;">
  12. <image src="@/static/icon/yidong.png" mode="widthFix"></image>
  13. <view class="flex justify-center align-center">
  14. <text class="padding-left-10">中国移动</text>
  15. <text class="cuIcon-right" style="padding: 2rpx 0 0 20rpx;color: #888888;"></text>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="input">
  20. <u-input :custom-style="customStyle" :height="90" v-model="value" type="text" :border="true" />
  21. <view class="" style="height: 20rpx;"></view>
  22. <u-input :height="90" v-model="value" type="text" :border="true"/>
  23. <view class="margin-top-20">
  24. <u-checkbox v-model="checked" name="同意">
  25. <text>已阅读并同意</text>
  26. <text style="color: #62baff;">授权意向书</text>
  27. </u-checkbox>
  28. </view>
  29. <view class="flex justify-center align-center margin-top-50">
  30. <view class="cu-btn btn-bg-color round" style="padding: 40rpx 120rpx;">
  31. 提交授权
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="support">
  37. <view class="padding-left-20 padding-bottom-50">
  38. <text>支持平台</text>
  39. <text style="color: #888888;padding-left: 10rpx;">(支持25家平台)</text>
  40. </view>
  41. <view class="item" v-for="(item,index) in 10" :key="index">
  42. <view class="left">
  43. <view class="flex justify-center align-center">
  44. <image src="@/static/icon/yidong.png" ></image>
  45. </view>
  46. <text class="padding-left-10">中国移动</text>
  47. </view>
  48. <view class="right">
  49. <view class="flex justify-center align-center">
  50. <image src="@/static/icon/points.png" mode=""></image>
  51. </view>
  52. <text class="margin-left-10">100 = ¥10</text>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. export default {
  60. data() {
  61. return {
  62. value:'',
  63. checked:false
  64. }
  65. },
  66. methods: {
  67. }
  68. }
  69. </script>
  70. <style lang="scss" scoped>
  71. .add{
  72. font-size: 32rpx;
  73. color: #333333;
  74. font-weight: 800;
  75. padding: 40rpx 50rpx 20rpx;
  76. }
  77. .card{
  78. background-color: #FFFFFF;
  79. padding: 20rpx;
  80. margin: 15rpx;
  81. border-radius: 20rpx;
  82. .top{
  83. padding: 20rpx;
  84. display: flex;
  85. justify-content: space-between;
  86. .top-left{
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. font-size: 30rpx;
  91. color: #333333;
  92. }
  93. .top-right{
  94. display: flex;
  95. image{
  96. width: 50rpx;
  97. height: 50rpx;
  98. }
  99. }
  100. }
  101. .input{
  102. margin:40rpx 10rpx 30rpx;
  103. }
  104. }
  105. .support{
  106. background-color: #FFFFFF;
  107. border-radius: 20rpx;
  108. padding: 40rpx 20rpx;
  109. margin: 20rpx;
  110. .item{
  111. padding: 30rpx 10rpx;
  112. display: flex;
  113. justify-content: space-between;
  114. border-bottom: 1rpx solid #EAEAEB;
  115. .left{
  116. display: flex;
  117. image{
  118. width: 40rpx;
  119. height: 40rpx;
  120. }
  121. }
  122. .right{
  123. display: flex;
  124. image{
  125. width: 40rpx;
  126. height: 40rpx;
  127. }
  128. }
  129. }
  130. }
  131. </style>