myfit.vue 12 KB

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