gzsq.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <view class="content">
  3. <view class="tab-wrapper">
  4. <view class="itemx">
  5. <view class="item-tit">公司名称:</view>
  6. <input type="text" v-model="name" placeholder="请输入您的姓名" />
  7. </view>
  8. <view class="itemx">
  9. <view class="item-tit">负责人姓名:</view>
  10. <input type="text" v-model="phone" placeholder="请输入您的手机号" />
  11. </view>
  12. <view class="itemx">
  13. <view class="item-tit">联系方式:</view>
  14. <input type="text" v-model="phone" placeholder="请输入您的手机号" />
  15. </view>
  16. <view class="itemx">
  17. <view class="item-tit">身份证号:</view>
  18. <input type="text" v-model="area" placeholder="请输入店长区域" />
  19. </view>
  20. </view>
  21. <view class="scsfz-wrap">
  22. <image src="../../static/img/sfzzm.png" mode=""></image>
  23. <view class="" style="padding-bottom: 33rpx;">
  24. 添加身份证正面
  25. </view>
  26. <image src="../../static/img/sfzzm.png" mode=""></image>
  27. <view class="">
  28. 添加身份证反面
  29. </view>
  30. </view>
  31. <view class="tab-wrapper" style="padding-top: 0;">
  32. <view class="itemx">
  33. <view class="item-tit">店铺地址:</view>
  34. <input type="text" v-model="name" placeholder="请输入您的姓名" />
  35. </view>
  36. <view class="itemx" style="height: 250rpx;">
  37. <view class="item-tit">营业执照:</view>
  38. <!-- <input type="text" v-model="name" placeholder="请输入您的姓名" /> -->
  39. <image src="../../static/img/add.png" mode=""></image>
  40. </view>
  41. </view>
  42. <view class="tab-wrapper" style="padding-top: 0;">
  43. <view class="itemx" style="height: 250rpx;">
  44. <view class="item-tit">门店照片:</view>
  45. <!-- <input type="text" v-model="name" placeholder="请输入您的姓名" /> -->
  46. <image src="../../static/img/add.png" mode=""></image>
  47. </view>
  48. </view>
  49. <view class="sq-xz" @click="dagou = !dagou">
  50. <text class="sq-gou" v-if="!dagou"></text>
  51. <image src="../../static/icon/gou.png" mode="" class="sq-gou-g" v-else></image>
  52. <text>我已阅读并同意</text><text @click.stop="lookXz" style="color: #375AFE;">《馆长申请须知》</text>
  53. </view>
  54. <view class="sq-btn" @click="subSq()">
  55. 提交申请
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. export default {
  61. data() {
  62. return {
  63. dagou: false,
  64. }
  65. },
  66. methods: {
  67. lookXz() {
  68. this.$api.msg('瞅啥瞅!')
  69. },
  70. subSq() {
  71. let obj = this
  72. if(!obj.dagou) {
  73. return this.$api.msg('打勾去啊,愣着干啥')
  74. }
  75. }
  76. }
  77. }
  78. </script>
  79. <style lang="scss">
  80. .tab-wrapper {
  81. padding: 20rpx 30rpx;
  82. // background-color: #f2f3f5;
  83. }
  84. .itemx {
  85. margin: 0 auto;
  86. width: 100%;
  87. background-color: #fff !important;
  88. height: 100rpx;
  89. display: flex;
  90. // width: 690px;
  91. border: 1px #f4f4f4 solid;
  92. image {
  93. margin-top: 63rpx;
  94. margin-left: 55rpx;
  95. width: 160rpx;
  96. height: 160rpx;
  97. }
  98. .code {
  99. width: 150rpx;
  100. flex-shrink: 0;
  101. text-align: center;
  102. font-size: 28rpx;
  103. font-family: PingFang SC;
  104. font-weight: 500;
  105. color: #FF4C4C;
  106. line-height: 100rpx;
  107. }
  108. .item-tit {
  109. height: 100rpx;
  110. line-height: 100rpx;
  111. padding-left: 30rpx;
  112. width: 220rpx;
  113. font-size: 30rpx;
  114. font-family: PingFang SC;
  115. font-weight: 500;
  116. color: #666666;
  117. flex-shrink: 0;
  118. }
  119. input {
  120. width: 530rpx;
  121. padding-right: 20rpx;
  122. height: 100rpx;
  123. line-height: 100rpx;
  124. font-size: 30rpx;
  125. font-family: PingFang SC;
  126. font-weight: 500;
  127. color: #333333;
  128. }
  129. }
  130. .scsfz-wrap {
  131. width: 690rpx;
  132. height: 673rpx;
  133. background: #FFFFFF;
  134. box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
  135. border-radius: 10rpx;
  136. margin: 0 auto 20rpx;
  137. font-size: 29rpx;
  138. font-family: SourceHanSansCN;
  139. font-weight: 400;
  140. color: #B2B2B2;
  141. text-align: center;
  142. padding-top: 33rpx;
  143. image {
  144. display: block;
  145. width: 354rpx;
  146. height: 240rpx;
  147. margin: auto;
  148. }
  149. }
  150. .sq-btn {
  151. width: 750rpx;
  152. height: 98rpx;
  153. line-height: 98rpx;
  154. background: linear-gradient(0deg, rgba(60, 237, 237, 0.99), #04B8FF, #375AFE);
  155. text-align: center;
  156. font-size: 36rpx;
  157. font-family: PingFang SC;
  158. font-weight: 500;
  159. color: #FFFFFF;
  160. }
  161. .sq-xz {
  162. height: 32rpx;
  163. line-height: 32rpx;
  164. display: flex;
  165. margin: 21rpx 0 75rpx 30rpx;
  166. font-size: 24rpx;
  167. font-family: PingFang SC;
  168. font-weight: 500;
  169. color: #0C1732;
  170. .sq-gou {
  171. display: inline-block;
  172. width: 32rpx;
  173. height: 32rpx;
  174. border-radius: 50%;
  175. border: 1px solid #999;
  176. margin-right: 15rpx;
  177. }
  178. .sq-gou-g {
  179. width: 32rpx;
  180. height: 32rpx;
  181. border-radius: 50%;
  182. margin-right: 15rpx;
  183. }
  184. }
  185. </style>