index.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view class="index">
  3. <view class="contant">
  4. <view class="header" :style="{ marginTop: top + 'rpx' }">
  5. <view class="header-icon" @click="openDrawer">
  6. <image class="" src="@/static/catalogue_icon.png" />
  7. </view>
  8. <view class="header-title">团蜂电子名片</view>
  9. </view>
  10. <view class="main">
  11. <view class="card-list"></view>
  12. <view class="add-card" @click="addCard">
  13. <view class="card-icon">
  14. <tui-icon name="plus" :size="24" color="rgb(58, 143, 255)"></tui-icon>
  15. </view>
  16. <view class="card-text">新增名片</view>
  17. </view>
  18. </view>
  19. <button open-type="getPhoneNumber" @click="addCard" @getphonenumber="getPhone">点击事件</button>
  20. </view>
  21. <tui-drawer mode="left" :visible="visible" @close="closeDrawer">
  22. <view class="d-container" :style="{ marginTop: top + 'rpx' }">
  23. <view class="d-image">
  24. <image class="" src="@/static/header_image.png" />
  25. <text>摘星辰</text>
  26. </view>
  27. <view class="quit" @click="quitLogin">退出登录</view>
  28. </view>
  29. </tui-drawer>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. visible: false,
  37. top: null
  38. }
  39. },
  40. onLoad() {
  41. uni.getSystemInfo({
  42. success: res => {
  43. this.top = res.safeAreaInsets.top * 2
  44. }
  45. })
  46. },
  47. methods: {
  48. // 打开侧边弹框
  49. openDrawer() {
  50. this.visible = true
  51. },
  52. // 新增卡片
  53. addCard() {
  54. // #ifdef MP-WEIXIN
  55. wx.login({
  56. success: res => {
  57. console.log(res);
  58. }
  59. })
  60. // #endif
  61. uni.navigateTo({
  62. url: '/pages/establish/index',
  63. });
  64. },
  65. getPhone(e) {
  66. console.log(e);
  67. },
  68. // 退出登录
  69. quitLogin() {
  70. this.visible = false
  71. },
  72. // 关闭侧边弹框
  73. closeDrawer() {
  74. this.visible = false
  75. }
  76. }
  77. }
  78. </script>
  79. <style lang="scss" scoped>
  80. .index {
  81. min-height: 100vh;
  82. background-color: #f5f5f5;
  83. // @extend %securityTop;
  84. box-sizing: border-box;
  85. .contant {
  86. height: calc(100vh - env(safe-area-inset-bottom));
  87. box-sizing: border-box;
  88. background-color: #fff;
  89. .header {
  90. position: relative;
  91. width: 100%;
  92. height: 80rpx;
  93. .header-icon {
  94. position: absolute;
  95. top: 50%;
  96. transform: translateY(-50%);
  97. left: 30rpx;
  98. image {
  99. width: 50rpx;
  100. height: 50rpx;
  101. display: block;
  102. }
  103. }
  104. .header-title {
  105. text-align: center;
  106. line-height: 80rpx;
  107. font-size: 32rpx;
  108. }
  109. }
  110. .main {
  111. padding: 20rpx 30rpx;
  112. .add-card {
  113. width: 100%;
  114. height: 200rpx;
  115. border: 1px solid #a3a3a3;
  116. border-radius: 10rpx;
  117. display: flex;
  118. align-items: center;
  119. justify-content: center;
  120. gap: 20rpx;
  121. color: rgb(58, 143, 255);
  122. font-size: 30rpx;
  123. }
  124. }
  125. }
  126. .d-container {
  127. // @extend %securityTop;
  128. box-sizing: border-box;
  129. height: 100vh;
  130. width: 350rpx;
  131. background-color: #fff;
  132. .d-image {
  133. @include flex(center, column, 20rpx);
  134. padding: 35rpx 0;
  135. box-sizing: border-box;
  136. border-top: 1rpx solid #cccccc;
  137. border-bottom: 1rpx solid #cccccc;
  138. image {
  139. width: 100rpx;
  140. height: 100rpx;
  141. display: block;
  142. border-radius: 50%;
  143. }
  144. text {
  145. font-size: 28rpx;
  146. }
  147. }
  148. .quit {
  149. height: 80rpx;
  150. text-align: center;
  151. line-height: 80rpx;
  152. font-size: 26rpx;
  153. border-bottom: 1rpx solid #cccccc;
  154. }
  155. }
  156. }
  157. </style>