personal.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <template>
  2. <view>
  3. <u-notify ref="uNotify" message="Hi uView"></u-notify>
  4. <!--头部-->
  5. <view class="my_top">
  6. <image src="../../static/images/top-bg.png" class="bg"></image>
  7. </view>
  8. <view class="list animated fadeInDown">
  9. <!--只有外籍商户和收购商才需要手动认证-->
  10. <view class="message _error" @click="go('/pages/authentication/index')"
  11. v-if="user.userType == 5 && user.auth == 0">
  12. <text class="icon">&#xe64e;</text>
  13. <text>你还未认证,请先认证</text>
  14. <text class="icon" style="float: right">&#xe8f2;</text>
  15. </view>
  16. <view class="message _error" @click="go('/pages/authentication/purchaser/index')"
  17. v-if="user.userType == 3 && user.auth == 0">
  18. <text class="icon">&#xe64e;</text>
  19. <text>你还未认证,请先认证</text>
  20. <text class="icon" style="float: right">&#xe8f2;</text>
  21. </view>
  22. <view class="message _info" @click="go('/pages/face/faceRegister')"
  23. v-if="(user.userType == 1 || user.userType == 2) && user.face == 0">
  24. <text class="icon">&#xe78d;</text>
  25. <text>你还未人脸认证,请先人脸认证</text>
  26. <text class="icon" style="float: right">&#xe8f2;</text>
  27. </view>
  28. <view class="message _info" v-if="(user.userType == 1 || user.userType == 2) && user.face == 1">
  29. <text class="icon">&#xe643;</text>
  30. <text>人脸已认证<text style="color: blue;margin-left: 5px;"></text></text>
  31. </view>
  32. <!--用户信息-->
  33. <view class="user">
  34. <image src="../../static/icon/user.png" mode="widthFix" class="head"></image>
  35. <view class="con">
  36. <view class="nickName omit">{{user.name}}({{ user.phone }})</view>
  37. <view class="tag" v-if="user.userType == 1">边民</view>
  38. <view class="tag" v-if="user.userType == 2">组长</view>
  39. <view class="tag" v-if="user.userType == 3">收购商</view>
  40. <view class="tag" v-if="user.userType == 4">司机</view>
  41. <view class="tag" v-if="user.userType == 5">商户</view>
  42. <view class="tag" v-if="user.userType == 6">合作社</view>
  43. <view class="tag" style="margin-left: 0.5rem;" v-if="user.userType == 1" @click="go('/pages/wallet/wallet')">服务点数: {{ user.wallet }}</view>
  44. </view>
  45. <view class="clear"></view>
  46. </view>
  47. <view class="cmd">
  48. <view class="s_item" @click="go('/pages/personal/bankInfo')">
  49. <text class="icon ic">&#xe69a;</text>
  50. <text class="title">银行卡</text>
  51. <text class="icon arrow">&#xe8f2;</text>
  52. </view>
  53. <view v-if="user.userType==1" class="s_item" @click="go('/pages/personal/myGroup')">
  54. <text class="icon ic">&#xe686;</text>
  55. <text class="title">我的互助组</text>
  56. <text class="icon arrow">&#xe8f2;</text>
  57. </view>
  58. <view class="s_item" @click="go('/pages/login/userAgreement?id=1')">
  59. <text class="icon ic">&#xe662;</text>
  60. <text class="title">用户协议</text>
  61. <text class="icon arrow">&#xe8f2;</text>
  62. </view>
  63. <view class="s_item" @click="go('/pages/login/userAgreement?id=2')">
  64. <text class="icon ic">&#xe643;</text>
  65. <text class="title">隐私协议</text>
  66. <text class="icon arrow">&#xe8f2;</text>
  67. </view>
  68. <!-- <view class="s_item" @click="go('/pages/personal/setting')">
  69. <text class="icon ic">&#xe817;</text>
  70. <text class="title">设置</text>
  71. <text class="icon arrow">&#xe8f2;</text>
  72. </view> -->
  73. <view class="s_item" @click="go('/pages/personal/editPassword')">
  74. <text class="icon ic">&#xe817;</text>
  75. <text class="title">修改密码</text>
  76. <text class="icon arrow">&#xe8f2;</text>
  77. </view>
  78. <view class="s_item " @click="go('/pages/personal/group')" v-if="user.userType==1&&!user.groupName">
  79. <text class="icon ic">&#xe686;</text>
  80. <text class="title" style="color: firebrick;;font-weight: bold;">加入互助组</text>
  81. <text class="icon arrow">&#xe8f2;</text>
  82. </view>
  83. <view class="s_item ">
  84. <text class="icon ic">&#xe622;</text>
  85. <text class="title">APP版本 {{version}}</text>
  86. </view>
  87. </view>
  88. <button class="btn exit" @click="exitLogin()">退出登录</button>
  89. <button class="btn exit" @click="cancelAccount()">注销账号</button>
  90. </view>
  91. <view class="version">
  92. <view>
  93. <view>Copyright@2024-2030</view>
  94. <view>天保国际物流投资有限公司版权所有</view>
  95. </view>
  96. </view>
  97. </view>
  98. </template>
  99. <script>
  100. export default {
  101. data() {
  102. return {
  103. user: {},
  104. version: uni.getAppBaseInfo().appVersion
  105. };
  106. },
  107. onLoad() {
  108. },
  109. onShow() {
  110. this.user = this.getUser();
  111. this.http.request({
  112. url: '/sp-admin/app/AppUser/getAuth',
  113. success: res => {
  114. this.user.auth = res.data.data.auth;
  115. this.user.face = res.data.data.face;
  116. if (this.user.userType == 1) {
  117. this.user.groupName = res.data.data.groupName;
  118. this.user.groupId = res.data.data.groupId;
  119. this.user.leaderName = res.data.data.leaderName;
  120. this.user.leaderPhone = res.data.data.leaderPhone;
  121. if (!this.user.groupName) {
  122. this.$refs.uNotify.show({
  123. top: 10,
  124. type: 'error',
  125. color: '#ffffff',
  126. bgColor: '#ff5500',
  127. message: '未加入互助组,请先加入互助组',
  128. duration: 1000 * 20,
  129. fontSize: 20,
  130. safeAreaInsetTop: true
  131. })
  132. return;
  133. }
  134. }
  135. uni.setStorageSync('info', this.user);
  136. }
  137. });
  138. };
  139. if(this.user.userType===1){
  140. this.http.request({
  141. url: '/level-one-server/app/TbPeople/getById',
  142. data: { id: this.user.fkId },
  143. success: res => {
  144. this.user.wallet = res.data.data.wallet;
  145. uni.setStorageSync('info', this.user);
  146. }
  147. });
  148. },
  149. methods: {
  150. makePhoneCall(phone) {
  151. uni.makePhoneCall({
  152. phoneNumber: phone
  153. });
  154. },
  155. order() {
  156. if (!this.hasAuth()) {
  157. uni.navigateTo({
  158. url: '/pages/authentication/index'
  159. });
  160. return;
  161. }
  162. //组长
  163. if (this.user.userType == 2) {
  164. uni.navigateTo({
  165. url: 'user'
  166. });
  167. }
  168. //外籍商户
  169. if (this.user.userType == 5) {
  170. uni.navigateTo({
  171. url: '/pages/market/one/merchant/order/list'
  172. });
  173. }
  174. //收购商
  175. if (this.user.userType == 3) {
  176. uni.navigateTo({
  177. url: '/pages/market/two/purchaser/order/list'
  178. });
  179. }
  180. },
  181. go(url) {
  182. if (!this.hasAuth() && this.user.userType == 5) {
  183. uni.navigateTo({
  184. url: '/pages/authentication/index'
  185. });
  186. return;
  187. }
  188. if (!this.hasAuth() && this.user.userType == 3) {
  189. uni.navigateTo({
  190. url: '/pages/authentication/purchaser/index'
  191. });
  192. return;
  193. }
  194. uni.navigateTo({
  195. url: url
  196. });
  197. },
  198. exitLogin() {
  199. let param = {
  200. appUserId: this.getUser().id
  201. };
  202. uni.showModal({
  203. title: '提示',
  204. content: '确定注销登录?',
  205. success: res => {
  206. if (res.confirm) {
  207. uni.removeStorageSync('token');
  208. uni.removeStorageSync('info');
  209. uni.removeStorageSync('menu');
  210. uni.redirectTo({
  211. url: '/pages/login/login'
  212. });
  213. this.http.request({
  214. url: '/sp-admin/app/AppUser/logout',
  215. data: param,
  216. success: res => {
  217. }
  218. });
  219. }
  220. }
  221. });
  222. },
  223. cancelAccount() {
  224. let param = {
  225. id: this.getUser().id
  226. };
  227. uni.showModal({
  228. title: '提示',
  229. content: '确定注销账号?',
  230. success: res => {
  231. if (res.confirm) {
  232. uni.removeStorageSync('token');
  233. uni.removeStorageSync('info');
  234. uni.removeStorageSync('menu');
  235. uni.redirectTo({
  236. url: '/pages/login/login'
  237. });
  238. this.http.request({
  239. url: '/sp-admin/app/AppUser/delete',
  240. data: param,
  241. success: res => {}
  242. });
  243. }
  244. }
  245. });
  246. }
  247. }
  248. };
  249. }
  250. },
  251. methods: {
  252. order() {
  253. if (!this.hasAuth()) {
  254. uni.navigateTo({ url: '/pages/authentication/index' });
  255. return;
  256. }
  257. //组长
  258. if (this.user.userType == 2) {
  259. uni.navigateTo({ url: 'user' });
  260. }
  261. //外籍商户
  262. if (this.user.userType == 5) {
  263. uni.navigateTo({ url: '/pages/market/one/merchant/order/list' });
  264. }
  265. //收购商
  266. if (this.user.userType == 3) {
  267. uni.navigateTo({ url: '/pages/market/two/purchaser/order/list' });
  268. }
  269. },
  270. wallet() {
  271. if (!this.hasAuth() && this.user.userType == 1) {
  272. uni.navigateTo({ url: '/pages/wallet/wallet' });
  273. return;
  274. }
  275. },
  276. go(url) {
  277. if (!this.hasAuth() && this.user.userType == 5) {
  278. uni.navigateTo({ url: '/pages/authentication/index' });
  279. return;
  280. }
  281. if (!this.hasAuth() && this.user.userType == 3) {
  282. uni.navigateTo({ url: '/pages/authentication/purchaser/index' });
  283. return;
  284. }
  285. uni.navigateTo({ url: url });
  286. },
  287. exitLogin() {
  288. let param = {
  289. appUserId: this.getUser().id
  290. };
  291. uni.showModal({
  292. title: '提示',
  293. content: '确定注销登录?',
  294. success: res => {
  295. if (res.confirm) {
  296. uni.removeStorageSync('token');
  297. uni.removeStorageSync('info');
  298. uni.removeStorageSync('menu');
  299. uni.redirectTo({ url: '/pages/login/login' });
  300. this.http.request({
  301. url: '/sp-admin/app/AppUser/logout',
  302. data: param,
  303. success: res => {
  304. }
  305. });
  306. }
  307. }
  308. });
  309. }
  310. }
  311. };
  312. </script>
  313. <style lang="scss">
  314. page {
  315. background-color: #f5f5f5;
  316. }
  317. .my_top {
  318. position: relative;
  319. overflow: hidden;
  320. image {
  321. width: 100%;
  322. }
  323. }
  324. .list {
  325. position: relative;
  326. padding: 0px 20px 10px 20px;
  327. margin-top: -196px;
  328. .user {
  329. background-color: white;
  330. padding: 20px;
  331. border-radius: 8px;
  332. color: $font-c;
  333. .head {
  334. float: left;
  335. width: 55px;
  336. height: 55px;
  337. }
  338. .con {
  339. float: left;
  340. padding-left: 15px;
  341. width: 80%;
  342. .nickName {
  343. font-size: 16px;
  344. font-weight: bold;
  345. }
  346. .tag {
  347. background-color: #6799ad;
  348. color: white;
  349. float: left;
  350. font-size: 13px;
  351. padding: 2px 6px;
  352. border-radius: 5px;
  353. margin-top: 6px;
  354. }
  355. }
  356. .edit {
  357. float: right;
  358. font-size: 20px;
  359. margin-top: 17px;
  360. }
  361. }
  362. }
  363. .exit {
  364. margin-top: 20px;
  365. background-color: white;
  366. color: #f44336;
  367. }
  368. .version {
  369. margin-left: 15%;
  370. position: fixed;
  371. bottom: 25px;
  372. color: #888484;
  373. text-align: center;
  374. }
  375. </style>