register.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view>
  3. <u-card :border="false" padding="30" box-shadow="0px 1px 10px rgba(0,0,0,0.2)" border-radius="20" :show-foot="false">
  4. <view slot="head">
  5. <view class="u-flex">
  6. <view style="width: 8rpx;height: 34rpx;background: #0292FD;margin-right:20rpx;"></view>
  7. 请按照要求上传您的营业执照和门店照
  8. </view>
  9. </view>
  10. <view slot="body">
  11. <u-upload :custom-btn="true" max-count="1" :action="action" class="u-flex u-row-center">
  12. <view slot="addBtn" hover-class="slot-btn__hover" hover-stay-time="150">
  13. <u-image width="475rpx" height="303rpx" src="../../static/sailun/upload_preview.png"></u-image>
  14. </view>
  15. </u-upload>
  16. <view class="u-flex u-row-center" style="color: #787878;margin: 20rpx 0 60rpx 0;">
  17. 点击上传营业执照
  18. </view>
  19. <u-upload :custom-btn="true" max-count="1" :action="action" class="u-flex u-row-center">
  20. <view slot="addBtn" hover-class="slot-btn__hover" hover-stay-time="150">
  21. <u-image width="475rpx" height="303rpx" src="../../static/sailun/upload_preview.png"></u-image>
  22. </view>
  23. </u-upload>
  24. <view class="u-flex u-row-center" style="color: #787878;margin: 20rpx 0;">
  25. 点击上传门头照
  26. </view>
  27. </view>
  28. </u-card>
  29. <view style="color: #787878;margin-left: 40rpx;">
  30. 注:上传完营业执照请确认和营业执照一致。
  31. </view>
  32. <view style="margin: 30rpx;">
  33. <u-button type="primary" :ripple="true" ripple-bg-color="#99d4ff" @click="nextStep">下一步</u-button>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. action: 'http://www.example.com', // 演示地址
  42. };
  43. },
  44. methods: {
  45. nextStep() {
  46. this.$u.route({
  47. url: 'pages/login/register_2',
  48. })
  49. }
  50. },
  51. }
  52. </script>
  53. <style lang="scss" scoped>
  54. .slot-btn__hover {
  55. background-color: rgb(235, 236, 238);
  56. }
  57. </style>