index.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="clickOrder"></view>{{ navname }}
  5. <view class="up">完成</view>
  6. </view>
  7. <view class="cont">
  8. <view class="photograph">
  9. <!-- <view class="log" @click="clk(0)"></view> -->
  10. <!-- <image :src="urls[0]" @click="clk(0)"></image>
  11. <image :src="urls[1]" @click="clk(1)"></image> -->
  12. <!-- <button @click="clk(0)">按钮触发</button> -->
  13. <avatar selWidth="200px" selHeight="400upx" @upload="myUpload" :avatarSrc="url"
  14. avatarStyle="width: 200upx; height: 200upx; border-radius: 100%;"></avatar>
  15. </view>
  16. </view>
  17. <view class="content">
  18. <view class="list">
  19. <p>名称</p>
  20. <input class="input" name="yonghuming" type="text" value=""
  21. placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入名称" />
  22. </view>
  23. <view class="list">
  24. <p>工号</p>
  25. <input class="input" name="yonghuming" type="text" value=""
  26. placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入工号" />
  27. </view>
  28. </view>
  29. <view class="butele" @tap="loginOut">退出登录</view>
  30. </view>
  31. </template>
  32. <script>
  33. import Nav from '../../components/header/nav.vue'
  34. import avatar from "../../components/yq-avatar/yq-avatar.vue";
  35. export default {
  36. data() {
  37. return {
  38. navname: '个人信息',
  39. url: []
  40. }
  41. },
  42. created(option) {},
  43. onLoad() {},
  44. onUnload() {},
  45. onShow() {},
  46. mounted() {},
  47. components: {
  48. Nav,
  49. avatar
  50. },
  51. methods: {
  52. loginOut(){
  53. this.$storage.clear()
  54. uni.reLaunch({
  55. url: "/pages/login/index"
  56. })
  57. },
  58. clickOrder() {
  59. uni.switchTab({
  60. url: "/pages/mypage/index"
  61. })
  62. },
  63. myUpload(rsp) {
  64. this.$set(this.urls, rsp.index, rsp.path);
  65. },
  66. clk(index) {
  67. this.$refs.avatar.fChooseImg(index, {
  68. selWidth: "300upx",
  69. selHeight: "300upx",
  70. expWidth: '260upx',
  71. expHeight: '260upx'
  72. });
  73. },
  74. myUpload(rsp) {
  75. this.url = rsp.path; //更新头像方式一
  76. //rsp.avatar.imgSrc = rsp.path; //更新头像方式二
  77. }
  78. },
  79. }
  80. </script>
  81. <style lang="scss" scoped>
  82. .app-content {
  83. >.header {
  84. width: 100%;
  85. height: 4.375rem;
  86. display: flex;
  87. justify-content: center;
  88. align-items: center;
  89. // background: rgba(49,85,99,1);
  90. color: rgb(16, 17, 22);
  91. font-family: Noto Sans SC;
  92. font-size: 1rem;
  93. position: relative;
  94. >.log {
  95. width: .375rem;
  96. height: .75rem;
  97. font-size: .75rem;
  98. position: absolute;
  99. left: 1.5rem;
  100. background: url('../../static/ico@1x.png') no-repeat;
  101. background-size: 100% 100%;
  102. }
  103. >.up {
  104. position: absolute;
  105. right: 1.5rem;
  106. color: rgb(37, 121, 160);
  107. font-family: Noto Sans SC;
  108. font-size: .875rem;
  109. font-weight: 500;
  110. }
  111. }
  112. >.cont {
  113. >.photograph {
  114. width: 6rem;
  115. height: 6rem;
  116. background: rgb(197, 207, 211);
  117. // background: red;
  118. border-radius: 50%;
  119. margin: 0 auto;
  120. margin-top: .625rem;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. >.log {
  125. width: 1.75rem;
  126. height: 1.75rem;
  127. background: url('../../static/shi.png') no-repeat;
  128. background-size: 100% 100%;
  129. }
  130. }
  131. }
  132. >.content {
  133. margin-left: 1.5rem;
  134. margin-top: 2.125rem;
  135. margin-bottom: 3rem;
  136. >.list {
  137. height: 3.375rem;
  138. display: flex;
  139. align-items: center;
  140. border-bottom: 1px solid rgb(238, 238, 238);
  141. >p {
  142. color: rgb(0, 0, 0);
  143. font-family: Noto Sans SC;
  144. font-size: .8125rem;
  145. font-weight: 500;
  146. margin-right: 2.1875rem;
  147. }
  148. }
  149. }
  150. >.butele {
  151. width: 20.5625rem;
  152. height: 2.75rem;
  153. background: linear-gradient(165.96deg, rgba(248.17, 101.23, 53.02, 1) -34%, rgba(231.09, 13.66, 13.66, 1) 166%);
  154. border-radius: 4px;
  155. margin: 0 auto;
  156. display: flex;
  157. align-items: center;
  158. justify-content: center;
  159. color: rgb(255, 255, 255);
  160. font-family: Noto Sans SC;
  161. font-size: 1rem;
  162. font-weight: 700;
  163. }
  164. }
  165. </style>