index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. <template>
  2. <view class="content">
  3. <view class="swiper-item" style="padding: 0 15px;" v-show="current == 0">
  4. <view class="chart-box">
  5. <canvas canvas-id="chartBox" id="chartBox" class="chart-canvas" force-use-old-canvas="true"></canvas>
  6. </view>
  7. <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="goToTodayEnroll()">查看详情</u-button>
  8. <view class="section-title" style="margin-top: 40px;">
  9. <u-image width="20px" height="10px" :src="sectionIcon"></u-image>
  10. <u-section title="场馆推荐" sub-title="查看更多" font-size="32" :show-line="false" @click="goToVenueList()"></u-section>
  11. </view>
  12. <u-card :show-head="false" :show-foot="false" :border="false" margin="0px">
  13. <view class="class-show-box" slot="body">
  14. <view v-for="(item, index) in videoList" :key="index" class="class-show-card" @click="goToVenueDetail(item)">
  15. <u-image :src="item.url" mode="aspectFill" height="30vw" border-radius="10px"></u-image>
  16. <view class="class-show-name">{{item.name}}</view>
  17. </view>
  18. </view>
  19. </u-card>
  20. </view>
  21. <view class="swiper-item" v-show="current == 1">
  22. <view class="enroll-fix-box">
  23. <view class="enroll-button" @click="goToAddForm('enrolledForm')">
  24. <view class="enroll-img">
  25. <u-image :src="enrolledIcon" mode="aspectFit" width="34px" height="34px"></u-image>
  26. </view>
  27. <view class="enroll-text">已报名</view>
  28. </view>
  29. <view class="enroll-button" @click="goToAddForm('intentionForm')">
  30. <view class="enroll-img">
  31. <u-image :src="intentionIcon" mode="aspectFit" width="34px" height="34px"></u-image>
  32. </view>
  33. <view class="enroll-text">有意向</view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="swiper-item" v-show="current == 2">
  38. <view class="user-info">
  39. <view class="user-data">
  40. <view class="user-name">{{userData.nickName}}</view>
  41. <view class="user-phone">{{userData.phone}}</view>
  42. </view>
  43. <view class="user-img">
  44. <u-avatar :src="userData.headImage" size="160"></u-avatar>
  45. </view>
  46. </view>
  47. <view class="user-handle" v-for="(item, index) in handleList" :key="index" @click="goToHandle(item)">
  48. <view class="handle-icon">
  49. <u-image :src="item.icon" mode="aspectFit" width="28px" height="28px"></u-image>
  50. </view>
  51. <view class="handle-label">{{item.label}}</view>
  52. <view class="handle-arrow">
  53. <u-icon name="arrow-right" color="#cccccc" size="32"></u-icon>
  54. </view>
  55. </view>
  56. </view>
  57. <u-top-tips ref="uTips"></u-top-tips>
  58. <u-tabbar v-model="current" :list="tabbarList" :mid-button="true" :active-color="mainColor" inactive-color="#cccccc"
  59. icon-size="60"></u-tabbar>
  60. </view>
  61. </template>
  62. <script>
  63. import {
  64. mapGetters
  65. } from 'vuex'
  66. import uCharts from '@/js_sdk/u-charts/u-charts/u-charts.min.js';
  67. const NET = require('@/utils/request')
  68. const API = require('@/config/api')
  69. var _self;
  70. let chartBox = null;
  71. export default {
  72. computed: {
  73. ...mapGetters([
  74. 'mainColor',
  75. 'customStyle',
  76. ])
  77. },
  78. data() {
  79. return {
  80. cWidth: '',
  81. longitude: '',
  82. latitude: '',
  83. sectionIcon: API.getServerImg + 'biaoti.png',
  84. enrolledIcon: API.getServerImg + 'yibaoming.png ',
  85. intentionIcon: API.getServerImg + 'yixiangkehu.png',
  86. videoList: [],
  87. current: 0,
  88. tabbarList: [{
  89. iconPath: "../../../static/images/icon-index.png",
  90. selectedIconPath: "../../../static/images/icon-index-active.png",
  91. text: '首页',
  92. customIcon: false,
  93. },
  94. {
  95. iconPath: "plus-circle-fill",
  96. selectedIconPath: "close-circle-fill",
  97. text: '新增',
  98. midButton: true,
  99. customIcon: false,
  100. },
  101. {
  102. iconPath: "../../../static/images/icon-mine.png",
  103. selectedIconPath: "../../../static/images/icon-mine-active.png",
  104. text: '我的',
  105. customIcon: false,
  106. },
  107. ],
  108. userData: {
  109. headImage: '',
  110. userId: '',
  111. nickName: '',
  112. userName: '',
  113. phone: '',
  114. },
  115. handleList: [{
  116. label: '全部客户',
  117. path: 'customerList',
  118. icon: API.getServerImg + 'kehu.png'
  119. },
  120. {
  121. label: '营销业绩排行',
  122. path: 'marketRankList',
  123. icon: API.getServerImg + 'paihang.png'
  124. },
  125. {
  126. label: '续费提醒',
  127. path: 'renewList',
  128. icon: API.getServerImg + 'xufeitixing.png'
  129. },
  130. {
  131. label: '消息通知',
  132. path: 'messageList',
  133. icon: API.getServerImg + 'xiaoxi.png'
  134. },
  135. {
  136. label: '数据统计',
  137. path: 'dataCensus',
  138. icon: API.getServerImg + 'shujutongji.png'
  139. },
  140. {
  141. label: '我的二维码',
  142. path: 'shareInfo',
  143. icon: API.getServerImg + 'erweima.png'
  144. },
  145. ]
  146. }
  147. },
  148. onLoad() {
  149. // _self = this; // 浏览器调试时需要打开,微信调试时需关闭
  150. if (!uni.getStorageSync('token')) {
  151. uni.navigateTo({
  152. url: '/pages/login/index'
  153. });
  154. }
  155. },
  156. onReady() {
  157. this.cWidth = uni.upx2px(750) - 30;
  158. },
  159. onShow() {
  160. if (uni.getStorageSync('userData')) {
  161. this.userData = uni.getStorageSync('userData')
  162. }
  163. uni.getLocation({
  164. type: 'wgs84',
  165. geocode: true,
  166. success: (res) => {
  167. uni.setStorage({
  168. key: 'locationData',
  169. data: {
  170. longitude: res.longitude,
  171. latitude: res.latitude,
  172. }
  173. })
  174. this.initialize()
  175. }
  176. });
  177. },
  178. onPullDownRefresh() {
  179. this.initialize()
  180. setTimeout(() => {
  181. uni.stopPullDownRefresh();
  182. }, 500)
  183. },
  184. methods: {
  185. // 获取初始化数据
  186. initialize() {
  187. NET.request(API.getCensusChart, {}, 'POST').then(res => {
  188. let option = {
  189. $this: _self,
  190. canvasId: "chartBox",
  191. type: 'column',
  192. width: this.cWidth,
  193. height: 200,
  194. padding: [20, 10, 10, 10],
  195. pixelRatio: 1,
  196. animation: true,
  197. background: '#FFFFFF',
  198. fontSize: 11,
  199. xAxis: {
  200. type: 'grid',
  201. gridType: 'dash',
  202. disableGrid: true,
  203. itemCount: 10,
  204. },
  205. yAxis: {},
  206. categories: res.data.customerCreateListRes.map(site => {
  207. return site.week
  208. }),
  209. legend: {
  210. show: false
  211. },
  212. series: [{
  213. name: "",
  214. color: "#fcbd71",
  215. data: res.data.customerCreateListRes.map(site => {
  216. return site.newCount
  217. })
  218. }],
  219. }
  220. chartBox = new uCharts(option)
  221. }).catch(error => {
  222. this.$refs.uTips.show({
  223. title: error.message,
  224. type: 'warning',
  225. })
  226. })
  227. NET.request(API.getNearVenueList, uni.getStorageSync('locationData'), 'POST').then(res => {
  228. this.videoList = res.data
  229. }).catch(error => {
  230. this.$refs.uTips.show({
  231. title: error.message,
  232. type: 'warning',
  233. })
  234. })
  235. },
  236. // 跳转今日新增
  237. goToTodayEnroll() {
  238. uni.navigateTo({
  239. url: '/pagesEnroll/todayEnroll'
  240. });
  241. },
  242. // 跳转所有场馆
  243. goToVenueList() {
  244. uni.navigateTo({
  245. url: '/pagesEnroll/venueList'
  246. });
  247. },
  248. // 跳转场馆详情
  249. goToVenueDetail(item) {
  250. uni.navigateTo({
  251. url: '/pagesEnroll/venueDetail?id=' + item.id
  252. });
  253. },
  254. // 跳转添加信息
  255. goToAddForm(path) {
  256. uni.removeStorageSync('defaultClass');
  257. uni.navigateTo({
  258. url: '/pagesEnroll/' + path
  259. });
  260. },
  261. // 跳转我的各列表界面
  262. goToHandle(site) {
  263. uni.navigateTo({
  264. url: '/pagesMain/' + site.path
  265. });
  266. }
  267. },
  268. }
  269. </script>
  270. <style lang="scss" scoped>
  271. @import "@/static/css/themes.scss";
  272. .content {
  273. width: 100%;
  274. float: left;
  275. .swiper-item {
  276. width: 100%;
  277. height: calc(100vh - 50px);
  278. position: relative;
  279. }
  280. .chart-box {
  281. width: 100%;
  282. height: 240px;
  283. float: left;
  284. padding: 20px 0;
  285. display: flex;
  286. .chart-canvas {
  287. width: 100% !important;
  288. height: 200px !important;
  289. float: left;
  290. }
  291. }
  292. .section-title {
  293. width: 100%;
  294. height: 28px;
  295. display: flex;
  296. align-items: center;
  297. u-section {
  298. margin-left: 10px;
  299. flex: 1;
  300. }
  301. }
  302. .class-show-box {
  303. width: calc(100% + 32px);
  304. margin: 0 -16px;
  305. float: left;
  306. padding-bottom: 50px;
  307. .class-show-card {
  308. width: calc(50% - 16px);
  309. margin: 0 8px 16px 8px;
  310. float: left;
  311. .class-show-name {
  312. width: 100%;
  313. text-align: center;
  314. line-height: 18px;
  315. font-size: 12px;
  316. margin-top: 5px;
  317. }
  318. }
  319. }
  320. .enroll-fix-box {
  321. width: 100%;
  322. height: 90px;
  323. position: absolute;
  324. bottom: 40px;
  325. left: 0;
  326. display: flex;
  327. justify-content: space-around;
  328. .enroll-button {
  329. width: 60px;
  330. height: 90px;
  331. .enroll-img {
  332. width: 60px;
  333. height: 60px;
  334. padding-left: 5px;
  335. border-radius: 50%;
  336. background-color: #ffffff;
  337. box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  338. display: flex;
  339. justify-content: center;
  340. align-items: center;
  341. }
  342. .enroll-text {
  343. width: 60px;
  344. height: 20px;
  345. margin-top: 10px;
  346. line-height: 20px;
  347. font-size: 14px;
  348. text-align: center;
  349. white-space: nowrap;
  350. }
  351. }
  352. }
  353. .user-info {
  354. width: 100%;
  355. height: 110px;
  356. margin-bottom: 20px;
  357. float: left;
  358. background-color: $mainColor;
  359. .user-data {
  360. width: calc(100% - 110px);
  361. height: 110px;
  362. padding: 15px 0 15px 15px;
  363. float: left;
  364. .user-name {
  365. width: 100%;
  366. float: left;
  367. font-size: 24px;
  368. color: #FFFFFF;
  369. line-height: 30px;
  370. margin: 10px 0;
  371. white-space: nowrap;
  372. overflow: hidden;
  373. text-overflow: ellipsis;
  374. }
  375. .user-phone {
  376. width: 100%;
  377. color: #FFFFFF;
  378. line-height: 20px;
  379. float: left;
  380. white-space: nowrap;
  381. overflow: hidden;
  382. text-overflow: ellipsis;
  383. }
  384. }
  385. .user-img {
  386. width: 110px;
  387. height: 110px;
  388. padding: 15px;
  389. float: left;
  390. display: flex;
  391. align-items: center;
  392. justify-content: center;
  393. }
  394. }
  395. .user-handle {
  396. width: 100vw;
  397. height: 40px;
  398. float: left;
  399. padding: 0 15px;
  400. margin-bottom: 10px;
  401. display: flex;
  402. align-items: center;
  403. .handle-icon {
  404. width: 40px;
  405. height: 40px;
  406. text-align: center;
  407. line-height: 40px;
  408. display: flex;
  409. align-items: center;
  410. }
  411. .handle-label {
  412. height: 40px;
  413. flex: 1;
  414. margin-left: 10px;
  415. line-height: 40px;
  416. font-size: 15px;
  417. }
  418. .handle-arrow {
  419. line-height: 40px;
  420. }
  421. }
  422. }
  423. </style>