registerSuccess.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <!-- 申请成功 -->
  2. <template>
  3. <view id="register">
  4. <view class="register_li">
  5. <img class="register_li_t" src="@/pages_supplier/images/Version3.0/img_zc_zccg.png">
  6. <view class="register_li_m">
  7. <text>申请提交成功,请牢记您的账号密码,</text>
  8. <text>为避免丢失和遗忘,建议您截图保存。</text>
  9. </view>
  10. <view class="register_li_b">
  11. <view>
  12. <text>登陆账号</text>
  13. <text>{{form.sysUserDto.userName}}</text>
  14. </view>
  15. <view>
  16. <text>登陆密码</text>
  17. <text>{{form.sysUserDto.password}}</text>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="sub_btn" @click="back()">返回</view>
  22. </view>
  23. </template>
  24. <script>
  25. import {} from '@/api/apiDemo/index.js'
  26. import { config } from '@/api/request/config.js'
  27. export default {
  28. data() {
  29. return {
  30. form:{
  31. },
  32. }
  33. },
  34. onLoad(option) {
  35. this.form=JSON.parse(decodeURIComponent(option.form));
  36. },
  37. onShow(){
  38. },
  39. methods: {
  40. back(){
  41. uni.redirectTo({
  42. url: '/pages/login?status=3',
  43. });
  44. },
  45. }
  46. }
  47. </script>
  48. <style lang="stylus" scoped>
  49. #register{
  50. height:100%;
  51. width:100%;
  52. display flex
  53. flex-direction column;
  54. //padding-bottom: 220rpx;
  55. .register_li{
  56. background #fff;
  57. border-radius:20rpx;
  58. margin:20rpx 20rpx 0;
  59. padding:20rpx 0;
  60. box-sizing: border-box;
  61. .register_li_t{
  62. width:336rpx;
  63. height:190rpx;
  64. margin: 60rpx 0 0 186rpx;
  65. }
  66. .register_li_m{
  67. margin-top: 64rpx;
  68. text-align: center;
  69. >text{
  70. display: block;
  71. }
  72. >text:nth-child(1){
  73. font-size: 28rpx;
  74. font-family: PingFang SC;
  75. font-weight: 500;
  76. color: #333333;
  77. line-height: 28rpx;
  78. margin-bottom: 24rpx;
  79. }
  80. >text:nth-child(2){
  81. font-size: 28rpx;
  82. font-family: PingFang SC;
  83. font-weight: 500;
  84. color: #333333;
  85. line-height: 28rpx;
  86. }
  87. }
  88. .register_li_b{
  89. margin-top: 60rpx;
  90. width: 668rpx;
  91. height: 180rpx;
  92. background: #F5F5F5;
  93. border-radius: 10rpx;
  94. margin-left: 22rpx;
  95. padding: 44rpx 34rpx;
  96. box-sizing: border-box;
  97. >view{
  98. display: flex;
  99. justify-content: space-between;
  100. >text{
  101. font-size: 28rpx;
  102. font-family: PingFang SC;
  103. font-weight: 500;
  104. color: #666666;
  105. line-height: 28rpx;
  106. }
  107. }
  108. >view:nth-child(2){
  109. margin-top: 30rpx;
  110. }
  111. }
  112. }
  113. /* 按钮 */
  114. .sub_btn{
  115. width: 650rpx;
  116. height: 100rpx;
  117. background: #0183FA;
  118. border-radius: 20rpx;
  119. font-size: 28rpx;
  120. font-family: PingFang SC;
  121. font-weight: 500;
  122. color: #FFFFFF;
  123. line-height: 100rpx;
  124. text-align: center;
  125. margin-left: 50rpx;
  126. position: fixed;
  127. bottom:30rpx;
  128. z-index: 1000;
  129. }
  130. }
  131. /deep/.input-value-border{
  132. display :none !important;
  133. }
  134. </style>