personal.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  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>
  44. <view class="clear"></view>
  45. </view>
  46. <view class="cmd">
  47. <view class="s_item" @click="go('/pages/personal/bankInfo')">
  48. <text class="icon ic">&#xe69a;</text>
  49. <text class="title">银行卡</text>
  50. <text class="icon arrow">&#xe8f2;</text>
  51. </view>
  52. <view v-if="user.userType==1" class="s_item" @click="go('/pages/personal/myGroup')">
  53. <text class="icon ic">&#xe686;</text>
  54. <text class="title">我的互助组</text>
  55. <text class="icon arrow">&#xe8f2;</text>
  56. </view>
  57. <view class="s_item" @click="go('/pages/login/userAgreement?id=1')">
  58. <text class="icon ic">&#xe662;</text>
  59. <text class="title">用户协议</text>
  60. <text class="icon arrow">&#xe8f2;</text>
  61. </view>
  62. <view class="s_item" @click="go('/pages/login/userAgreement?id=2')">
  63. <text class="icon ic">&#xe643;</text>
  64. <text class="title">隐私协议</text>
  65. <text class="icon arrow">&#xe8f2;</text>
  66. </view>
  67. <!-- <view class="s_item" @click="go('/pages/personal/setting')">
  68. <text class="icon ic">&#xe817;</text>
  69. <text class="title">设置</text>
  70. <text class="icon arrow">&#xe8f2;</text>
  71. </view> -->
  72. <view class="s_item" @click="go('/pages/personal/editPassword')">
  73. <text class="icon ic">&#xe817;</text>
  74. <text class="title">修改密码</text>
  75. <text class="icon arrow">&#xe8f2;</text>
  76. </view>
  77. <view class="s_item " @click="go('/pages/personal/group')" v-if="user.userType==1&&!user.groupName">
  78. <text class="icon ic">&#xe686;</text>
  79. <text class="title" style="color: firebrick;;font-weight: bold;">加入互助组</text>
  80. <text class="icon arrow">&#xe8f2;</text>
  81. </view>
  82. </view>
  83. <button class="btn exit" @click="exitLogin()">退出登录</button>
  84. <button class="btn exit" @click="cancelAccount()">注销账号</button>
  85. </view>
  86. <view class="version">版本号:{{version}}</view>
  87. </view>
  88. </template>
  89. <script>
  90. export default {
  91. data() {
  92. return {
  93. user: {},
  94. version: uni.getAppBaseInfo().appVersion
  95. };
  96. },
  97. onLoad() {
  98. },
  99. onShow() {
  100. this.user = this.getUser();
  101. this.http.request({
  102. url: '/sp-admin/app/AppUser/getAuth',
  103. success: res => {
  104. this.user.auth = res.data.data.auth;
  105. this.user.face = res.data.data.face;
  106. if (this.user.userType == 1) {
  107. this.user.groupName = res.data.data.groupName;
  108. this.user.groupId = res.data.data.groupId;
  109. this.user.leaderName = res.data.data.leaderName;
  110. this.user.leaderPhone = res.data.data.leaderPhone;
  111. if (!this.user.groupName) {
  112. this.$refs.uNotify.show({
  113. top: 10,
  114. type: 'error',
  115. color: '#ffffff',
  116. bgColor: '#ff5500',
  117. message: '未加入互助组,请先加入互助组',
  118. duration: 1000 * 20,
  119. fontSize: 20,
  120. safeAreaInsetTop: true
  121. })
  122. return;
  123. }
  124. }
  125. uni.setStorageSync('info', this.user);
  126. }
  127. });
  128. },
  129. methods: {
  130. makePhoneCall(phone) {
  131. uni.makePhoneCall({
  132. phoneNumber: phone
  133. });
  134. },
  135. order() {
  136. if (!this.hasAuth()) {
  137. uni.navigateTo({
  138. url: '/pages/authentication/index'
  139. });
  140. return;
  141. }
  142. //组长
  143. if (this.user.userType == 2) {
  144. uni.navigateTo({
  145. url: 'user'
  146. });
  147. }
  148. //外籍商户
  149. if (this.user.userType == 5) {
  150. uni.navigateTo({
  151. url: '/pages/market/one/merchant/order/list'
  152. });
  153. }
  154. //收购商
  155. if (this.user.userType == 3) {
  156. uni.navigateTo({
  157. url: '/pages/market/two/purchaser/order/list'
  158. });
  159. }
  160. },
  161. go(url) {
  162. if (!this.hasAuth() && this.user.userType == 5) {
  163. uni.navigateTo({
  164. url: '/pages/authentication/index'
  165. });
  166. return;
  167. }
  168. if (!this.hasAuth() && this.user.userType == 3) {
  169. uni.navigateTo({
  170. url: '/pages/authentication/purchaser/index'
  171. });
  172. return;
  173. }
  174. uni.navigateTo({
  175. url: url
  176. });
  177. },
  178. exitLogin() {
  179. let param = {
  180. appUserId: this.getUser().id
  181. };
  182. uni.showModal({
  183. title: '提示',
  184. content: '确定注销登录?',
  185. success: res => {
  186. if (res.confirm) {
  187. uni.removeStorageSync('token');
  188. uni.removeStorageSync('info');
  189. uni.removeStorageSync('menu');
  190. uni.redirectTo({
  191. url: '/pages/login/login'
  192. });
  193. this.http.request({
  194. url: '/sp-admin/app/AppUser/logout',
  195. data: param,
  196. success: res => {
  197. }
  198. });
  199. }
  200. }
  201. });
  202. },
  203. cancelAccount() {
  204. let param = {
  205. id: this.getUser().id
  206. };
  207. uni.showModal({
  208. title: '提示',
  209. content: '确定注销账号?',
  210. success: res => {
  211. if (res.confirm) {
  212. uni.removeStorageSync('token');
  213. uni.removeStorageSync('info');
  214. uni.removeStorageSync('menu');
  215. uni.redirectTo({
  216. url: '/pages/login/login'
  217. });
  218. this.http.request({
  219. url: '/sp-admin/app/AppUser/delete',
  220. data: param,
  221. success: res => {}
  222. });
  223. }
  224. }
  225. });
  226. }
  227. }
  228. };
  229. </script>
  230. <style lang="scss">
  231. page {
  232. background-color: #f5f5f5;
  233. }
  234. .my_top {
  235. position: relative;
  236. overflow: hidden;
  237. image {
  238. width: 100%;
  239. }
  240. }
  241. .list {
  242. position: relative;
  243. padding: 0px 20px 10px 20px;
  244. margin-top: -196px;
  245. .user {
  246. background-color: white;
  247. padding: 20px;
  248. border-radius: 8px;
  249. color: $font-c;
  250. .head {
  251. float: left;
  252. width: 55px;
  253. height: 55px;
  254. }
  255. .con {
  256. float: left;
  257. padding-left: 15px;
  258. width: 80%;
  259. .nickName {
  260. font-size: 16px;
  261. font-weight: bold;
  262. }
  263. .tag {
  264. background-color: #6799ad;
  265. color: white;
  266. float: left;
  267. font-size: 13px;
  268. padding: 2px 6px;
  269. border-radius: 5px;
  270. margin-top: 6px;
  271. }
  272. }
  273. .edit {
  274. float: right;
  275. font-size: 20px;
  276. margin-top: 17px;
  277. }
  278. }
  279. }
  280. .exit {
  281. margin-top: 20px;
  282. background-color: white;
  283. color: #f44336;
  284. }
  285. .version {
  286. margin-left: 35%;
  287. position: fixed;
  288. bottom: 70px;
  289. color: #888484;
  290. }
  291. </style>