mine.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. <template>
  2. <view class="mine">
  3. <view class="index-bg"></view>
  4. <view class="mine-tips" v-if="userinfo.certification_type != 0">
  5. <u-notice-bar mode="horizontal" bg-color="rgba(0,0,0,0)" :list="[`${userinfo.certification_type == 1 ? config.intermediary_explain : config.people_explain}`]" padding="0" :volume-icon="false" color="#fff" font-size="22"></u-notice-bar>
  6. </view>
  7. <view class="user-box u-flex">
  8. <image v-if="userinfo.headimg" :src="userinfo.headimg" class="user-head" mode=""></image>
  9. <image v-else src="../../static/images/head.png" class="user-head" mode=""></image>
  10. <view class="user-center u-flex-1 u-flex-col u-col-top">
  11. <text class="text1" v-if="userinfo.name">{{userinfo.name}}</text>
  12. <button open-type="getPhoneNumber" class="text1" @getphonenumber="login" v-else>点击进行登录</button>
  13. <text class="text2" v-if="userinfo.certification_type == 0">未认证</text>
  14. <text class="text2" v-if="userinfo.certification_type == 1">中介经纪人</text>
  15. <text class="text2" v-if="userinfo.certification_type == 2">全民经纪人</text>
  16. </view>
  17. <u-icon name="edit-pen-fill" color="#fff" @click="toinfo" size="36"></u-icon>
  18. </view>
  19. <view class="yongjin-box">
  20. <view class="price u-flex u-row-center">
  21. <image src="../../static/images/qianbao.png" class="img" mode=""></image>
  22. <view class="text u-flex-col">
  23. <text>{{userinfo.balance || '0.00'}}</text>
  24. <text>佣金总额(元)</text>
  25. </view>
  26. </view>
  27. <view class="mingxi" @click="toyongjin">
  28. 佣金明细
  29. </view>
  30. </view>
  31. <view class="tabs-box u-flex">
  32. <view class="tabs-item u-flex-col u-col-center" @click="tourl(1)" v-if="(userinfo.certification_type == 1 || userinfo.certification_type == 0) && config.intermediary_show == 1">
  33. <image src="../../static/images/mine-tabs1.png" mode=""></image>
  34. <text>中介经纪人</text>
  35. </view>
  36. <view class="tabs-item u-flex-col u-col-center" @click="tourl(2)" v-if="(userinfo.certification_type == 2 || userinfo.certification_type == 0) && config.people_show == 1">
  37. <image src="../../static/images/mine-tabs2.png" mode=""></image>
  38. <text>全民经纪人</text>
  39. </view>
  40. <view class="tabs-item u-flex-col u-col-center" @click="tobaobei">
  41. <image src="../../static/images/mine-tabs3.png" mode=""></image>
  42. <text>我的报备</text>
  43. </view>
  44. <view class="tabs-item1 u-flex-col u-col-center" @click="toyouhui">
  45. <div></div>
  46. <!-- <image src="../../static/images/bianji.png" mode=""></image> -->
  47. <text>优惠券</text>
  48. </view>
  49. </view>
  50. <view class="setting-box u-flex u-row-between" @click="tosetting">
  51. <text>系统设置</text>
  52. <u-icon name="arrow-right"></u-icon>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import {
  58. mapState
  59. } from "vuex"
  60. export default {
  61. data() {
  62. return {
  63. userinfo: {
  64. certification_type: 0
  65. }
  66. }
  67. },
  68. onLoad() {
  69. },
  70. computed: {
  71. ...mapState(['config'])
  72. },
  73. onShow() {
  74. if (uni.getStorageSync("token")) {
  75. this.getuser()
  76. } else {
  77. this.userinfo = {
  78. certification_type: 0
  79. }
  80. }
  81. },
  82. methods: {
  83. tourl(type) {
  84. if (this.$islogin()) return
  85. uni.navigateTo({
  86. url: "/pages/index/broker?type=" + type
  87. })
  88. },
  89. login(e) {
  90. if (e.detail.code) {
  91. var phoneCode = e.detail.code
  92. uni.login({
  93. success: (code) => {
  94. this.$u.post('/api/Login/login', {
  95. code: code.code
  96. }).then(res => {
  97. if (res.code == 1) {
  98. uni.setStorageSync("token", res.data.token)
  99. if (!res.data.phone || 1) {
  100. this.$u.post('/api/Member/bind_Phone', {
  101. code: phoneCode
  102. }).then(res => {
  103. if (res.code == 1) {
  104. this.$u.toast("登录成功")
  105. this.$u.post('/api/Member/member_info').then(res => {
  106. uni.setStorageSync("hx_username", res.data.hx_username)
  107. this.$WebIM.conn.open({
  108. user: res.data.hx_username,
  109. pwd: "999999",
  110. }).then(() => {
  111. console.log("login success");
  112. }).catch((reason) => {
  113. console.log("login fail", reason);
  114. });
  115. })
  116. this.getuser()
  117. } else {
  118. this.$u.toast(res.msg)
  119. }
  120. })
  121. } else {
  122. this.$u.toast("登录成功")
  123. this.getuser()
  124. }
  125. } else {
  126. this.$u.toast(res.msg)
  127. }
  128. })
  129. }
  130. })
  131. }
  132. },
  133. getuser() {
  134. this.$u.post('/api/Member/member_info').then(res => {
  135. uni.setStorageSync("name", res.data.name)
  136. uni.setStorageSync("headimg", res.data.headimg)
  137. this.userinfo = res.data
  138. })
  139. },
  140. tosetting() {
  141. if (this.$islogin()) return
  142. uni.navigateTo({
  143. url: "./setting"
  144. })
  145. },
  146. toyouhui() {
  147. if (this.$islogin()) return
  148. uni.navigateTo({
  149. url: "./youhui"
  150. })
  151. },
  152. tobaobei() {
  153. if (this.$islogin()) return
  154. uni.navigateTo({
  155. url: "./baobei-list"
  156. })
  157. },
  158. toyongjin() {
  159. if (this.$islogin()) return
  160. uni.navigateTo({
  161. url: "./yongjin"
  162. })
  163. },
  164. toinfo() {
  165. if (this.$islogin()) return
  166. uni.navigateTo({
  167. url: "./userinfo"
  168. })
  169. }
  170. }
  171. }
  172. </script>
  173. <style lang="scss">
  174. page {
  175. background-color: #F6F6F6;
  176. }
  177. .mine {
  178. position: relative;
  179. z-index: 1;
  180. .setting-box {
  181. width: 702rpx;
  182. height: 82rpx;
  183. background: #FFFFFF;
  184. border-radius: 20rpx;
  185. margin: 0 auto;
  186. padding: 0 24rpx;
  187. font-size: 24rpx;
  188. font-weight: 400;
  189. color: #333333;
  190. }
  191. .tabs-box {
  192. width: 702rpx;
  193. height: 218rpx;
  194. background: #FFFFFF;
  195. border-radius: 20rpx;
  196. margin: 20rpx auto;
  197. .tabs-item {
  198. width: 25%;
  199. image {
  200. width: 84rpx;
  201. height: 84rpx;
  202. margin-bottom: 20rpx;
  203. border-radius: 20rpx;
  204. }
  205. text {
  206. font-size: 24rpx;
  207. font-family: PingFangSC-Regular, PingFang SC;
  208. font-weight: 400;
  209. color: #131415;
  210. }
  211. }
  212. .tabs-item1 {
  213. width: 25%;
  214. div{
  215. width: 84rpx;
  216. height: 84rpx;
  217. background: url(../../static/images/youhui.png) no-repeat;
  218. background-size: cover;
  219. margin-bottom: 20rpx;
  220. border-radius: 20rpx;
  221. }
  222. text {
  223. font-size: 24rpx;
  224. font-family: PingFangSC-Regular, PingFang SC;
  225. font-weight: 400;
  226. color: #131415;
  227. }
  228. }
  229. }
  230. .yongjin-box {
  231. width: 702rpx;
  232. background: #FFFFFF;
  233. border-radius: 20rpx;
  234. margin: 0 auto;
  235. padding: 0 50rpx;
  236. .mingxi {
  237. line-height: 82rpx;
  238. text-align: center;
  239. font-size: 24rpx;
  240. font-family: PingFangSC-Regular, PingFang SC;
  241. font-weight: 400;
  242. color: #333333;
  243. }
  244. .price {
  245. height: 226rpx;
  246. border-bottom: 2rpx solid rgba(245, 245, 245, 1);
  247. .img {
  248. width: 94rpx;
  249. height: 94rpx;
  250. margin-right: 34rpx;
  251. }
  252. .text {
  253. text:first-child {
  254. font-size: 48rpx;
  255. font-family: PingFangSC-Medium, PingFang SC;
  256. font-weight: 500;
  257. color: #333333;
  258. }
  259. text:last-child {
  260. font-size: 24rpx;
  261. font-family: PingFangSC-Regular, PingFang SC;
  262. font-weight: 400;
  263. color: #999999;
  264. }
  265. }
  266. }
  267. }
  268. .user-box {
  269. padding: 48rpx 24rpx 82rpx 24rpx;
  270. .user-center {
  271. margin: 0 32rpx;
  272. .text1 {
  273. font-size: 32rpx;
  274. font-family: PingFangSC-Medium, PingFang SC;
  275. font-weight: 500;
  276. color: #FFFFFF;
  277. margin: 0 0 20rpx 0;
  278. padding: 0;
  279. border: none;
  280. background-color: rgba(0, 0, 0, 0);
  281. line-height: 1.5;
  282. text-align: left;
  283. }
  284. .text1::after {
  285. margin: 0;
  286. padding: 0;
  287. border: none;
  288. }
  289. .text2 {
  290. padding: 0 20rpx;
  291. min-width: 102rpx;
  292. line-height: 40rpx;
  293. border-radius: 24rpx;
  294. border: 2rpx solid #FFFFFF;
  295. text-align: center;
  296. font-size: 24rpx;
  297. font-family: PingFangSC-Regular, PingFang SC;
  298. font-weight: 400;
  299. color: #FFFFFF;
  300. }
  301. }
  302. .user-head {
  303. width: 120rpx;
  304. height: 120rpx;
  305. border-radius: 100rpx;
  306. }
  307. }
  308. .mine-tips {
  309. width: 750rpx;
  310. line-height: 56rpx;
  311. background: rgba(255, 255, 255, 0.1);
  312. padding: 0 24rpx;
  313. font-size: 22rpx;
  314. font-family: PingFangSC-Regular, PingFang SC;
  315. font-weight: 400;
  316. color: #FFFFFF;
  317. }
  318. .index-bg {
  319. width: 750rpx;
  320. height: 556rpx;
  321. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
  322. position: absolute;
  323. top: 1;
  324. left: 0;
  325. z-index: -1;
  326. }
  327. }
  328. </style>