my.vue 8.3 KB

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