mine.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  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)"
  6. :list="[`${userinfo.certification_type == 1 ? config.intermediary_explain : config.people_explain}`]"
  7. padding="0" :volume-icon="false" color="#fff" font-size="22"></u-notice-bar>
  8. </view>
  9. <view class="user-box u-flex">
  10. <image v-if="userinfo.headimg" :src="userinfo.headimg" class="user-head" mode=""></image>
  11. <image v-else src="../../static/images/head.png" class="user-head" mode=""></image>
  12. <view class="user-center u-flex-1 u-flex-col u-col-top">
  13. <text class="text1" v-if="userinfo.name">{{userinfo.name}}</text>
  14. <button class="text1" @getphonenumber="login" v-else @click="tologin">点击进行登录</button>
  15. <text class="text2" v-if="userinfo.certification_type == 0">未认证</text>
  16. <text class="text2" v-if="userinfo.certification_type == 1">中介经纪人</text>
  17. <text class="text2" v-if="userinfo.certification_type == 2">全民经纪人</text>
  18. </view>
  19. <u-icon name="edit-pen-fill" color="#fff" @click="toinfo" size="36"></u-icon>
  20. </view>
  21. <!-- <view class="yongjin-box">
  22. <view class="price u-flex u-row-center">
  23. <image src="../../static/images/qianbao.png" class="img" mode=""></image>
  24. <view class="text u-flex-col">
  25. <text>{{userinfo.balance || '0.00'}}</text>
  26. <text>积分总额(元)</text>
  27. </view>
  28. </view>
  29. <view class="mingxi u-flex u-row-between">
  30. <text class="u-flex-1" style="border-right: 2rpx solid #F5F5F5;" @click="toyongjin">积分明细</text>
  31. <text class="u-flex-1" @click="toxieyi">积分说明</text>
  32. </view>
  33. </view> -->
  34. <view class="yongjin-box">
  35. <view class="price">
  36. <view class="" style="display:flex;justify-content: space-between;">
  37. <view class="" style="display:flex;">
  38. <image style="width: 36rpx;height:36rpx;" src="../../static/images/jifen.png" mode=""></image>
  39. <view class="">
  40. <text class="yongjin-box">我的积分</text>
  41. </view>
  42. <image style="width: 36rpx;height:36rpx;" src="../../static/images/explain.png" mode=""></image>
  43. </view>
  44. <view class="">
  45. <text class="jffont" @click="tojifen">积分明细</text>
  46. <image style="width: 24rpx;height: 24rpx;margin-right: 10rpx;"
  47. src="../../static/images/nextto.png" mode=""></image>
  48. </view>
  49. </view>
  50. <view class="" style="margin-top: 40rpx;display: flex;justify-content: space-around;">
  51. <view class="">
  52. <text style="font-size: 48rpx;font-weight: 800;">{{userinfo.integral || '0.00'}}</text>
  53. <view class="font">
  54. <text>积分总额</text>
  55. </view>
  56. </view>
  57. <view class="" style="margin-left: 200rpx;">
  58. <text style="font-size: 48rpx;font-weight: 800;">{{userinfo.now_month_integral|| '0.00'}}</text>
  59. <view class="font">
  60. <text>本月积分</text>
  61. </view>
  62. </view>
  63. </view>
  64. <view v-if="userinfo.is_integral_hint==1" class="forward"
  65. style="margin-top: 20rpx;border-top: 2rpx solid #F6F6F6;padding: 24rpx 20rpx 0;">
  66. <view class="u-flex">
  67. <image style="width: 32rpx;height: 32rpx;margin-right: 12rpx;"
  68. src="../../static/images/index-img2.png" mode=""></image>
  69. <!-- <view class="" style="width: 500rpx;height: 34rpx;margin-top: -50rpx;"> -->
  70. <uni-notice-bar background-color="#fff" font-size="12" color="#000" style="width: 500rpx;"
  71. scrollable single text="您当月积分0,若本月无积分入账,历史积分将全部清零"></uni-notice-bar>
  72. <!-- </view> -->
  73. <button class="btn" open-type="share">
  74. 转发赚积分
  75. </button>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. <!-- 佣金总额 -->
  81. <view class="yongjin-box" style="margin-top: 20rpx;">
  82. <view class="price">
  83. <view class="" style="display:flex;justify-content: space-between;">
  84. <view class="" style="display:flex;">
  85. <image style="width: 36rpx;height:36rpx;" src="../../static/images/qianbao.png" mode=""></image>
  86. <view class="">
  87. <text class="yongjin-box">佣金总额(元)</text>
  88. </view>
  89. <image @click='toxieyi' style="width: 36rpx;height:36rpx;" src="../../static/images/explain.png"
  90. mode=""></image>
  91. </view>
  92. <view class="">
  93. <text class="jffont" @click='toyongjin'>佣金明细</text>
  94. <image style="width: 24rpx;height: 24rpx;margin-right: 10rpx;"
  95. src="../../static/images/nextto.png" mode=""></image>
  96. </view>
  97. </view>
  98. <view class="" style="margin-top: 40rpx;margin-left: 50rpx;">
  99. <view class="">
  100. <text style="font-size: 30rpx;font-weight: 800;">¥</text>
  101. <text style="font-size: 48rpx;font-weight: 800;">{{userinfo.balance || '0.00'}}</text>
  102. </view>
  103. </view>
  104. </view>
  105. </view>
  106. <!-- <view class="yongjin-box " style="display: flex;">
  107. <view class="" style="width: 350rpx; border-right: 2px solid #F5F5F5;">
  108. <view class="" style="display:flex;">
  109. <image style="width: 36rpx;height:36rpx;" src="../../static/images/jifen.png" mode=""></image>
  110. <view class="">
  111. <text class="yongjin-box font">积分总额(元)</text>
  112. </view>
  113. <image style="width: 36rpx;height:36rpx;" src="../../static/images/explain.png" mode=""></image>
  114. </view>
  115. <view class="" style="margin-top: 40rpx;display: flex;justify-content: space-between;">
  116. <view class="">
  117. <text style="font-size: 48rpx;font-weight: 800;">{{userinfo.balance || '0.00'}}</text>
  118. </view>
  119. <view class="" style="margin-top: 20rpx;">
  120. <text class="jffont" >积分明细</text>
  121. <image style="width: 24rpx;height: 24rpx;margin-right: 10rpx;" src="../../static/images/nextto.png" mode=""></image>
  122. </view>
  123. </view>
  124. </view>
  125. <view class="" style="width: 350rpx;margin-left: 30rpx;">
  126. <view class="" style="display:flex;">
  127. <image style="width: 36rpx;height:36rpx;" src="../../static/images/qianbao.png" mode=""></image>
  128. <view class="">
  129. <text class="yongjin-box font">佣金总额(元)</text>
  130. </view>
  131. <image @click="toxieyi" style="width: 36rpx;height:36rpx;" src="../../static/images/explain.png" mode=""></image>
  132. </view>
  133. <view class="" style="margin-top: 40rpx;display: flex;justify-content: space-between;">
  134. <view class="">
  135. <text style="font-size: 48rpx;font-weight: 800;">{{userinfo.balance || '0.00'}}</text>
  136. </view>
  137. <view class="" style="margin-top: 20rpx;">
  138. <text class="jffont" @click="toyongjin" >佣金明细</text>
  139. <image style="width: 24rpx;height: 24rpx;margin-right: 10rpx;" src="../../static/images/nextto.png" mode=""></image>
  140. </view>
  141. </view>
  142. </view>
  143. </view> -->
  144. <view class="tabs-box u-flex">
  145. <view class="tabs-item u-flex-col u-col-center" @click="tourl(1)"
  146. v-if="(userinfo.certification_type == 1 || userinfo.certification_type == 0) ">
  147. <image src="../../static/images/mine-tabs1.png" mode=""></image>
  148. <text>中介经纪人</text>
  149. </view>
  150. <view class="tabs-item u-flex-col u-col-center" @click="tourl(2)"
  151. v-if="(userinfo.certification_type == 2 || userinfo.certification_type == 0) ">
  152. <image src="../../static/images/mine-tabs2.png" mode=""></image>
  153. <text>全民经纪人</text>
  154. </view>
  155. <view class="tabs-item u-flex-col u-col-center" @click="tobaobei" v-if="config.report_switch == 1">
  156. <image src="../../static/images/mine-tabs3.png" mode=""></image>
  157. <text>我的报备</text>
  158. </view>
  159. <!-- <navigator target="miniProgram" app-id="wx43a84d2ad51cf509" class="tabs-item u-flex-col u-col-center">
  160. <image src="../../static/images/yewu.png" mode=""></image>
  161. <text>业务端</text>
  162. </navigator> -->
  163. <view @click="openmin" class="tabs-item u-flex-col u-col-center">
  164. <image src="../../static/images/yewu.png" mode=""></image>
  165. <text>业务端</text>
  166. </view>
  167. </view>
  168. <view class="setting-box u-flex u-row-between" @click="tosetting">
  169. <text>系统设置</text>
  170. <u-icon name="arrow-right"></u-icon>
  171. </view>
  172. <gf-tabbar></gf-tabbar>
  173. </view>
  174. </template>
  175. <script>
  176. import {
  177. mapState
  178. } from "vuex"
  179. export default {
  180. //分享
  181. onShareAppMessage(res) {
  182. this.$u.get('/api/Member/transmit').then(res => {
  183. this.getuser()
  184. })
  185. return {
  186. title: '晨照选房',//分享时标题名字
  187. path: 'pages/index/index', // 全局分享的路径,比如 首页
  188. imageUrl: '../../static/logo.jpg',
  189. }
  190. },
  191. //分享朋友圈
  192. onShareTimeline(res) {
  193. this.$u.get('/api/Member/transmit').then(res => {
  194. this.getuser()
  195. })
  196. return {
  197. title: '晨照选房',//分享时标题名字
  198. path: 'pages/index/index', // 全局分享的路径,比如 首页
  199. imageUrl: '../../static/logo.jpg',
  200. }
  201. },
  202. data() {
  203. return {
  204. userinfo: {
  205. certification_type: 0
  206. }
  207. }
  208. },
  209. onLoad() {
  210. },
  211. computed: {
  212. ...mapState(['config', 'defaultcity'])
  213. },
  214. onShow() {
  215. console.log(this.config);
  216. if (uni.getStorageSync("token")) {
  217. this.getuser()
  218. } else {
  219. this.userinfo = {
  220. certification_type: 0,
  221. }
  222. }
  223. },
  224. methods: {
  225. openmin() {
  226. //#ifdef MP-WEIXIN
  227. uni.navigateToMiniProgram({
  228. appId: 'wx43a84d2ad51cf509', //跳转的小程序的aooId
  229. path: '', //如果这里不填,默认是跳转到对方小程序的主页面
  230. extraData: { //需要传给对方小程序的数据
  231. 'data1': 'test'
  232. },
  233. success(res) {
  234. console.log(111);
  235. }
  236. })
  237. // #endif
  238. //#ifdef MP-TOUTIAO
  239. tt.navigateToMiniProgram({
  240. appId: "wx43a84d2ad51cf509",
  241. success: function() {
  242. },
  243. fail: function(e) {
  244. console.log(e);
  245. },
  246. });
  247. //#endif
  248. },
  249. tologin() {
  250. uni.navigateTo({
  251. url: "/pages/mine/login"
  252. })
  253. },
  254. toxieyi() {
  255. uni.navigateTo({
  256. url: "./xieyi?type=4"
  257. })
  258. },
  259. tourl(type) {
  260. if (this.$islogin()) return
  261. uni.navigateTo({
  262. url: "/pages/index/broker?type=" + type
  263. })
  264. },
  265. login(e) {
  266. if (e.detail.code) {
  267. var phoneCode = e.detail.code
  268. uni.login({
  269. success: (code) => {
  270. this.$u.post('/api/Login/login', {
  271. code: code.code
  272. }).then(res => {
  273. if (res.code == 1) {
  274. uni.setStorageSync("token", res.data.token)
  275. if (!res.data.phone || 1) {
  276. this.$u.post('/api/Member/bind_Phone', {
  277. code: phoneCode
  278. }).then(res => {
  279. if (res.code == 1) {
  280. this.$u.toast("登录成功")
  281. this.$u.post('/api/Member/member_info').then(
  282. res => {
  283. uni.setStorageSync("hx_username",
  284. res.data.hx_username)
  285. this.$WebIM.conn.open({
  286. user: res.data.hx_username,
  287. pwd: "888888",
  288. }).then(() => {
  289. console.log(
  290. "login success"
  291. );
  292. }).catch((reason) => {
  293. console.log(
  294. "login fail",
  295. reason);
  296. });
  297. })
  298. this.setcity()
  299. this.getuser()
  300. } else {
  301. this.$u.toast(res.msg)
  302. uni.removeStorageSync('token')
  303. }
  304. })
  305. } else {
  306. this.$u.toast("登录成功")
  307. this.getuser()
  308. }
  309. } else {
  310. this.$u.toast(res.msg)
  311. }
  312. })
  313. }
  314. })
  315. }
  316. },
  317. setcity() {
  318. this.$u.post('/api/Index/location', {
  319. longitude: this.defaultcity.userLocation.split(',')[0],
  320. latitude: this.defaultcity.userLocation.split(',')[1],
  321. city_name: this.defaultcity.city
  322. })
  323. },
  324. getuser() {
  325. this.$u.post('/api/Member/member_info').then(res => {
  326. uni.setStorageSync("name", res.data.name)
  327. uni.setStorageSync("headimg", res.data.headimg)
  328. this.userinfo = res.data
  329. })
  330. },
  331. tosetting() {
  332. if (this.$islogin()) return
  333. uni.navigateTo({
  334. url: "./setting"
  335. })
  336. },
  337. tobaobei() {
  338. if (this.$islogin()) return
  339. uni.navigateTo({
  340. url: "./baobei-list"
  341. })
  342. },
  343. toyongjin() {
  344. if (this.$islogin()) return
  345. uni.navigateTo({
  346. url: "./yongjin"
  347. })
  348. },
  349. tojifen() {
  350. if (this.$islogin()) return
  351. uni.navigateTo({
  352. url: "./jifen"
  353. })
  354. },
  355. toinfo() {
  356. if (this.$islogin()) return
  357. uni.navigateTo({
  358. url: "./userinfo"
  359. })
  360. }
  361. }
  362. }
  363. </script>
  364. <style lang="scss">
  365. page {
  366. background-color: #F6F6F6;
  367. }
  368. .mine {
  369. position: relative;
  370. z-index: 1;
  371. .setting-box {
  372. width: 702rpx;
  373. height: 82rpx;
  374. background: #FFFFFF;
  375. border-radius: 20rpx;
  376. margin: 0 auto;
  377. padding: 0 24rpx;
  378. font-size: 24rpx;
  379. font-weight: 400;
  380. color: #333333;
  381. }
  382. .tabs-box {
  383. width: 702rpx;
  384. height: 218rpx;
  385. background: #FFFFFF;
  386. border-radius: 20rpx;
  387. margin: 20rpx auto;
  388. .tabs-item {
  389. width: 25%;
  390. image {
  391. width: 84rpx;
  392. height: 84rpx;
  393. margin-bottom: 20rpx;
  394. border-radius: 20rpx;
  395. }
  396. text {
  397. font-size: 24rpx;
  398. font-family: PingFangSC-Regular, PingFang SC;
  399. font-weight: 400;
  400. color: #131415;
  401. }
  402. }
  403. }
  404. .yongjin-box {
  405. width: 702rpx;
  406. background: #FFFFFF;
  407. border-radius: 20rpx;
  408. margin: 0 auto;
  409. // padding: 0 50rpx;
  410. .btn {
  411. width: 132rpx;
  412. height: 52rpx;
  413. background: #1F7EFF;
  414. border-radius: 10rpx;
  415. color: #fff;
  416. line-height: 52rpx;
  417. padding: 0;
  418. font-size: 22rpx;
  419. font-family: PingFangSC-Medium, PingFang SC;
  420. font-weight: 500;
  421. }
  422. .mingxi {
  423. height: 82rpx;
  424. text-align: center;
  425. font-size: 24rpx;
  426. font-family: PingFangSC-Regular, PingFang SC;
  427. font-weight: 400;
  428. color: #333333;
  429. text {
  430. text-align: center;
  431. line-height: 82rpx;
  432. }
  433. }
  434. .price {
  435. min-height: 226rpx;
  436. border-bottom: 2rpx solid rgba(245, 245, 245, 1);
  437. padding: 34rpx 20rpx;
  438. .forward {
  439. ::v-deep .uni-noticebar {
  440. padding-top: 0 !important;
  441. padding-bottom: 0 !important;
  442. margin: 0 !important;
  443. }
  444. }
  445. .font {
  446. width: 96rpx;
  447. height: 34rpx;
  448. font-size: 24rpx;
  449. font-family: PingFangSC-Regular, PingFang SC;
  450. font-weight: 400;
  451. color: #888888;
  452. line-height: 34rpx;
  453. }
  454. .jffont {
  455. width: 112rpx;
  456. height: 40rpx;
  457. font-size: 28rpx;
  458. font-family: PingFangSC-Regular, PingFang SC;
  459. font-weight: 400;
  460. color: #666666;
  461. line-height: 40rpx;
  462. }
  463. .img {
  464. width: 94rpx;
  465. height: 94rpx;
  466. margin-right: 34rpx;
  467. }
  468. .text {
  469. text:first-child {
  470. font-size: 48rpx;
  471. font-family: PingFangSC-Medium, PingFang SC;
  472. font-weight: 500;
  473. color: #333333;
  474. }
  475. text:last-child {
  476. font-size: 24rpx;
  477. font-family: PingFangSC-Regular, PingFang SC;
  478. font-weight: 400;
  479. color: #999999;
  480. }
  481. }
  482. }
  483. }
  484. .user-box {
  485. padding: 48rpx 24rpx 82rpx 24rpx;
  486. .user-center {
  487. margin: 0 32rpx;
  488. .text1 {
  489. font-size: 32rpx;
  490. font-family: PingFangSC-Medium, PingFang SC;
  491. font-weight: 500;
  492. color: #FFFFFF;
  493. margin: 0 0 20rpx 0;
  494. padding: 0;
  495. border: none;
  496. background-color: rgba(0, 0, 0, 0);
  497. line-height: 1.5;
  498. text-align: left;
  499. }
  500. .text1::after {
  501. margin: 0;
  502. padding: 0;
  503. border: none;
  504. }
  505. .text2 {
  506. padding: 0 20rpx;
  507. min-width: 102rpx;
  508. line-height: 40rpx;
  509. border-radius: 24rpx;
  510. border: 2rpx solid #FFFFFF;
  511. text-align: center;
  512. font-size: 24rpx;
  513. font-family: PingFangSC-Regular, PingFang SC;
  514. font-weight: 400;
  515. color: #FFFFFF;
  516. }
  517. }
  518. .user-head {
  519. width: 120rpx;
  520. height: 120rpx;
  521. border-radius: 100rpx;
  522. }
  523. }
  524. .mine-tips {
  525. width: 750rpx;
  526. line-height: 56rpx;
  527. background: rgba(255, 255, 255, 0.1);
  528. padding: 0 24rpx;
  529. font-size: 22rpx;
  530. font-family: PingFangSC-Regular, PingFang SC;
  531. font-weight: 400;
  532. color: #FFFFFF;
  533. }
  534. .index-bg {
  535. width: 750rpx;
  536. height: 556rpx;
  537. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
  538. position: absolute;
  539. top: 1;
  540. left: 0;
  541. z-index: -1;
  542. }
  543. }
  544. </style>