index.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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" v-model="form.user_name" 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" v-model="form.user_id" 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. form:{
  41. user_name:"",
  42. user_id:""
  43. }
  44. }
  45. },
  46. created(option) {},
  47. onLoad() {
  48. this.form.user_name = this.$storage.getJson("users").user_name
  49. this.form.user_id = this.$storage.getJson("users").user_id
  50. },
  51. onUnload() {},
  52. onShow() {},
  53. mounted() {},
  54. components: {
  55. Nav,
  56. avatar
  57. },
  58. methods: {
  59. loginOut(){
  60. this.$storage.clear()
  61. uni.reLaunch({
  62. url: "/pages/login/index"
  63. })
  64. },
  65. clickOrder() {
  66. uni.switchTab({
  67. url: "/pages/mypage/index"
  68. })
  69. },
  70. myUpload(rsp) {
  71. this.$set(this.urls, rsp.index, rsp.path);
  72. },
  73. clk(index) {
  74. this.$refs.avatar.fChooseImg(index, {
  75. selWidth: "300upx",
  76. selHeight: "300upx",
  77. expWidth: '260upx',
  78. expHeight: '260upx'
  79. });
  80. },
  81. myUpload(rsp) {
  82. this.url = rsp.path; //更新头像方式一
  83. //rsp.avatar.imgSrc = rsp.path; //更新头像方式二
  84. }
  85. },
  86. }
  87. </script>
  88. <style lang="scss" scoped>
  89. .app-content {
  90. >.header {
  91. width: 100%;
  92. height: 4.375rem;
  93. display: flex;
  94. justify-content: center;
  95. align-items: center;
  96. // background: rgba(49,85,99,1);
  97. color: rgb(16, 17, 22);
  98. font-family: Noto Sans SC;
  99. font-size: 1rem;
  100. position: relative;
  101. >.log {
  102. width: .375rem;
  103. height: .75rem;
  104. font-size: .75rem;
  105. position: absolute;
  106. left: 1.5rem;
  107. background: url('../../static/ico@1x.png') no-repeat;
  108. background-size: 100% 100%;
  109. }
  110. >.up {
  111. position: absolute;
  112. right: 1.5rem;
  113. color: rgb(37, 121, 160);
  114. font-family: Noto Sans SC;
  115. font-size: .875rem;
  116. font-weight: 500;
  117. }
  118. }
  119. >.cont {
  120. >.photograph {
  121. width: 6rem;
  122. height: 6rem;
  123. background: rgb(197, 207, 211);
  124. // background: red;
  125. border-radius: 50%;
  126. margin: 0 auto;
  127. margin-top: .625rem;
  128. display: flex;
  129. align-items: center;
  130. justify-content: center;
  131. >.log {
  132. width: 1.75rem;
  133. height: 1.75rem;
  134. background: url('../../static/shi.png') no-repeat;
  135. background-size: 100% 100%;
  136. }
  137. }
  138. }
  139. >.content {
  140. margin-left: 1.5rem;
  141. margin-top: 2.125rem;
  142. margin-bottom: 3rem;
  143. >.list {
  144. height: 3.375rem;
  145. display: flex;
  146. align-items: center;
  147. border-bottom: 1px solid rgb(238, 238, 238);
  148. >p {
  149. color: rgb(0, 0, 0);
  150. font-family: Noto Sans SC;
  151. font-size: .8125rem;
  152. font-weight: 500;
  153. margin-right: 2.1875rem;
  154. }
  155. }
  156. }
  157. >.butele {
  158. width: 20.5625rem;
  159. height: 2.75rem;
  160. background: linear-gradient(165.96deg, rgba(248.17, 101.23, 53.02, 1) -34%, rgba(231.09, 13.66, 13.66, 1) 166%);
  161. border-radius: 4px;
  162. margin: 0 auto;
  163. display: flex;
  164. align-items: center;
  165. justify-content: center;
  166. color: rgb(255, 255, 255);
  167. font-family: Noto Sans SC;
  168. font-size: 1rem;
  169. font-weight: 700;
  170. }
  171. }
  172. </style>