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. console.log(this.productList2);
  140. item.selected = !item.selected
  141. this.productList2.splice(0, 0)
  142. let data = this.productList2.filter(e => {
  143. return e.selected
  144. })
  145. this.$emit('getSelectData', data);
  146. },
  147. getCategoryOne () {
  148. getCategoryOne({
  149. parentId: 0
  150. }).then(res => {
  151. if (res.data.length > 0) {
  152. this.productList = res.data
  153. this.selectItem = res.data[0]
  154. // this.getCategoryTwo(res.data[0].id)
  155. this.getGoodsList(res.data[0].id);
  156. }
  157. })
  158. },
  159. getGoodsList(cid) {
  160. this.goodsList = [];
  161. getGoodsList({
  162. goodsCategoryId: cid,
  163. current: 1,
  164. size: 20
  165. }).then(res => {
  166. this.goodsList = res.data;
  167. })
  168. console.log(this.goodsList)
  169. },
  170. getCategoryTwo (id) {
  171. getCategoryTwo({
  172. parentId: id
  173. }).then(res => {
  174. this.productList2 = res.data
  175. this.productList2.forEach(e => {
  176. e.selected = false
  177. })
  178. })
  179. },
  180. getNav () {
  181. // uni.request({
  182. // url:'api/mock/navigation',
  183. // success:res=>{
  184. // this.newData = res.data
  185. // if (this.newData.status && this.newData.status.status) {
  186. // uni.hideTabBar()
  187. // } else {
  188. // uni.showTabBar()
  189. // }
  190. // }
  191. // })
  192. // getNavigation().then(res => {
  193. // this.newData = res
  194. // if (this.newData.status && this.newData.status.status) {
  195. // uni.hideTabBar()
  196. // } else {
  197. // uni.showTabBar()
  198. // }
  199. // })
  200. },
  201. goRouter (item) {
  202. var pages = getCurrentPages();
  203. var page = (pages[pages.length - 1]).$page.fullPath;
  204. if (item.link == page) return
  205. uni.switchTab({
  206. url: item.link,
  207. fail (err) {
  208. uni.redirectTo({
  209. url: item.link
  210. })
  211. }
  212. })
  213. },
  214. footHeight (data) {
  215. this.footH = data
  216. },
  217. infoScroll: function () {
  218. let that = this;
  219. let len = that.productList.length;
  220. this.number = that.productList[len - 1].children.length;
  221. //设置商品列表高度
  222. uni.getSystemInfo({
  223. success: function (res) {
  224. that.height = (res.windowHeight) * (750 / res.windowWidth) - 98;
  225. },
  226. });
  227. let height = 0;
  228. let hightArr = [];
  229. for (let i = 0; i < len; i++) {
  230. //获取元素所在位置
  231. let query = uni.createSelectorQuery().in(this);
  232. let idView = "#b" + i;
  233. query.select(idView).boundingClientRect();
  234. query.exec(function (res) {
  235. let top = res[0].top;
  236. hightArr.push(top);
  237. that.hightArr = hightArr
  238. });
  239. };
  240. },
  241. tap: function (item, index, id) {
  242. this.selectItem = item
  243. this.getGoodsList(item.id)
  244. this.toView = id;
  245. this.navActive = index;
  246. this.$set(this, 'lock', true);
  247. },
  248. getAllCategory: function () {
  249. let that = this;
  250. uni.request({
  251. url: 'api/mock/getCategoryList',
  252. success: res => {
  253. that.productList = res.data;
  254. that.$nextTick(res => {
  255. that.infoScroll();
  256. })
  257. }
  258. })
  259. // getCategoryList().then(res => {
  260. // that.productList = res.data;
  261. // that.$nextTick(res => {
  262. // that.infoScroll();
  263. // })
  264. // })
  265. },
  266. scroll: function (e) {
  267. let scrollTop = e.detail.scrollTop;
  268. let scrollArr = this.hightArr;
  269. if (this.lock) {
  270. this.$set(this, 'lock', false);
  271. return;
  272. }
  273. for (let i = 0; i < scrollArr.length; i++) {
  274. if (scrollTop >= 0 && scrollTop < scrollArr[1] - scrollArr[0]) {
  275. this.navActive = 0
  276. } else if (scrollTop >= scrollArr[i] - scrollArr[0] && scrollTop < scrollArr[i + 1] - scrollArr[
  277. 0]) {
  278. this.navActive = i
  279. } else if (scrollTop >= scrollArr[scrollArr.length - 1] - scrollArr[0]) {
  280. this.navActive = scrollArr.length - 1
  281. }
  282. }
  283. },
  284. searchSubmitValue: function (e) {
  285. if (this.$util.trim(e.detail.value).length > 0)
  286. uni.navigateTo({
  287. url: '/pages/goods/goods_list/index?searchValue=' + e.detail.value
  288. })
  289. else
  290. return this.$util.Tips({
  291. title: this.$t(`搜索商品名称`)
  292. });
  293. },
  294. }
  295. }
  296. </script>
  297. <style>
  298. page {
  299. height: 100%;
  300. }
  301. </style>
  302. <style scoped lang="scss">
  303. /deep/uni-scroll-view {
  304. padding-bottom: 0 !important;
  305. }
  306. .sys-title {
  307. z-index: 10;
  308. position: relative;
  309. height: 40px;
  310. line-height: 40px;
  311. font-size: 30rpx;
  312. color: #333;
  313. background-color: #fff;
  314. // #ifdef APP-PLUS
  315. text-align: center;
  316. // #endif
  317. // #ifdef MP
  318. text-align: left;
  319. padding-left: 30rpx;
  320. // #endif
  321. }
  322. .sys-head {
  323. background-color: #fff;
  324. }
  325. .productSort {
  326. display: flex;
  327. flex-direction: column;
  328. height: 80vh
  329. }
  330. .productSort .header {
  331. width: 100%;
  332. height: 96rpx;
  333. background-color: #fff;
  334. border-bottom: 1rpx solid #f5f5f5;
  335. }
  336. .productSort .header .input {
  337. width: 700rpx;
  338. height: 60rpx;
  339. background-color: #f5f5f5;
  340. border-radius: 50rpx;
  341. box-sizing: border-box;
  342. padding: 0 25rpx;
  343. }
  344. .productSort .header .input .iconfont {
  345. font-size: 35rpx;
  346. color: #555;
  347. }
  348. .productSort .header .input .placeholder {
  349. color: #999;
  350. }
  351. .productSort .header .input input {
  352. font-size: 26rpx;
  353. height: 100%;
  354. width: 597rpx;
  355. }
  356. .productSort .scroll-box {
  357. flex: 1;
  358. overflow: hidden;
  359. display: flex;
  360. }
  361. // #ifndef MP
  362. uni-scroll-view {
  363. padding-bottom: 100rpx;
  364. }
  365. // #endif
  366. .productSort .aside {
  367. width: 180rpx;
  368. height: 100%;
  369. overflow: hidden;
  370. background-color: #f7f7f7;
  371. }
  372. .productSort .aside .item {
  373. height: 100rpx;
  374. width: 100%;
  375. font-size: 26rpx;
  376. color: #424242;
  377. text-align: center;
  378. }
  379. .productSort .aside .item.on {
  380. background-color: #fff;
  381. border-left: 4rpx solid var(--view-theme);
  382. width: 100%;
  383. color: var(--view-theme);
  384. font-weight: bold;
  385. }
  386. .productSort .conter {
  387. flex: 1;
  388. height: 100%;
  389. overflow: hidden;
  390. padding: 0 14rpx;
  391. background-color: #fff;
  392. position: relative;
  393. }
  394. .productSort .conter .listw {
  395. padding-top: 20rpx;
  396. }
  397. .productSort .conter .listw .title {
  398. height: 90rpx;
  399. }
  400. .productSort .conter .listw .title .line {
  401. width: 100rpx;
  402. height: 2rpx;
  403. background-color: #f0f0f0;
  404. }
  405. .productSort .conter .listw .title .name {
  406. font-size: 28rpx;
  407. color: #333;
  408. margin: 0 30rpx;
  409. font-weight: bold;
  410. }
  411. .productSort .conter .list {
  412. flex-wrap: wrap;
  413. }
  414. .productSort .conter .list .item {
  415. width: 177rpx;
  416. margin-top: 26rpx;
  417. }
  418. .productSort .conter .list .item .picture {
  419. width: 120rpx;
  420. height: 120rpx;
  421. border-radius: 50%;
  422. }
  423. .productSort .conter .list .item .picture image {
  424. width: 100%;
  425. height: 100%;
  426. border-radius: 50%;
  427. }
  428. .productSort .conter .list .item .name {
  429. font-size: 24rpx;
  430. color: #333;
  431. height: 56rpx;
  432. line-height: 56rpx;
  433. width: 120rpx;
  434. text-align: center;
  435. }
  436. .page-footer {
  437. position: fixed;
  438. bottom: 0;
  439. z-index: 30;
  440. display: flex;
  441. align-items: center;
  442. justify-content: space-around;
  443. width: 100%;
  444. height: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  445. height: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  446. box-sizing: border-box;
  447. border-top: solid 1rpx #F3F3F3;
  448. background-color: #fff;
  449. box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
  450. padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
  451. padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
  452. .foot-item {
  453. display: flex;
  454. width: max-content;
  455. align-items: center;
  456. justify-content: center;
  457. flex-direction: column;
  458. position: relative;
  459. .count-num {
  460. position: absolute;
  461. display: flex;
  462. justify-content: center;
  463. align-items: center;
  464. width: 40rpx;
  465. height: 40rpx;
  466. top: 0rpx;
  467. right: -15rpx;
  468. color: #fff;
  469. font-size: 20rpx;
  470. background-color: #FD502F;
  471. border-radius: 50%;
  472. padding: 4rpx;
  473. }
  474. }
  475. .foot-item image {
  476. height: 50rpx;
  477. width: 50rpx;
  478. text-align: center;
  479. margin: 0 auto;
  480. }
  481. .foot-item .txt {
  482. font-size: 24rpx;
  483. &.active {}
  484. }
  485. .fixed-image {
  486. position: fixed !important;
  487. width: 74%;
  488. }
  489. }
  490. .acea-row {
  491. display: flex;
  492. flex-direction: column;
  493. /* 已选择 */
  494. .selde {
  495. border: 1px solid red;
  496. background: red;
  497. color: #FFFFFF;
  498. border-radius: 20upx;
  499. display: flex;
  500. flex-direction: row;
  501. justify-content: center;
  502. align-items: center;
  503. font-size: 20upx;
  504. padding: 0 10upx;
  505. }
  506. .selde-q {
  507. width: 18upx;
  508. height: 18upx;
  509. border-radius: 50%;
  510. background: #FFFFFF;
  511. margin-left: 6upx;
  512. }
  513. /* 未选择 */
  514. .noselde {
  515. border: 1px solid #959595;
  516. background: #FFFFFF;
  517. color: #959595;
  518. border-radius: 20upx;
  519. display: flex;
  520. flex-direction: row;
  521. justify-content: center;
  522. align-items: center;
  523. font-size: 20upx;
  524. padding: 0 10upx;
  525. }
  526. .noselde-q {
  527. border: 1px solid #959595;
  528. width: 16upx;
  529. height: 16upx;
  530. border-radius: 50%;
  531. background: #FFFFFF;
  532. margin-left: 6upx;
  533. }
  534. .acea-row-item {
  535. display: flex;
  536. width: 100% !important;
  537. flex-direction: row;
  538. .picture {}
  539. .p-r {
  540. flex-direction: column;
  541. width: 100%;
  542. display: flex;
  543. justify-content: space-between;
  544. .name {}
  545. .acea-row-item-bArea {
  546. display: flex;
  547. justify-content: space-between;
  548. }
  549. }
  550. }
  551. }
  552. </style>