index.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <template>
  2. <view class="establish">
  3. <view class="business-card"></view>
  4. <view class="business-style">
  5. <view class="business-title">名片样式</view>
  6. <view class="style-list">
  7. <view class="style-item"></view>
  8. <view class="style-item"></view>
  9. <view class="style-item"></view>
  10. </view>
  11. </view>
  12. <tui-form ref="form">
  13. <view class="basic-info">
  14. <view class="info-title">基本信息</view>
  15. <view class="tui-form">
  16. <tui-form-item label="头像">
  17. <image class="" src="@/static/header_image.png"
  18. style="width: 80rpx;height: 80rpx; border-radius: 50%;" />
  19. </tui-form-item>
  20. <tui-form-item label="姓名" :asterisk="true" :labelSize="28">
  21. <tui-input padding="0" :borderBottom="false" :size="28" placeholder="请输入姓名"></tui-input>
  22. </tui-form-item>
  23. <tui-form-item label="公司" :asterisk="true" :labelSize="28">
  24. <tui-input padding="0" :borderBottom="false" :size="28" placeholder="请输入公司名称"></tui-input>
  25. </tui-form-item>
  26. <tui-form-item label="职位" :asterisk="true" :labelSize="28">
  27. <tui-input padding="0" :borderBottom="false" :size="28" placeholder="请输入担任职位"></tui-input>
  28. </tui-form-item>
  29. </view>
  30. </view>
  31. <view class="contact-mode">
  32. <view class="mode-title">联系方式</view>
  33. <tui-form-item label="手机" :asterisk="true" :labelSize="28">
  34. <tui-input padding="0" :borderBottom="false" :size="28" placeholder="请输入手机号"></tui-input>
  35. </tui-form-item>
  36. <tui-form-item label="微信" :labelSize="28">
  37. <tui-input padding="0" :borderBottom="false" :size="28" placeholder="请输入微信号"></tui-input>
  38. </tui-form-item>
  39. <tui-form-item label="地址" :labelSize="28">
  40. <tui-input padding="0" :borderBottom="false" :size="28" placeholder="请填写地址信息"></tui-input>
  41. </tui-form-item>
  42. </view>
  43. <view class="personal-brief">
  44. <view class="brief-title">个人简介</view>
  45. <tui-textarea flexStart placeholder="请输入个人简介" min-height="100rpx" height="100rpx"
  46. :size="28"></tui-textarea>
  47. </view>
  48. <view class="company-brief">
  49. <view class="company-title">公司简介</view>
  50. <tui-textarea flexStart placeholder="请填写公司简介" min-height="100rpx" height="100rpx"
  51. :size="28"></tui-textarea>
  52. </view>
  53. </tui-form>
  54. <view class="footer" :style="{ bottom: bottom + 'rpx' }">
  55. <view class="preview" @click="goCard">预览名片</view>
  56. <view class="preserve">保存</view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. onLoad() {
  63. uni.getSystemInfo({
  64. success: (res) => {
  65. this.bottom = res.safeAreaInsets.bottom
  66. }
  67. })
  68. },
  69. data() {
  70. return {
  71. bottom: null
  72. }
  73. },
  74. methods: {
  75. goCard() {
  76. uni.navigateTo({
  77. url: '/pages/previewCard/index'
  78. })
  79. }
  80. },
  81. }
  82. </script>
  83. <style lang="scss" scoped>
  84. %paddBox {
  85. margin-top: 20rpx;
  86. border-radius: 10rpx;
  87. padding: 30rpx 20rpx;
  88. box-sizing: border-box;
  89. background-color: #fff;
  90. }
  91. %title {
  92. border-bottom: 1rpx solid #ccc;
  93. font-size: 30rpx;
  94. color: #000;
  95. font-weight: 600;
  96. padding-bottom: 20rpx;
  97. }
  98. .establish {
  99. min-height: 100vh;
  100. background-color: #f5f5f5;
  101. padding: 30rpx;
  102. box-sizing: border-box;
  103. .business-card {
  104. width: 100%;
  105. height: 400rpx;
  106. background-color: aquamarine;
  107. border-radius: 20rpx;
  108. }
  109. .business-style {
  110. @extend %paddBox;
  111. .business-title {
  112. @extend %title;
  113. }
  114. .style-list {
  115. margin-top: 20rpx;
  116. @include flex(space-between, null, 20rpx);
  117. .style-item {
  118. flex: 1;
  119. height: 100rpx;
  120. background-color: bisque;
  121. border-radius: 10rpx
  122. }
  123. }
  124. }
  125. .basic-info {
  126. @extend %paddBox;
  127. .info-title {
  128. border-bottom: 1rpx solid #ccc;
  129. font-size: 30rpx;
  130. color: #000;
  131. font-weight: 600;
  132. padding-bottom: 20rpx;
  133. }
  134. }
  135. .contact-mode {
  136. @extend %paddBox;
  137. .mode-title {
  138. @extend %title;
  139. }
  140. }
  141. .personal-brief {
  142. @extend %paddBox;
  143. .brief-title {
  144. @extend %title;
  145. }
  146. }
  147. .company-brief {
  148. @extend %paddBox;
  149. margin-bottom: 130rpx;
  150. .company-title {
  151. @extend %title;
  152. }
  153. }
  154. .footer {
  155. position: fixed;
  156. left: 0;
  157. bottom: 0;
  158. width: 100%;
  159. height: 100rpx;
  160. line-height: 100rpx;
  161. z-index: 99;
  162. @include flex(space-between, null);
  163. font-size: 30rpx;
  164. text-align: center;
  165. .preview {
  166. width: 250rpx;
  167. background-color: #fff;
  168. color: rgb(58, 143, 255);
  169. }
  170. .preserve {
  171. flex: 1;
  172. background-color: #3A8FFF;
  173. color: #fff;
  174. }
  175. }
  176. }
  177. </style>