my.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <template>
  2. <view class="mainview">
  3. <view class="topimg">
  4. <view class="touxiang">
  5. <u-upload :fileList="fileList" @afterRead="afterRead" name="6" :multiple='false' :maxCount="1"
  6. imageMode="true" width="150" height="150">
  7. <image :src="src" mode="widthFix" shape="circle"
  8. style="width: 150rpx;height: 150rpx;"></image>
  9. </u-upload>
  10. </view>
  11. <view class="Username">
  12. <view class="Username1">李伟 <span>您好</span> </view>
  13. <view class="Username2">
  14. <view class="">
  15. 您上次登录时间:
  16. </view>
  17. <view class="">
  18. 2023-3-23 13:32:48
  19. </view>
  20. </view>
  21. </view>
  22. <view class="changemm">
  23. <view class="message">
  24. <view class="wdmessage">已读信息:</view>
  25. <view class="messagenumber">
  26. <u-badge type="success" max="99" :value="information1"></u-badge>
  27. </view>
  28. </view>
  29. <view class="message">
  30. <view class="wdmessage">未读信息:</view>
  31. <view class="messagenumber">
  32. <u-badge type="warning" max="99" :value="information2"></u-badge>
  33. </view>
  34. </view>
  35. <!-- <view class="setdata"> -->
  36. <!-- <u-icon name="setting" color="#0C1935" size="40" @click="tuichu"></u-icon> -->
  37. <!-- <img src="../../static/my/tc.png" alt="" @click="tuichu"> -->
  38. <!-- </view> -->
  39. </view>
  40. </view>
  41. <!-- 头部结束 -->
  42. <view class="minndle">
  43. <u-grid :border="false" col="4" @click="navigations">
  44. <u-grid-item v-for="(listItem,listIndex) in list" :key="listIndex">
  45. <u-icon :customStyle="{paddingTop:20+'rpx'}" :name="listItem.name" :color="listItem.color"
  46. :size="55"></u-icon>
  47. <text class="grid-text" style="padding-top: 8px;">{{listItem.title}}</text>
  48. </u-grid-item>
  49. </u-grid>
  50. </view>
  51. <!-- 导航栏结束 -->
  52. <view class="middleimgs">
  53. <!-- <img src="@/static/my/xinxi.png" alt=""> -->
  54. <u--image mode="widthFix" :src="srcxinxi" width="750rpx" height="200rpx"></u--image>
  55. </view>
  56. <!-- 中间图片结束 -->
  57. <view class="appcell">
  58. <u-cell-group>
  59. <u-cell title="修改密码" :isLink="true" @click="changepass">
  60. <u-icon slot="icon" size="35" name="setting"></u-icon>
  61. </u-cell>
  62. <u-cell title="一键退出" :isLink="true" @click="tuichu">
  63. <u-icon slot="icon" size="35" name="close-circle"></u-icon>
  64. </u-cell>
  65. </u-cell-group>
  66. </view>
  67. <u-modal :show="showtc" content='请问您是否确定一键退出?' :showConfirmButton='true' :showCancelButton='true'
  68. @confirm="confirmtc" @cancel='canceltc'></u-modal>
  69. </view>
  70. </template>
  71. <script>
  72. import {
  73. Static
  74. } from "vue"
  75. export default {
  76. data() {
  77. return {
  78. fileList: [],
  79. showtc: false,
  80. src: require('@/static/my/tx.png'),
  81. srcxinxi: require('@/static/my/xinxi.png'),
  82. information1: 34,
  83. information2: 100,
  84. list: [{
  85. name: 'account',
  86. title: '个人信息',
  87. color: "#30D3A2"
  88. },
  89. {
  90. name: 'list',
  91. title: '我的派发',
  92. color: "#09C700"
  93. },
  94. {
  95. name: 'order',
  96. title: '我的任务',
  97. color: "#FF9C27"
  98. },
  99. {
  100. name: 'more-circle',
  101. title: '意见建议',
  102. color: "#F7B717"
  103. },
  104. ],
  105. }
  106. },
  107. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  108. onLoad() {},
  109. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  110. onReady() {},
  111. //监听页面隐藏
  112. onHide() {},
  113. //监听窗口尺寸变化
  114. onResize() {},
  115. //监听页面卸载
  116. onUnload() {},
  117. //监听用户下拉动作,一般用于下拉刷新
  118. onPullDownRefresh() {},
  119. methods: {
  120. // 新增图片
  121. async afterRead(event) {
  122. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  123. let lists = [].concat(event.file)
  124. console.log('111111111111111111', lists)
  125. let fileListLen = this.fileList.length
  126. lists.map((item) => {
  127. this.fileList.push({
  128. ...item,
  129. status: 'uploading',
  130. message: '上传中'
  131. })
  132. })
  133. for (let i = 0; i < lists.length; i++) {
  134. const result = await this.uploadFilePromise(lists[i].url)
  135. let item = this.fileList[fileListLen]
  136. this.fileList.splice(fileListLen, 1, Object.assign(item, {
  137. status: 'success',
  138. message: '',
  139. url: result
  140. }))
  141. fileListLen++
  142. }
  143. },
  144. uploadFilePromise(url) {
  145. return new Promise((resolve, reject) => {
  146. let a = uni.uploadFile({
  147. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  148. filePath: url,
  149. name: 'file',
  150. formData: {
  151. user: 'test'
  152. },
  153. success: (res) => {
  154. setTimeout(() => {
  155. resolve(res.data.data)
  156. }, 1000)
  157. }
  158. });
  159. })
  160. },
  161. navigations(e) {
  162. if (e == 0) {
  163. uni.navigateTo({
  164. url: 'Personalinformation/Personalinformation'
  165. })
  166. } else if (e == 1) {
  167. uni.navigateTo({
  168. url: 'Mydistribution/Mydistribution'
  169. })
  170. } else if (e == 2) {
  171. uni.navigateTo({
  172. url: 'Mytask/Mytask'
  173. })
  174. } else if (e == 3) {
  175. uni.navigateTo({
  176. url: 'Commentssuggestions/Commentssuggestions'
  177. })
  178. }
  179. },
  180. changepass(){
  181. uni.navigateTo({
  182. url: 'Changepassword/Changepassword'
  183. })
  184. },
  185. tuichu() {
  186. this.showtc = true;
  187. },
  188. confirmtc() {
  189. this.showtc = false;
  190. switch (uni.getSystemInfoSync().platform) {
  191. case 'android':
  192. plus.runtime.quit();
  193. break;
  194. case 'ios':
  195. plus.ios.import('UIApplication').sharedApplication().performSelector('exit');
  196. break;
  197. }
  198. },
  199. canceltc() {
  200. this.showtc = false;
  201. },
  202. }
  203. }
  204. </script>
  205. <style lang="scss">
  206. .minndle {
  207. width: 750rpx;
  208. height: 150rpx;
  209. margin: 25rpx 0;
  210. }
  211. .middleimgs {
  212. width: 750rpx;
  213. height: 200rpx;
  214. }
  215. .mainview {
  216. width: 750rpx;
  217. display: flex;
  218. flex-direction: column;
  219. }
  220. .topimg {
  221. width: 750rpx;
  222. height: 350rpx;
  223. display: flex;
  224. align-items: center;
  225. // background: linear-gradient(to right, #96C2FF, #5C8FFF);
  226. background: url("@/static/my/my.png");
  227. background-size: 100% 100%;
  228. }
  229. .touxiang {
  230. width: 180rpx;
  231. height: 180rpx;
  232. display: flex;
  233. align-items: center;
  234. justify-content: center;
  235. img {
  236. width: 120rpx;
  237. height: 120rpx;
  238. cursor: pointer;
  239. }
  240. }
  241. .Username {
  242. flex-grow: 1;
  243. height:350rpx;
  244. // line-height: 150rpx;
  245. // font-size: 40rpx;
  246. // color: #fff;
  247. // font-weight: bold;
  248. display: flex;
  249. justify-content:center;
  250. flex-direction: column;
  251. }
  252. .Username1{
  253. line-height: 100rpx;
  254. height: 100rpx;
  255. font-size: 40rpx;
  256. color: #fff;
  257. font-weight: bold;
  258. span{
  259. padding-left: 15rpx;
  260. font-size: 30rpx;
  261. color: #fff;
  262. }
  263. }
  264. .Username2{
  265. font-size: 20rpx;
  266. color: #333333;
  267. }
  268. .changemm {
  269. height: 250rpx;
  270. width: 250rpx;
  271. display: flex;
  272. justify-content: center;
  273. flex-direction: column;
  274. align-items: flex-end;
  275. }
  276. .message {
  277. display: flex;
  278. justify-content: flex-end;
  279. padding-right: 30rpx;
  280. }
  281. .wdmessage {
  282. font-size: 30rpx;
  283. color: #fff;
  284. padding-right: 10rpx;
  285. }
  286. .messagenumber {
  287. padding-top: 6rpx;
  288. width: 70rpx;
  289. }
  290. .setdata {
  291. padding-top: 15rpx;
  292. img {
  293. width: 50rpx;
  294. height: 50rpx;
  295. }
  296. }
  297. </style>