goods_cate1.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. <template>
  2. <view class='productSort copy-data' :style="{height:pageHeight}">
  3. <!-- #ifdef APP-PLUS || MP -->
  4. <!-- <view class="sys-head" :style="{height:sysHeight}"></view> -->
  5. <!-- #endif -->
  6. <view class='header acea-row row-center-wrapper'>
  7. <view class='acea-row row-between-wrapper input'>
  8. <text class='iconfont icon-sousuo'></text>
  9. <input type='text' :placeholder="$t('搜索商品名称')" @confirm="searchSubmitValue" confirm-type='search'
  10. name="search" placeholder-class='placeholder'></input>
  11. </view>
  12. </view>
  13. <view class="scroll-box">
  14. <view class='aside'>
  15. <scroll-view scroll-y="true" scroll-with-animation='true' style="height: calc(100% - 100rpx)">
  16. <view class='item acea-row row-center-wrapper' :class='index==navActive?"on":""'
  17. v-for="(item,index) in productList" :key="index" @click='tap(index,"b"+index)'>
  18. <text>{{$t(item.cate_name)}}</text>
  19. </view>
  20. <!-- #ifdef APP-PLUS -->
  21. <view class="item" v-if="newData.status && newData.status.status"></view>
  22. <!-- #endif -->
  23. </scroll-view>
  24. </view>
  25. <view class='conter'>
  26. <scroll-view scroll-y="true" :scroll-into-view="toView" @scroll="scroll" scroll-with-animation='true'
  27. style="height: 100%;" class="conterScroll">
  28. <block v-for="(item,index) in productList" :key="index">
  29. <view class='listw' :id="'b'+index">
  30. <view class='title acea-row row-center-wrapper'>
  31. <view class='line'></view>
  32. <view class='name'>{{$t(item.cate_name)}}</view>
  33. <view class='line'></view>
  34. </view>
  35. <view class='list acea-row'>
  36. <block v-for="(itemn,indexn) in item.children" :key="indexn">
  37. <navigator hover-class='none'
  38. :url='"/pages/goods/goods_list/index?sid="+itemn.id+"&title="+itemn.cate_name'
  39. class='item acea-row row-column row-middle'>
  40. <view class='picture'>
  41. <image :src='itemn.pic' v-if="itemn.pic"></image>
  42. <image src="/static/images/sort-img.png" v-else></image>
  43. </view>
  44. <view class='name line1'>{{$t(itemn.cate_name)}}</view>
  45. </navigator>
  46. </block>
  47. </view>
  48. </view>
  49. </block>
  50. <view :style='"height:"+(height-300)+"rpx;"' v-if="number<15"></view>
  51. </scroll-view>
  52. </view>
  53. </view>
  54. <view class="foot" v-if="is_diy && newData.status && newData.status.status">
  55. <view class="page-footer" id="target" :style="{'background-color':newData.bgColor.color[0].item}">
  56. <view class="foot-item" v-for="(item,index) in newData.menuList" :key="index" @click="goRouter(item)">
  57. <block v-if="item.link == activeRouter">
  58. <image :src="item.imgList[0]"></image>
  59. <view class="txt" :style="{color:newData.activeTxtColor.color[0].item}">{{$t(item.name)}}</view>
  60. </block>
  61. <block v-else>
  62. <image :src="item.imgList[1]"></image>
  63. <view class="txt" :style="{color:newData.txtColor.color[0].item}">{{$t(item.name)}}</view>
  64. </block>
  65. <div class="count-num" v-if="item.link === '/pages/order_addcart/order_addcart' && cartNum > 0">
  66. {{cartNum}}
  67. </div>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  75. import {
  76. getCategoryList
  77. } from '@/api/store.js';
  78. import {
  79. mapState,
  80. mapGetters
  81. } from "vuex"
  82. import pageFooter from '@/components/pageFooter/index.vue'
  83. import {
  84. getNavigation
  85. } from '@/api/public.js'
  86. const app = getApp();
  87. export default {
  88. components: {
  89. pageFooter
  90. },
  91. data() {
  92. return {
  93. navlist: [],
  94. productList: [],
  95. navActive: 0,
  96. number: "",
  97. is_diy: uni.getStorageSync('is_diy'),
  98. height: 0,
  99. hightArr: [],
  100. toView: "",
  101. tabbarH: 0,
  102. footH: 0,
  103. windowHeight: 0,
  104. newData: {},
  105. activeRouter: '',
  106. pageHeight: '100%',
  107. sysHeight: sysHeight,
  108. // #ifdef APP-PLUS
  109. pageHeight: app.globalData.windowHeight,
  110. // #endif
  111. footerStatus: false,
  112. lock: false
  113. }
  114. },
  115. computed: {
  116. ...mapState({
  117. cartNum: state => state.indexData.cartNum
  118. })
  119. },
  120. mounted() {
  121. let that = this
  122. let routes = getCurrentPages();
  123. let curRoute = routes[routes.length - 1].route
  124. this.activeRouter = '/' + curRoute
  125. this.getAllCategory();
  126. // if (uni.getStorageSync('FOOTER_BAR')) {
  127. // this.footerStatus = true
  128. // uni.hideTabBar()
  129. // getNavigation().then(res => {
  130. // this.newData = res.data
  131. // })
  132. // }
  133. // #ifdef H5
  134. uni.getSystemInfo({
  135. success: function(res) {
  136. that.pageHeight = res.windowHeight + 'px'
  137. }
  138. });
  139. // #endif
  140. },
  141. methods: {
  142. getNav() {
  143. getNavigation().then(res => {
  144. this.newData = res.data
  145. if (this.newData.status && this.newData.status.status) {
  146. uni.hideTabBar()
  147. } else {
  148. uni.showTabBar()
  149. }
  150. })
  151. },
  152. goRouter(item) {
  153. var pages = getCurrentPages();
  154. var page = (pages[pages.length - 1]).$page.fullPath;
  155. if (item.link == page) return
  156. uni.switchTab({
  157. url: item.link,
  158. fail(err) {
  159. uni.redirectTo({
  160. url: item.link
  161. })
  162. }
  163. })
  164. },
  165. footHeight(data) {
  166. this.footH = data
  167. },
  168. infoScroll: function() {
  169. let that = this;
  170. let len = that.productList.length;
  171. this.number = that.productList[len - 1].children.length;
  172. //设置商品列表高度
  173. uni.getSystemInfo({
  174. success: function(res) {
  175. that.height = (res.windowHeight) * (750 / res.windowWidth) - 98;
  176. },
  177. });
  178. let height = 0;
  179. let hightArr = [];
  180. for (let i = 0; i < len; i++) {
  181. //获取元素所在位置
  182. let query = uni.createSelectorQuery().in(this);
  183. let idView = "#b" + i;
  184. query.select(idView).boundingClientRect();
  185. query.exec(function(res) {
  186. let top = res[0].top;
  187. hightArr.push(top);
  188. that.hightArr = hightArr
  189. });
  190. };
  191. },
  192. tap: function(index, id) {
  193. this.toView = id;
  194. this.navActive = index;
  195. this.$set(this, 'lock', true);
  196. },
  197. getAllCategory: function() {
  198. let that = this;
  199. getCategoryList().then(res => {
  200. that.productList = res.data;
  201. that.$nextTick(res => {
  202. that.infoScroll();
  203. })
  204. })
  205. },
  206. scroll: function(e) {
  207. let scrollTop = e.detail.scrollTop;
  208. let scrollArr = this.hightArr;
  209. if (this.lock) {
  210. this.$set(this, 'lock', false);
  211. return;
  212. }
  213. for (let i = 0; i < scrollArr.length; i++) {
  214. if (scrollTop >= 0 && scrollTop < scrollArr[1] - scrollArr[0]) {
  215. this.navActive = 0
  216. } else if (scrollTop >= scrollArr[i] - scrollArr[0] && scrollTop < scrollArr[i + 1] - scrollArr[
  217. 0]) {
  218. this.navActive = i
  219. } else if (scrollTop >= scrollArr[scrollArr.length - 1] - scrollArr[0]) {
  220. this.navActive = scrollArr.length - 1
  221. }
  222. }
  223. },
  224. searchSubmitValue: function(e) {
  225. if (this.$util.trim(e.detail.value).length > 0)
  226. uni.navigateTo({
  227. url: '/pages/goods/goods_list/index?searchValue=' + e.detail.value
  228. })
  229. else
  230. return this.$util.Tips({
  231. title: this.$t(`搜索商品名称`)
  232. });
  233. },
  234. }
  235. }
  236. </script>
  237. <style>
  238. page {
  239. height: 100%;
  240. }
  241. </style>
  242. <style scoped lang="scss">
  243. /deep/uni-scroll-view {
  244. padding-bottom: 0 !important;
  245. }
  246. .sys-title {
  247. z-index: 10;
  248. position: relative;
  249. height: 40px;
  250. line-height: 40px;
  251. font-size: 30rpx;
  252. color: #333;
  253. background-color: #fff;
  254. // #ifdef APP-PLUS
  255. text-align: center;
  256. // #endif
  257. // #ifdef MP
  258. text-align: left;
  259. padding-left: 30rpx;
  260. // #endif
  261. }
  262. .sys-head {
  263. background-color: #fff;
  264. }
  265. .productSort {
  266. display: flex;
  267. flex-direction: column;
  268. //#ifdef MP
  269. height: calc(100vh - var(--window-top)) !important;
  270. //#endif
  271. //#ifndef MP
  272. height: 100vh //#endif
  273. }
  274. .productSort .header {
  275. width: 100%;
  276. height: 96rpx;
  277. background-color: #fff;
  278. border-bottom: 1rpx solid #f5f5f5;
  279. }
  280. .productSort .header .input {
  281. width: 700rpx;
  282. height: 60rpx;
  283. background-color: #f5f5f5;
  284. border-radius: 50rpx;
  285. box-sizing: border-box;
  286. padding: 0 25rpx;
  287. }
  288. .productSort .header .input .iconfont {
  289. font-size: 35rpx;
  290. color: #555;
  291. }
  292. .productSort .header .input .placeholder {
  293. color: #999;
  294. }
  295. .productSort .header .input input {
  296. font-size: 26rpx;
  297. height: 100%;
  298. width: 597rpx;
  299. }
  300. .productSort .scroll-box {
  301. flex: 1;
  302. overflow: hidden;
  303. display: flex;
  304. }
  305. // #ifndef MP
  306. uni-scroll-view {
  307. padding-bottom: 100rpx;
  308. }
  309. // #endif
  310. .productSort .aside {
  311. width: 180rpx;
  312. height: 100%;
  313. overflow: hidden;
  314. background-color: #f7f7f7;
  315. }
  316. .productSort .aside .item {
  317. height: 100rpx;
  318. width: 100%;
  319. font-size: 26rpx;
  320. color: #424242;
  321. text-align: center;
  322. }
  323. .productSort .aside .item.on {
  324. background-color: #fff;
  325. border-left: 4rpx solid var(--view-theme);
  326. width: 100%;
  327. color: var(--view-theme);
  328. font-weight: bold;
  329. }
  330. .productSort .conter {
  331. flex: 1;
  332. height: 100%;
  333. overflow: hidden;
  334. padding: 0 14rpx;
  335. background-color: #fff;
  336. position: relative;
  337. }
  338. .productSort .conter .listw {
  339. padding-top: 20rpx;
  340. }
  341. .productSort .conter .listw .title {
  342. height: 90rpx;
  343. }
  344. .productSort .conter .listw .title .line {
  345. width: 100rpx;
  346. height: 2rpx;
  347. background-color: #f0f0f0;
  348. }
  349. .productSort .conter .listw .title .name {
  350. font-size: 28rpx;
  351. color: #333;
  352. margin: 0 30rpx;
  353. font-weight: bold;
  354. }
  355. .productSort .conter .list {
  356. flex-wrap: wrap;
  357. }
  358. .productSort .conter .list .item {
  359. width: 177rpx;
  360. margin-top: 26rpx;
  361. }
  362. .productSort .conter .list .item .picture {
  363. width: 120rpx;
  364. height: 120rpx;
  365. border-radius: 50%;
  366. }
  367. .productSort .conter .list .item .picture image {
  368. width: 100%;
  369. height: 100%;
  370. border-radius: 50%;
  371. }
  372. .productSort .conter .list .item .name {
  373. font-size: 24rpx;
  374. color: #333;
  375. height: 56rpx;
  376. line-height: 56rpx;
  377. width: 120rpx;
  378. text-align: center;
  379. }
  380. .page-footer {
  381. position: fixed;
  382. bottom: 0;
  383. z-index: 30;
  384. display: flex;
  385. align-items: center;
  386. justify-content: space-around;
  387. width: 100%;
  388. height: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  389. height: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  390. box-sizing: border-box;
  391. border-top: solid 1rpx #F3F3F3;
  392. background-color: #fff;
  393. box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
  394. padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
  395. padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
  396. .foot-item {
  397. display: flex;
  398. width: max-content;
  399. align-items: center;
  400. justify-content: center;
  401. flex-direction: column;
  402. position: relative;
  403. .count-num {
  404. position: absolute;
  405. display: flex;
  406. justify-content: center;
  407. align-items: center;
  408. width: 40rpx;
  409. height: 40rpx;
  410. top: 0rpx;
  411. right: -15rpx;
  412. color: #fff;
  413. font-size: 20rpx;
  414. background-color: #FD502F;
  415. border-radius: 50%;
  416. padding: 4rpx;
  417. }
  418. }
  419. .foot-item image {
  420. height: 50rpx;
  421. width: 50rpx;
  422. text-align: center;
  423. margin: 0 auto;
  424. }
  425. .foot-item .txt {
  426. font-size: 24rpx;
  427. &.active {}
  428. }
  429. }
  430. </style>