goods_cate1.vue 12 KB

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