user-data.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. <template>
  2. <div class="page">
  3. <div class="filter">
  4. <!-- <div >时间选择</div> -->
  5. <ul class="date-list">
  6. <li
  7. v-for="(item, index) of filterDateList"
  8. :key="index"
  9. @click="dateClick(item)"
  10. :class="{ on: activeDate.name === item.name }"
  11. >
  12. {{ item.name }}
  13. </li>
  14. </ul>
  15. <div class="filter-item">
  16. <div class="name">排序:</div>
  17. <div class="sort-main">
  18. <div class="box">
  19. <picker
  20. class="view"
  21. mode="selector"
  22. :range="sortByList"
  23. :range-key="'label'"
  24. @change="pickerChange($event, 'sortBy')"
  25. >
  26. <span class="view">{{ activeSortBy }}</span>
  27. </picker>
  28. </div>
  29. <div class="box">
  30. <picker
  31. class="view"
  32. mode="selector"
  33. :range="ascList"
  34. :range-key="'label'"
  35. @change="pickerChange($event, 'asc')"
  36. >
  37. <span class="view">{{ activeAsc }}</span>
  38. </picker>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. <!-- data-list -->
  44. <div class="data-list">
  45. <ul class="list">
  46. <li class="item" v-for="item of dataList" :key="item.id">
  47. <div class="head-icon">
  48. <my-image :src="item.headIcon"></my-image>
  49. </div>
  50. <div class="info">
  51. <div class="name">{{ item.nickName }}</div>
  52. <div class="des">
  53. <section class="des-item">
  54. <span class="key">购买数量:</span
  55. >{{ item.buyCount }}
  56. </section>
  57. <section class="des-item">
  58. <span class="key">购买金额:</span
  59. >{{ item.buyAmount / 100 }}
  60. </section>
  61. </div>
  62. <div class="des">
  63. <section class="des-item">
  64. <span class="key">积分:</span>{{ item.points }}
  65. </section>
  66. <section class="des-item">
  67. <span class="key">访问次数:</span
  68. >{{ item.visitCount }}
  69. </section>
  70. </div>
  71. <div class="des time">
  72. 最后登录时间:{{ item.lastLoginTime }}
  73. </div>
  74. </div>
  75. </li>
  76. </ul>
  77. <div class="empty-text" v-if="dataLoading || dataEnd">
  78. {{ dataLoading ? "加载中..." : "无更多数据" }}
  79. </div>
  80. </div>
  81. </div>
  82. </template>
  83. <script>
  84. import MyImage from "../../../components/image/index";
  85. export default {
  86. name: "",
  87. components: { MyImage },
  88. // 数据
  89. data() {
  90. return {
  91. storeId: "",
  92. filterDateList: [], // 快捷日期 [{name,startTime,endTime}]
  93. activeDate: {},
  94. dataList: [], // 数据列表
  95. sortByList: [
  96. { label: "购买次数", value: 0 },
  97. { label: "最后登录时间", value: 1 },
  98. { label: "访问次数", value: 2 },
  99. { label: "购买金额", value: 3 },
  100. { label: "积分数", value: 4 },
  101. ],
  102. ascList: [
  103. { label: "降序", value: 0 },
  104. { label: "升序", value: 1 },
  105. ],
  106. activeSortBy: "购买次数",
  107. activeAsc: "降序",
  108. pageIndex: 1,
  109. dataEnd: false,
  110. dataLoading: true,
  111. };
  112. },
  113. onLoad() {
  114. if (this.user.storeId) {
  115. this.storeId = this.user.storeId;
  116. }
  117. this.initFilterDateList();
  118. this.getDataList();
  119. },
  120. onReachBottom() {
  121. this.getListMore();
  122. },
  123. async onShow() {},
  124. // 函数
  125. methods: {
  126. // 生成日期过滤
  127. initFilterDateList() {
  128. let arr = [];
  129. // 今天
  130. let date = new Date();
  131. let year = date.getFullYear();
  132. let month =
  133. date.getMonth() + 1 > 9
  134. ? "" + (date.getMonth() + 1)
  135. : "0" + (date.getMonth() + 1);
  136. let day =
  137. date.getDate() > 9 ? "" + date.getDate() : "0" + date.getDate();
  138. arr.push({
  139. name: "今天",
  140. startTime: `${year}-${month}-${day} 00:00:00`,
  141. endTime: `${year}-${month}-${day} 23:59:59`,
  142. });
  143. let date2 = new Date(date);
  144. date2.setDate(date.getDate() - 1);
  145. arr.push({
  146. name: "昨天",
  147. startTime: `${date2.getFullYear()}-${
  148. date2.getMonth() + 1
  149. }-${date2.getDate()} 00:00:00`,
  150. endTime: `${year}-${month}-${day - 1} 23:59:59`,
  151. });
  152. let date3 = new Date(date);
  153. date3.setDate(date.getDate() - 7);
  154. arr.push({
  155. name: "近7天",
  156. startTime: `${date3.getFullYear()}-${
  157. date3.getMonth() + 1
  158. }-${date3.getDate()} 00:00:00`,
  159. endTime: `${year}-${month}-${day} 23:59:59`,
  160. });
  161. let date4 = new Date(date);
  162. date4.setDate(date.getDate() - 30);
  163. arr.push({
  164. name: "近30天",
  165. startTime: `${date4.getFullYear()}-${
  166. date4.getMonth() + 1
  167. }-${date4.getDate()} 00:00:00`,
  168. endTime: `${year}-${month}-${day} 23:59:59`,
  169. });
  170. arr.push({
  171. name: "全部",
  172. startTime: null,
  173. endTime: null,
  174. });
  175. this.filterDateList = arr;
  176. this.activeDate = arr[3];
  177. },
  178. dateClick(val) {
  179. this.activeDate = val;
  180. this.getDataList();
  181. },
  182. pickerChange(e, name) {
  183. let index = e.detail.value;
  184. if (name === "sortBy") {
  185. this.activeSortBy = this.sortByList[index].label;
  186. }
  187. if (name === "asc") {
  188. this.activeAsc = this.ascList[index].label;
  189. }
  190. this.getDataList();
  191. },
  192. // 获取订单交易数据
  193. getDataList() {
  194. uni.showLoading({
  195. title: "加载中...",
  196. });
  197. this.pageIndex = 1;
  198. this.dataEnd = false;
  199. let sendData = {
  200. pageIndex: this.pageIndex++,
  201. // sortBy:'',
  202. // asc:'',
  203. };
  204. if (this.activeDate.startTime) {
  205. sendData.startTime = this.activeDate.startTime;
  206. sendData.endTime = this.activeDate.endTime;
  207. }
  208. for (let item of this.sortByList) {
  209. if (item.label === this.activeSortBy) {
  210. sendData.sortBy = item.value;
  211. }
  212. }
  213. for (let item of this.ascList) {
  214. if (item.label === this.activeAsc) {
  215. sendData.asc = item.value;
  216. }
  217. }
  218. this.api.get("/Data/GetUserDataList", sendData).then((res) => {
  219. uni.hideLoading();
  220. this.dataList = res.data.data;
  221. });
  222. },
  223. getListMore() {
  224. if (this.dataEnd) {
  225. return;
  226. }
  227. let sendData = {
  228. pageIndex: this.pageIndex++,
  229. // sortBy:'',
  230. // asc:'',
  231. };
  232. if (this.activeDate.startTime) {
  233. sendData.startTime = this.activeDate.startTime;
  234. sendData.endTime = this.activeDate.endTime;
  235. }
  236. for (let item of this.sortByList) {
  237. if (item.label === this.activeSortBy) {
  238. sendData.sortBy = item.value;
  239. }
  240. }
  241. for (let item of this.ascList) {
  242. if (item.label === this.activeAsc) {
  243. sendData.asc = item.value;
  244. }
  245. }
  246. this.dataLoading = true;
  247. this.api.get("/Data/GetUserDataList", sendData).then((res) => {
  248. this.dataLoading = false;
  249. uni.hideLoading();
  250. if (res.data.data.length < 20) {
  251. this.dataEnd = true;
  252. }
  253. this.dataList = [...this.dataList, ...res.data.data];
  254. });
  255. },
  256. },
  257. // 数据计算
  258. computed: {
  259. user() {
  260. return this.$store.state.user.user;
  261. },
  262. },
  263. // 数据监听
  264. watch: {},
  265. };
  266. </script>
  267. <style lang="scss" scoped>
  268. .page {
  269. padding-bottom: px(50);
  270. }
  271. .data-list {
  272. margin-top: px(30);
  273. background-color: #fff;
  274. }
  275. .filter {
  276. padding: px(30);
  277. background-color: #fff;
  278. .date-list {
  279. display: flex;
  280. justify-content: space-between;
  281. font-size: px(44);
  282. text-align: center;
  283. li {
  284. border: 1px solid #f1f1f1;
  285. padding: px(20) 0;
  286. width: 20%;
  287. flex-shrink: 0;
  288. &.on {
  289. border-color: rgb(0, 188, 38);
  290. color: rgb(0, 188, 38);
  291. }
  292. }
  293. }
  294. .filter-item {
  295. padding: px(20) 0;
  296. display: flex;
  297. justify-content: space-between;
  298. align-items: center;
  299. .name {
  300. width: px(150);
  301. flex-shrink: 0;
  302. font-size: px(44);
  303. margin-right: px(20);
  304. }
  305. .sort-main {
  306. width: 100%;
  307. display: flex;
  308. justify-content: space-between;
  309. align-items: center;
  310. }
  311. .box {
  312. width: 49%;
  313. height: px(100);
  314. border: 1px solid #f1f1f1;
  315. padding: 0 px(20);
  316. font-size: px(44);
  317. display: flex;
  318. align-items: center;
  319. position: relative;
  320. &::after {
  321. content: "";
  322. position: absolute;
  323. right: px(30);
  324. top: 50%;
  325. z-index: 1;
  326. width: 0;
  327. height: 0;
  328. border-style: solid;
  329. border-width: 5px 5px 0 5px;
  330. border-color: #666 transparent transparent transparent;
  331. }
  332. .view {
  333. width: 100%;
  334. height: 100%;
  335. line-height: px(100);
  336. display: block;
  337. }
  338. }
  339. }
  340. }
  341. .data-list {
  342. padding: px(40) 0;
  343. background-color: #fff;
  344. .item {
  345. border-bottom: 1px solid #f1f1f1;
  346. display: flex;
  347. align-items: stretch;
  348. justify-content: space-between;
  349. padding: px(30) px(40);
  350. }
  351. .head-icon {
  352. width: px(230);
  353. height: px(230);
  354. flex-shrink: 0;
  355. margin-right: px(30);
  356. /deep/ img {
  357. width: px(230);
  358. height: px(230);
  359. }
  360. }
  361. .info {
  362. width: 100%;
  363. }
  364. .name {
  365. font-size: px(44);
  366. }
  367. .des {
  368. font-size: px(42);
  369. margin-top: px(10);
  370. display: flex;
  371. justify-content: space-between;
  372. align-items: center;
  373. .des-item {
  374. width: 45%;
  375. }
  376. }
  377. .key,
  378. .time {
  379. color: #999;
  380. }
  381. }
  382. .empty-text {
  383. text-align: center;
  384. padding: px(30);
  385. font-size: px(44);
  386. color: #999;
  387. }
  388. </style>