index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  1. <template>
  2. <view class='productSort copy-data'>
  3. <view class="scroll-box">
  4. <view class='aside'>
  5. <scroll-view scroll-y="true" scroll-with-animation='true' style="height: calc(100% - 100rpx)">
  6. <view class='item acea-row row-center-wrapper' :class='index == navActive ? "on" : ""'
  7. v-for="(item, index) in productList" :key="index" @click='tap(item, index, "b" + index)'>
  8. <text>{{ $t(item.title) }}</text>
  9. </view>
  10. </scroll-view>
  11. </view>
  12. <view class='conter'>
  13. <scroll-view scroll-y="true" :scroll-into-view="toView" @scroll="scroll" scroll-with-animation='true'
  14. style="height: 100%;" class="conterScroll">
  15. <block>
  16. <view class='listw' :id="'b' + index">
  17. <!-- <view class='title acea-row row-center-wrapper'>
  18. <view class='line'></view>
  19. <view class='name'>{{ $t(item.cate_name) }}</view>
  20. <view class='line'></view>
  21. </view> -->
  22. <view class='list acea-row'>
  23. <block v-for="(itemn, indexn) in goodsList" :key="indexn">
  24. <view hover-class='none' @click="choice(itemn)" class='item acea-row-item row-column row-middle'>
  25. <view class='picture'>
  26. <image :src='itemn.goodsCover' v-if="itemn.goodsCover"></image>
  27. <image src="/static/images/sort-img.png" v-else></image>
  28. </view>
  29. <view class="p-r">
  30. <view class='name line1'>{{ $t(itemn.goodsName) }}</view>
  31. <view class="acea-row-item-bArea">
  32. <view class='jiage line1'>¥{{itemn.discountPrice}}</view>
  33. <view :class="[itemn.selected ? 'selde' : 'noselde']">{{ itemn.selected ? "已选择" : "选择" }}<text
  34. :class="[itemn.selected ? 'selde-q' : 'noselde-q']"></text></view>
  35. </view>
  36. </view>
  37. </view>
  38. </block>
  39. </view>
  40. </view>
  41. </block>
  42. <view :style='"height:" + (height - 300) + "rpx;"' v-if="number < 15"></view>
  43. </scroll-view>
  44. </view>
  45. </view>
  46. <view class="foot" v-if="is_diy && newData.status && newData.status.status">
  47. <view class="page-footer" id="target" :style="{ 'background-color': newData.bgColor.color[0].item }">
  48. <view class="foot-item" v-for="(item, index) in newData.menuList" :key="index" @click="goRouter(item)">
  49. <block v-if="item.link == activeRouter">
  50. <image :src="item.imgList[0]"></image>
  51. <view class="txt" :style="{ color: newData.activeTxtColor.color[0].item }">
  52. {{ $t(item.name) }}</view>
  53. </block>
  54. <block v-else>
  55. <image :src="item.imgList[1]"></image>
  56. <view class="txt" :style="{ color: newData.txtColor.color[0].item }">
  57. {{ $t(item.name) }}</view>
  58. </block>
  59. <div class="count-num" v-if="item.link === '/pages/order_addcart/order_addcart' && cartNum > 0">
  60. {{ cartNum }}
  61. </div>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. import { getCategoryOne, getCategoryTwo, getGoodsList } from '@/api/home.js'
  69. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  70. import {
  71. getCategoryList
  72. } from '@/api/store.js';
  73. import {
  74. mapState,
  75. mapGetters
  76. } from "vuex"
  77. import pageFooter from '@/components/pageFooter/index.vue'
  78. import {
  79. getNavigation
  80. } from '@/api/public.js'
  81. const app = getApp();
  82. export default {
  83. components: {
  84. pageFooter
  85. },
  86. data () {
  87. return {
  88. goodsList: [],
  89. selectItem: [],
  90. src: 'http://www.gzzhsckj.com:9000/bladex/upload/20221026/5956cfd37ebc31cd2e00797909987482.jpg',
  91. navlist: [],
  92. productList: [],
  93. productList2: [],
  94. navActive: 0,
  95. number: "",
  96. is_diy: uni.getStorageSync('is_diy'),
  97. height: 0,
  98. hightArr: [],
  99. toView: "",
  100. tabbarH: 0,
  101. footH: 0,
  102. windowHeight: 0,
  103. newData: {},
  104. activeRouter: '',
  105. pageHeight: '80%',
  106. sysHeight: sysHeight,
  107. // #ifdef APP-PLUS
  108. pageHeight: app.globalData.windowHeight,
  109. // #endif
  110. footerStatus: false,
  111. lock: false,
  112. selectId: []
  113. }
  114. },
  115. computed: {
  116. ...mapState({
  117. cartNum: state => state.indexData.cartNum
  118. })
  119. },
  120. created () {
  121. this.getCategoryOne()
  122. },
  123. mounted () {
  124. let that = this
  125. let routes = getCurrentPages();
  126. let curRoute = routes[routes.length - 1].route
  127. this.activeRouter = '/' + curRoute
  128. // this.getAllCategory();
  129. // #ifdef H5
  130. uni.getSystemInfo({
  131. success: function (res) {
  132. that.pageHeight = res.windowHeight + 'px'
  133. }
  134. });
  135. // #endif
  136. },
  137. methods: {
  138. choice (item) {
  139. item.selected = !item.selected
  140. this.goodsList.splice(0, 0)
  141. console.log("item ", item.selected)
  142. let data = this.goodsList.filter(e => {
  143. return e.selected
  144. })
  145. // console.log("data ", data)
  146. this.$emit('getSelectData', data);
  147. },
  148. getCategoryOne () {
  149. getCategoryOne({
  150. parentId: 0
  151. }).then(res => {
  152. if (res.data.length > 0) {
  153. this.productList = res.data
  154. this.selectItem = res.data[0]
  155. // this.getCategoryTwo(res.data[0].id)
  156. this.getGoodsList(res.data[0].id);
  157. }
  158. })
  159. },
  160. getGoodsList(cid) {
  161. this.goodsList = [];
  162. getGoodsList({
  163. goodsCategoryId: cid,
  164. current: 1,
  165. size: 20
  166. }).then(res => {
  167. this.goodsList = res.data;
  168. })
  169. console.log(this.goodsList)
  170. },
  171. getCategoryTwo (id) {
  172. getCategoryTwo({
  173. parentId: id
  174. }).then(res => {
  175. this.productList2 = res.data
  176. this.productList2.forEach(e => {
  177. e.selected = false
  178. })
  179. })
  180. },
  181. getNav () {
  182. // uni.request({
  183. // url:'api/mock/navigation',
  184. // success:res=>{
  185. // this.newData = res.data
  186. // if (this.newData.status && this.newData.status.status) {
  187. // uni.hideTabBar()
  188. // } else {
  189. // uni.showTabBar()
  190. // }
  191. // }
  192. // })
  193. // getNavigation().then(res => {
  194. // this.newData = res
  195. // if (this.newData.status && this.newData.status.status) {
  196. // uni.hideTabBar()
  197. // } else {
  198. // uni.showTabBar()
  199. // }
  200. // })
  201. },
  202. goRouter (item) {
  203. var pages = getCurrentPages();
  204. var page = (pages[pages.length - 1]).$page.fullPath;
  205. if (item.link == page) return
  206. uni.switchTab({
  207. url: item.link,
  208. fail (err) {
  209. uni.redirectTo({
  210. url: item.link
  211. })
  212. }
  213. })
  214. },
  215. footHeight (data) {
  216. this.footH = data
  217. },
  218. infoScroll: function () {
  219. let that = this;
  220. let len = that.productList.length;
  221. this.number = that.productList[len - 1].children.length;
  222. //设置商品列表高度
  223. uni.getSystemInfo({
  224. success: function (res) {
  225. that.height = (res.windowHeight) * (750 / res.windowWidth) - 98;
  226. },
  227. });
  228. let height = 0;
  229. let hightArr = [];
  230. for (let i = 0; i < len; i++) {
  231. //获取元素所在位置
  232. let query = uni.createSelectorQuery().in(this);
  233. let idView = "#b" + i;
  234. query.select(idView).boundingClientRect();
  235. query.exec(function (res) {
  236. let top = res[0].top;
  237. hightArr.push(top);
  238. that.hightArr = hightArr
  239. });
  240. };
  241. },
  242. tap: function (item, index, id) {
  243. this.selectItem = item
  244. this.getGoodsList(item.id)
  245. this.toView = id;
  246. this.navActive = index;
  247. this.$set(this, 'lock', true);
  248. },
  249. getAllCategory: function () {
  250. let that = this;
  251. uni.request({
  252. url: 'api/mock/getCategoryList',
  253. success: res => {
  254. that.productList = res.data;
  255. that.$nextTick(res => {
  256. that.infoScroll();
  257. })
  258. }
  259. })
  260. // getCategoryList().then(res => {
  261. // that.productList = res.data;
  262. // that.$nextTick(res => {
  263. // that.infoScroll();
  264. // })
  265. // })
  266. },
  267. scroll: function (e) {
  268. let scrollTop = e.detail.scrollTop;
  269. let scrollArr = this.hightArr;
  270. if (this.lock) {
  271. this.$set(this, 'lock', false);
  272. return;
  273. }
  274. for (let i = 0; i < scrollArr.length; i++) {
  275. if (scrollTop >= 0 && scrollTop < scrollArr[1] - scrollArr[0]) {
  276. this.navActive = 0
  277. } else if (scrollTop >= scrollArr[i] - scrollArr[0] && scrollTop < scrollArr[i + 1] - scrollArr[
  278. 0]) {
  279. this.navActive = i
  280. } else if (scrollTop >= scrollArr[scrollArr.length - 1] - scrollArr[0]) {
  281. this.navActive = scrollArr.length - 1
  282. }
  283. }
  284. },
  285. searchSubmitValue: function (e) {
  286. if (this.$util.trim(e.detail.value).length > 0)
  287. uni.navigateTo({
  288. url: '/pages/goods/goods_list/index?searchValue=' + e.detail.value
  289. })
  290. else
  291. return this.$util.Tips({
  292. title: this.$t(`搜索商品名称`)
  293. });
  294. },
  295. }
  296. }
  297. </script>
  298. <style>
  299. page {
  300. height: 100%;
  301. }
  302. </style>
  303. <style scoped lang="scss">
  304. /deep/uni-scroll-view {
  305. padding-bottom: 0 !important;
  306. }
  307. .sys-title {
  308. z-index: 10;
  309. position: relative;
  310. height: 40px;
  311. line-height: 40px;
  312. font-size: 30rpx;
  313. color: #333;
  314. background-color: #fff;
  315. // #ifdef APP-PLUS
  316. text-align: center;
  317. // #endif
  318. // #ifdef MP
  319. text-align: left;
  320. padding-left: 30rpx;
  321. // #endif
  322. }
  323. .sys-head {
  324. background-color: #fff;
  325. }
  326. .productSort {
  327. display: flex;
  328. flex-direction: column;
  329. height: 80vh
  330. }
  331. .productSort .header {
  332. width: 100%;
  333. height: 96rpx;
  334. background-color: #fff;
  335. border-bottom: 1rpx solid #f5f5f5;
  336. }
  337. .productSort .header .input {
  338. width: 700rpx;
  339. height: 60rpx;
  340. background-color: #f5f5f5;
  341. border-radius: 50rpx;
  342. box-sizing: border-box;
  343. padding: 0 25rpx;
  344. }
  345. .productSort .header .input .iconfont {
  346. font-size: 35rpx;
  347. color: #555;
  348. }
  349. .productSort .header .input .placeholder {
  350. color: #999;
  351. }
  352. .productSort .header .input input {
  353. font-size: 26rpx;
  354. height: 100%;
  355. width: 597rpx;
  356. }
  357. .productSort .scroll-box {
  358. flex: 1;
  359. overflow: hidden;
  360. display: flex;
  361. }
  362. // #ifndef MP
  363. uni-scroll-view {
  364. padding-bottom: 100rpx;
  365. }
  366. // #endif
  367. .productSort .aside {
  368. width: 180rpx;
  369. height: 100%;
  370. overflow: hidden;
  371. background-color: #f7f7f7;
  372. }
  373. .productSort .aside .item {
  374. height: 100rpx;
  375. width: 100%;
  376. font-size: 26rpx;
  377. color: #424242;
  378. text-align: center;
  379. }
  380. .productSort .aside .item.on {
  381. background-color: #fff;
  382. border-left: 4rpx solid var(--view-theme);
  383. width: 100%;
  384. color: var(--view-theme);
  385. font-weight: bold;
  386. }
  387. .productSort .conter {
  388. flex: 1;
  389. height: 100%;
  390. overflow: hidden;
  391. padding: 0 14rpx;
  392. background-color: #fff;
  393. position: relative;
  394. }
  395. .productSort .conter .listw {
  396. padding-top: 20rpx;
  397. }
  398. .productSort .conter .listw .title {
  399. height: 90rpx;
  400. }
  401. .productSort .conter .listw .title .line {
  402. width: 100rpx;
  403. height: 2rpx;
  404. background-color: #f0f0f0;
  405. }
  406. .productSort .conter .listw .title .name {
  407. font-size: 28rpx;
  408. color: #333;
  409. margin: 0 30rpx;
  410. font-weight: bold;
  411. }
  412. .productSort .conter .list {
  413. flex-wrap: wrap;
  414. }
  415. .productSort .conter .list .item {
  416. width: 177rpx;
  417. margin-top: 26rpx;
  418. }
  419. .productSort .conter .list .item .picture {
  420. width: 120rpx;
  421. height: 120rpx;
  422. border-radius: 50%;
  423. }
  424. .productSort .conter .list .item .picture image {
  425. width: 100%;
  426. height: 100%;
  427. border-radius: 50%;
  428. }
  429. .productSort .conter .list .item .name {
  430. font-size: 24rpx;
  431. color: #333;
  432. height: 56rpx;
  433. line-height: 56rpx;
  434. width: 120rpx;
  435. text-align: center;
  436. }
  437. .page-footer {
  438. position: fixed;
  439. bottom: 0;
  440. z-index: 30;
  441. display: flex;
  442. align-items: center;
  443. justify-content: space-around;
  444. width: 100%;
  445. height: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  446. height: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  447. box-sizing: border-box;
  448. border-top: solid 1rpx #F3F3F3;
  449. background-color: #fff;
  450. box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
  451. padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
  452. padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
  453. .foot-item {
  454. display: flex;
  455. width: max-content;
  456. align-items: center;
  457. justify-content: center;
  458. flex-direction: column;
  459. position: relative;
  460. .count-num {
  461. position: absolute;
  462. display: flex;
  463. justify-content: center;
  464. align-items: center;
  465. width: 40rpx;
  466. height: 40rpx;
  467. top: 0rpx;
  468. right: -15rpx;
  469. color: #fff;
  470. font-size: 20rpx;
  471. background-color: #FD502F;
  472. border-radius: 50%;
  473. padding: 4rpx;
  474. }
  475. }
  476. .foot-item image {
  477. height: 50rpx;
  478. width: 50rpx;
  479. text-align: center;
  480. margin: 0 auto;
  481. }
  482. .foot-item .txt {
  483. font-size: 24rpx;
  484. &.active {}
  485. }
  486. .fixed-image {
  487. position: fixed !important;
  488. width: 74%;
  489. }
  490. }
  491. .acea-row {
  492. display: flex;
  493. flex-direction: column;
  494. /* 已选择 */
  495. .selde {
  496. border: 1px solid red;
  497. background: red;
  498. color: #FFFFFF;
  499. border-radius: 20upx;
  500. display: flex;
  501. flex-direction: row;
  502. justify-content: center;
  503. align-items: center;
  504. font-size: 20upx;
  505. padding: 0 10upx;
  506. }
  507. .selde-q {
  508. width: 18upx;
  509. height: 18upx;
  510. border-radius: 50%;
  511. background: #FFFFFF;
  512. margin-left: 6upx;
  513. }
  514. /* 未选择 */
  515. .noselde {
  516. border: 1px solid #959595;
  517. background: #FFFFFF;
  518. color: #959595;
  519. border-radius: 20upx;
  520. display: flex;
  521. flex-direction: row;
  522. justify-content: center;
  523. align-items: center;
  524. font-size: 20upx;
  525. padding: 0 10upx;
  526. }
  527. .noselde-q {
  528. border: 1px solid #959595;
  529. width: 16upx;
  530. height: 16upx;
  531. border-radius: 50%;
  532. background: #FFFFFF;
  533. margin-left: 6upx;
  534. }
  535. .acea-row-item {
  536. display: flex;
  537. width: 100% !important;
  538. flex-direction: row;
  539. .picture {}
  540. .p-r {
  541. flex-direction: column;
  542. width: 100%;
  543. display: flex;
  544. justify-content: space-between;
  545. .name {}
  546. .acea-row-item-bArea {
  547. display: flex;
  548. justify-content: space-between;
  549. }
  550. }
  551. }
  552. }
  553. </style>