index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. <template>
  2. <view class="uni-flex lists jz_lists uni-column jz_myfit jz_agent ">
  3. <view class="tab-search uni-column">
  4. <view class="tabList">
  5. <scroll-view class="uni-flex uni-swiper-tab" scroll-x :scroll-left="scrollLeft" id="tab-bars">
  6. <view v-for="(tab, i) in categorys" :key="i" class="swiper-tab-list" :id="'tab' + tab.id" :data-current="index"
  7. @click="changeTab(i, tab)">
  8. <view class="productTitle-item uni-flex uni-column">
  9. <image :src="tab.ico"></image>
  10. <view :class="['picname', curIndex == i ? 'activeLine' : '']">{{ tab.title }}</view>
  11. </view>
  12. </view>
  13. </scroll-view>
  14. <view style="height: 10upx;background: #F4F5F6;width: 100%;"></view>
  15. </view>
  16. <view class="search uni-flex ">
  17. <!-- :class="[sortNavfixed ? 'fixed' : '']" -->
  18. <view class="uni-flex-item uni-flex search-input">
  19. <input placeholder="关键词" @input="inputChange" v-model="key" :focus="isFocus" @focus="focus" @blur="blur" class="uni-flex-item" />
  20. <icon v-if="isDelShow" class="icon icon-del" @click.stop="clear" type="clear" size="12"></icon>
  21. </view>
  22. <view class="searchBtn uni-flex justify-align-center" @click="search">
  23. <image src="../../../static/search02.png"></image>
  24. <text>搜索</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="agent-product uni-flex uni-column" id="list">
  29. <view class=" uni-flex uni-row uni-flex-item myfit-product" v-for="(item, key) in products" :key="key">
  30. <view class="uni-flex product-img justify-align-center">
  31. <image class="image" :class="{ lazy: !item.display }" :id="'lazy' + key" :data-index="0" @load="imageOnLoad(item, key)"
  32. :src="item.display ? item.pic : ''" style="left: 0;top: 0;"/>
  33. <view class="loadbox" :class="{loaded:item.loaded}" style="left: 0;top: 0;">
  34. <view class="load"></view>
  35. </view>
  36. </view>
  37. <view class="uni-flex uni-column space-between product-contents">
  38. <view class="uni-flex title">{{item.title}}</view>
  39. <view class="prices uni-flex uni-flex">
  40. <view class="uni-flex">我的价格:{{item.costPrice}}/瓶</view>
  41. <view class="uni-flex" style="margin-left: 20upx;">代理价格:{{item.salePrice}}/瓶</view>
  42. </view>
  43. <view class="uni-flex fen">
  44. 利润:<text>{{Math.round(item.salePrice*100-item.costPrice*100)/100}}</text>元
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
  50. <backTop :src="backTop.src" :scrollTop="backTop.scrollTop"></backTop>
  51. </view>
  52. </template>
  53. <script>
  54. import {
  55. mapState,
  56. mapMutations
  57. } from 'vuex';
  58. import util from '../../../common/util.js';
  59. import loadMore from '@/components/uni-load-more.vue';
  60. import backTop from '@/components/uni-top.vue';
  61. var index;
  62. export default {
  63. components: {
  64. loadMore,
  65. backTop
  66. },
  67. data() {
  68. return {
  69. loadingType: 0,
  70. contentText: {
  71. contentdown: "上拉显示更多",
  72. contentrefresh: "正在加载...",
  73. contentnomore: "没有更多数据了"
  74. },
  75. item: {},
  76. showSlider: false,
  77. sliderIndex: 0,
  78. items: [{}, {}, {}],
  79. user: {},
  80. userid: 0,
  81. active: false,
  82. isDelShow: false,
  83. isFocus: false,
  84. sortNavfixed: false,
  85. show: false,
  86. windowHeight: 0,
  87. type: 0,
  88. cates: [{
  89. css: '',
  90. id: '0',
  91. no: '000',
  92. show: '0',
  93. subs: [],
  94. title: '全部'
  95. }],
  96. categorys: [{
  97. ico: '../../../static/merchant/all.png',
  98. id: '000',
  99. no: '000',
  100. title: '全部'
  101. }],
  102. category: {},
  103. products: [],
  104. product: {
  105. ratio: 0
  106. },
  107. productKey: 0,
  108. curIndex: 0,
  109. key: '',
  110. id: '000',
  111. clock: 0,
  112. scrollLeft: 0,
  113. backTop: {
  114. "src": "../../static/top.png",
  115. "scrollTop": 0
  116. }
  117. };
  118. },
  119. computed: {
  120. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  121. },
  122. onLoad(e) {
  123. index = 1;
  124. if (!this.hasLogin) {
  125. uni.navigateTo({
  126. url: '../login/login',
  127. });
  128. } else {
  129. this.windowHeight = uni.getSystemInfoSync().windowHeight;
  130. this.user = JSON.parse(this.jyyUser);
  131. this.getCategory();
  132. this.getData();
  133. if (e.n > 4) {
  134. setTimeout(() => {
  135. this.public(e.n, e);
  136. }, 200);
  137. }
  138. }
  139. },
  140. onPageScroll(e) {
  141. this.backTop.scrollTop = e.scrollTop;
  142. util.loads(this.products, 'list', this.windowHeight);
  143. uni.createSelectorQuery()
  144. .selectAll('#list')
  145. .boundingClientRect(datas => {
  146. this.sortNavfixed = parseInt(datas[0].top) < 78 ? true : false;
  147. })
  148. .exec();
  149. },
  150. onPullDownRefresh() {
  151. this.getData();
  152. setTimeout(function() {
  153. uni.stopPullDownRefresh();
  154. }, 1000);
  155. },
  156. onReachBottom() {
  157. this.getData();
  158. },
  159. methods: {
  160. setKey(e) {
  161. this.sliderIndex = e;
  162. },
  163. hidesliderPopup() {
  164. this.showSlider = false;
  165. },
  166. set(productId, ratio, share) {
  167. uni.request({
  168. url: this.webUrl + 'SetUserRatio',
  169. method: 'POST',
  170. header: {
  171. 'content-type': 'application/x-www-form-urlencoded'
  172. },
  173. data: {
  174. userid: this.user.id,
  175. setid: this.userid,
  176. productId: productId,
  177. price: share,
  178. ratio: ratio.toFixed(2)
  179. },
  180. success: res => {
  181. uni.showLoading({
  182. title: res.data.result.resultInfo,
  183. icon: "none"
  184. });
  185. setTimeout(function() {
  186. uni.hideLoading();
  187. }, 500);
  188. },
  189. fail: () => {
  190. mescroll.endErr();
  191. },
  192. complete: () => {}
  193. });
  194. },
  195. sliderChange(e) {
  196. let index;
  197. // #ifndef H5
  198. index = e.currentTarget.id;
  199. // #endif
  200. // #ifdef H5
  201. index = this.sliderIndex;
  202. // #endif
  203. this.products[index].share = parseInt((this.products[index].salePrice - this.products[index].costPrice) * e.detail.value /
  204. 100);
  205. this.set(this.products[index].id, e.detail.value / 100, this.products[index].share);
  206. },
  207. focus() {
  208. this.active = true;
  209. //HM修改 增加获取焦点判断
  210. if (this.key != '') {
  211. this.isDelShow = true;
  212. }
  213. },
  214. inputChange(event) {
  215. var keyword = event.detail.value;
  216. this.$emit('input', keyword);
  217. if (this.key) {
  218. this.isDelShow = true;
  219. }
  220. },
  221. blur() {
  222. this.isFocus = false;
  223. if (!this.key) {
  224. this.active = false;
  225. }
  226. },
  227. clear() {
  228. //HM修改 收起键盘
  229. uni.hideKeyboard();
  230. this.isFocus = false;
  231. this.key = '';
  232. this.active = false;
  233. //HM修改 清空内容时候触发组件input
  234. this.isDelShow = false;
  235. },
  236. search() {
  237. index = 1;
  238. this.loadingType = 0;
  239. this.products = [];
  240. this.getData();
  241. },
  242. getData() {
  243. if (this.loadingType !== 0) {
  244. return;
  245. }
  246. uni.request({
  247. url: this.webUrl + 'List',
  248. method: 'POST',
  249. header: {
  250. 'content-type': 'application/x-www-form-urlencoded'
  251. },
  252. data: {
  253. pageNum: index,
  254. id: this.id,
  255. userid: this.user.id,
  256. key: this.key,
  257. setid: this.userid
  258. },
  259. success: res => {
  260. if (res.data.result.ratioProducts.length > 0) {
  261. this.products = this.products.concat(res.data.result.ratioProducts);
  262. setTimeout(() => {
  263. util.loads(this.products, 'list', this.windowHeight);
  264. }, 500)
  265. } else {
  266. this.loadingType = 2;
  267. return;
  268. }
  269. if (index == parseInt(res.data.result.pages)) {
  270. this.loadingType = 2;
  271. return;
  272. } else {
  273. this.loadingType = 0;
  274. }
  275. index++;
  276. },
  277. fail: () => {},
  278. complete: () => {}
  279. });
  280. },
  281. getElSize(id) {
  282. //得到元素的size
  283. return new Promise((res, rej) => {
  284. uni.createSelectorQuery()
  285. .select('#' + id)
  286. .fields({
  287. size: true,
  288. scrollOffset: true
  289. },
  290. data => {
  291. res(data);
  292. }
  293. )
  294. .exec();
  295. });
  296. },
  297. async public(i, e) {
  298. this.id = e.no;
  299. let index = i;
  300. let tabBars = await this.getElSize('tab-bars'),
  301. tabBarScrollLeft = tabBars.scrollLeft; //点击的时候记录并设置scrollLeft
  302. let width = 0;
  303. for (let j = 0; j < index; j++) {
  304. let result = await this.getElSize('tab' + this.categorys[j].id);
  305. width += result.width;
  306. }
  307. let winWidth = uni.getSystemInfoSync().windowWidth,
  308. nowElement = await this.getElSize('tab' + this.categorys[index].id),
  309. nowWidth = nowElement.width;
  310. if (width + nowWidth - tabBarScrollLeft > winWidth - nowWidth) {
  311. this.scrollLeft = width + nowWidth * 3 - winWidth;
  312. }
  313. if (width < tabBarScrollLeft) {
  314. this.scrollLeft = width;
  315. }
  316. },
  317. changeTab(i, e) {
  318. if (this.curIndex === i) {
  319. return false;
  320. } else {
  321. this.public(i, e);
  322. this.isClickChange = true;
  323. this.curIndex = i;
  324. index = 1;
  325. this.loadingType = 0;
  326. this.products = [];
  327. this.getData();
  328. setTimeout(() => {
  329. util.loads(this.products, 'list', this.windowHeight);
  330. }, 500)
  331. }
  332. },
  333. imageOnLoad(e) {
  334. e.loaded = true;
  335. },
  336. getCategory() {
  337. uni.request({
  338. url: this.webUrl + 'Categorys',
  339. method: 'POST',
  340. header: {
  341. 'content-type': 'application/x-www-form-urlencoded'
  342. },
  343. success: res => {
  344. this.cates = this.cates.concat(res.data.result.uniClassifys);
  345. this.categorys = this.categorys.concat(res.data.result.categorys);
  346. },
  347. fail: () => {},
  348. complete: () => {}
  349. });
  350. },
  351. goAgentPriduct: function(e) {
  352. uni.navigateTo({
  353. url: 'product?id=' + e.id
  354. });
  355. }
  356. }
  357. };
  358. </script>
  359. <style>
  360. .tab-search {
  361. position: fixed;
  362. width: 100%;
  363. z-index: 9999;
  364. }
  365. .jz_myfit.jz_lists scroll-view.uni-swiper-tab {
  366. margin-bottom: 0;
  367. }
  368. .jz_myfit .myfit-product .product-img{
  369. width: 180upx;
  370. height: 180upx;
  371. margin-right: 20upx;
  372. margin-top: 17.5upx;
  373. }
  374. .jz_myfit .myfit-product image{
  375. width: 180upx;
  376. height: 180upx;
  377. border-radius: 20upx;
  378. }
  379. /* #ifdef H5 */
  380. .myfit-slider input {
  381. display: block;
  382. text-align: center;
  383. width: 200upx;
  384. background: #dd0101;
  385. color: #FFFFFF;
  386. border-radius: 30upx;
  387. font-size: 26upx;
  388. }
  389. .myfit-slider>view:last-child {
  390. margin-right: 10upx;
  391. }
  392. /* #endif */
  393. slider {
  394. display: inline;
  395. margin-left: 0;
  396. margin-right: 0;
  397. }
  398. .jz_agent.jz_myfit .agent-product {
  399. margin-top: 280upx;
  400. }
  401. .jz_myfit .myfit-product {
  402. padding: 10upx;
  403. }
  404. .jz_myfit .product-contents{
  405. padding: 25upx 0;
  406. width: auto!important;
  407. margin-left: 0!important;
  408. }
  409. .fixed {
  410. width: 100%;
  411. position: fixed;
  412. left: 0;
  413. top: 0;
  414. /* #ifdef H5 */
  415. /* top: 84upx; */
  416. top: 44px;
  417. /* #endif */
  418. background: #ffffff;
  419. margin: 0 !import;
  420. z-index: 999;
  421. box-sizing: border-box;
  422. border-bottom: 2upx solid #eeeeee;
  423. transform: translateZ(0);
  424. -webkit-transform: translateZ(0);
  425. }
  426. .activeLine {
  427. border-bottom: 2upx solid #ff273c;
  428. }
  429. .jz_lists {
  430. position: relative;
  431. }
  432. .jz_lists scroll-view.uni-swiper-tab {
  433. border-bottom: 0;
  434. height: auto;
  435. line-height: auto;
  436. padding-top: 20upx;
  437. }
  438. .jz_lists .productTitle-item {
  439. justify-content: center;
  440. align-items: center;
  441. }
  442. .jz_lists .productTitle-item .picname {
  443. line-height: 60upx;
  444. }
  445. .jz_lists .productTitle-item image {
  446. width: 50upx;
  447. height: 50upx;
  448. }
  449. .lists .sortNav .Nav:first-child {
  450. /* border-left: none; */
  451. }
  452. .list .tab-bar-wrap {
  453. width: 200upx;
  454. }
  455. ::-webkit-scrollbar {
  456. display: none;
  457. }
  458. .lists .nav-left {
  459. width: 218upx;
  460. border-right: solid 1upx #e0e0e0;
  461. padding-top: 20upx;
  462. box-sizing: border-box;
  463. }
  464. .lists .nav-left .nav-left-title {
  465. height: 80upx;
  466. font-weight: 600;
  467. margin: 0 auto;
  468. margin-left: 10upx;
  469. }
  470. .lists .nav-left-item {
  471. height: 110upx;
  472. font-size: 30upx;
  473. display: flex;
  474. align-items: center;
  475. justify-content: center;
  476. }
  477. .lists .nav-left-item image {
  478. width: 40upx;
  479. height: 40upx;
  480. margin-right: 18upx;
  481. }
  482. .lists .nav-right {
  483. width: 100%;
  484. box-sizing: border-box;
  485. }
  486. .uni-tab-bar-loading {
  487. width: 100%;
  488. }
  489. .uni-tab-bar-loading .loading-text {
  490. margin-top: 50upx;
  491. font-size: 28upx;
  492. text-align: center;
  493. }
  494. .lists .list {
  495. width: 100%;
  496. height: 92%;
  497. }
  498. #tab-bar {
  499. background-color: #ffffff;
  500. padding-bottom: 60upx;
  501. overflow: hidden;
  502. }
  503. .uni-tab-bar .active {
  504. color: #ffe200;
  505. /* border-left: 10upx solid #ffe200; */
  506. }
  507. .prices .prices-cart image {
  508. width: 52upx;
  509. height: 50upx;
  510. margin-right: 10upx;
  511. }
  512. .prices .prices-salePrice {
  513. font-size: 22upx;
  514. color: #f00000;
  515. }
  516. .image {
  517. position: absolute;
  518. width: 100%;
  519. height: 100%;
  520. }
  521. .list-collapse {
  522. padding-left: 36upx;
  523. box-sizing: border-box;
  524. }
  525. .lists .sortNav .navActive {
  526. color: #d80000;
  527. }
  528. </style>