index.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  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.navigateTo({
  257. url: '/pagesEnroll/' + path
  258. });
  259. },
  260. // 跳转我的各列表界面
  261. goToHandle(site) {
  262. uni.navigateTo({
  263. url: '/pagesMain/' + site.path
  264. });
  265. }
  266. },
  267. }
  268. </script>
  269. <style lang="scss" scoped>
  270. @import "@/static/css/themes.scss";
  271. .content {
  272. width: 100%;
  273. float: left;
  274. .swiper-item {
  275. width: 100%;
  276. height: calc(100vh - 50px);
  277. position: relative;
  278. }
  279. .chart-box {
  280. width: 100%;
  281. height: 240px;
  282. float: left;
  283. padding: 20px 0;
  284. display: flex;
  285. .chart-canvas {
  286. width: 100% !important;
  287. height: 200px !important;
  288. float: left;
  289. }
  290. }
  291. .section-title {
  292. width: 100%;
  293. height: 28px;
  294. display: flex;
  295. align-items: center;
  296. u-section {
  297. margin-left: 10px;
  298. flex: 1;
  299. }
  300. }
  301. .class-show-box {
  302. width: calc(100% + 32px);
  303. margin: 0 -16px;
  304. .class-show-card {
  305. width: calc(50% - 16px);
  306. margin: 0 8px 16px 8px;
  307. float: left;
  308. .class-show-name {
  309. width: 100%;
  310. text-align: center;
  311. line-height: 18px;
  312. font-size: 12px;
  313. margin-top: 5px;
  314. }
  315. }
  316. }
  317. .enroll-fix-box {
  318. width: 100%;
  319. height: 90px;
  320. position: absolute;
  321. bottom: 40px;
  322. left: 0;
  323. display: flex;
  324. justify-content: space-around;
  325. .enroll-button {
  326. width: 60px;
  327. height: 90px;
  328. .enroll-img {
  329. width: 60px;
  330. height: 60px;
  331. padding-left: 5px;
  332. border-radius: 50%;
  333. background-color: #ffffff;
  334. box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  335. display: flex;
  336. justify-content: center;
  337. align-items: center;
  338. }
  339. .enroll-text {
  340. width: 60px;
  341. height: 20px;
  342. margin-top: 10px;
  343. line-height: 20px;
  344. font-size: 14px;
  345. text-align: center;
  346. white-space: nowrap;
  347. }
  348. }
  349. }
  350. .user-info {
  351. width: 100%;
  352. height: 110px;
  353. margin-bottom: 20px;
  354. float: left;
  355. background-color: $mainColor;
  356. .user-data {
  357. width: calc(100% - 110px);
  358. height: 110px;
  359. padding: 15px 0 15px 15px;
  360. float: left;
  361. .user-name {
  362. width: 100%;
  363. float: left;
  364. font-size: 24px;
  365. color: #FFFFFF;
  366. line-height: 30px;
  367. margin: 10px 0;
  368. white-space: nowrap;
  369. overflow: hidden;
  370. text-overflow: ellipsis;
  371. }
  372. .user-phone {
  373. width: 100%;
  374. color: #FFFFFF;
  375. line-height: 20px;
  376. float: left;
  377. white-space: nowrap;
  378. overflow: hidden;
  379. text-overflow: ellipsis;
  380. }
  381. }
  382. .user-img {
  383. width: 110px;
  384. height: 110px;
  385. padding: 15px;
  386. float: left;
  387. display: flex;
  388. align-items: center;
  389. justify-content: center;
  390. }
  391. }
  392. .user-handle {
  393. width: 100vw;
  394. height: 40px;
  395. float: left;
  396. padding: 0 15px;
  397. margin-bottom: 10px;
  398. display: flex;
  399. align-items: center;
  400. .handle-icon {
  401. width: 40px;
  402. height: 40px;
  403. text-align: center;
  404. line-height: 40px;
  405. display: flex;
  406. align-items: center;
  407. }
  408. .handle-label {
  409. height: 40px;
  410. flex: 1;
  411. margin-left: 10px;
  412. line-height: 40px;
  413. font-size: 15px;
  414. }
  415. .handle-arrow {
  416. line-height: 40px;
  417. }
  418. }
  419. }
  420. </style>