index.vue 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  1. <template>
  2. <view class="uni-flex lists jz_lists uni-column jz_myfit jz_agent cart jz_cart ">
  3. <view class="tab-search uni-column" style="background-color: #F1F1F1;">
  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" @click="changeTab(i, tab)">
  7. <view class="productTitle-item uni-flex uni-column">
  8. <view :class="['picname', curIndex == i ? 'activeLine' : '']">{{ tab.title }}</view>
  9. </view>
  10. </view>
  11. </scroll-view>
  12. </view>
  13. <view class="search uni-flex ">
  14. <view class="uni-flex-item uni-flex search-input">
  15. <input
  16. placeholder="请选择地区"
  17. @input="inputChange"
  18. v-model="key"
  19. :focus="isFocus"
  20. @focus="focus"
  21. @blur="blur"
  22. class="uni-flex-item"
  23. disabled="disabled"
  24. @click="showMulLinkageThreePicker"
  25. />
  26. <view class="icon icon-del uni-flex justify-align-center" style="height: 100%;" @click.stop="clear" v-if="isDelShow"><icon type="clear" size="12"></icon></view>
  27. </view>
  28. <view class="searchBtn uni-flex justify-align-center" @click="search">
  29. <image src="../../../static/search02.png"></image>
  30. <text>搜索</text>
  31. </view>
  32. </view>
  33. <view class="uni-flex uni-filter">
  34. <view class="uni-filter-line"></view>
  35. <view class="uni-flex uni-filter-item" :class="[item.sel ? 'uni-filter-sel' : '']" v-for="(item, key) in filter" :key="key" @click="filterList(item, key)">
  36. {{ item.title }}
  37. </view>
  38. </view>
  39. </view>
  40. <view class="agent-product uni-flex uni-column">
  41. <view class="agentTop uni-flex space-between" id="list">
  42. <view class="topItem uni-flex uni-column align-items " v-if="item.filter" v-for="(item, key) in products" :key="key" @click.stop="Agencychecked(products, key)">
  43. <view class="uni-flex topItem-wrap">
  44. <image
  45. class="image topImg"
  46. :class="{ lazy: !item.display }"
  47. :id="'lazy' + key"
  48. :data-index="0"
  49. @load="imageOnLoad(item, key)"
  50. :src="item.display ? item.pic : ''"
  51. />
  52. <view class="loadbox" :class="{ loaded: item.loaded }"><view class="load"></view></view>
  53. </view>
  54. <view class=" uni-flex uni-column">
  55. <view class="uni-flex agencyTitle justify-align-center" v-if="!item.show">{{ item.title }}</view>
  56. <view class=" agencyTitle titleSingle " v-if="item.show">{{ item.title }}</view>
  57. <view class="uni-flex justify-align-center" style="color: #f00000;" v-if="user.agency == 1">¥{{ item.salePrice.toFixed(2) }}</view>
  58. <!-- 全部部分-->
  59. <view class="uni-flex space-between selectContent justify-align-center" v-if="btnStatus == -1 || btnStatus == 2">
  60. <view class="uni-flex justify-align-center center common" v-if="item.agency == 0">可代理</view>
  61. <view class="uni-flex justify-align-center center common" v-if="item.agency == 1">被代理</view>
  62. <view class="uni-flex justify-align-center center common" v-if="item.agency == 2">已代理</view>
  63. </view>
  64. <!-- 非全部部分 -->
  65. <view class="uni-flex space-between selectContent justify-align-center" v-if="(btnStatus == 1) | (btnStatus == 0)">
  66. <view class="uni-flex common justify-align-center" v-if="item.agency == 0">可代理</view>
  67. <view class="uni-flex justify-align-center uni-flex-item common" v-if="item.agency == 1">被代理</view>
  68. <view class="uni-flex common justify-align-center" v-if="item.agency == 2">已代理</view>
  69. </view>
  70. </view>
  71. <view class="selectBtn uni-flex " v-if="item.agency == 0 && btnStatus == 0">
  72. <image src="../../../static/select.png" v-if="!item.select"></image>
  73. <image src="../../../static/selectActive.png" v-if="item.select"></image>
  74. </view>
  75. </view>
  76. </view>
  77. <view class="agentBottom uni-flex space-between"></view>
  78. </view>
  79. <load-more :loadingType="loadingType" :contentText="contentText" class="loadMore"></load-more>
  80. <backTop :src="backTop.src" :scrollTop="backTop.scrollTop"></backTop>
  81. <mpvue-city-picker
  82. :themeColor="themeColor"
  83. ref="mpvueCityPicker"
  84. :pickerValueDefault="cityPickerValueDefault"
  85. @onCancel="onCancel"
  86. @onConfirm="onConfirm"
  87. @onReset="onReset"
  88. ></mpvue-city-picker>
  89. <!-- v-if="products.length > 0 && canAgent && btnStatus == 0" -->
  90. <view class="uni-flex uni-row footer" v-if="products.length > 0 && btnStatus == 0 && isShow == true">
  91. <view class="uni-flex uni-flex-item ">
  92. <view class="uni-flex item-sel "><view :class="[yuan, { bg: allSelect }]" @click="AllSelect()"></view></view>
  93. <view class="uni-flex uni-flex-item itemAll">全选</view>
  94. <view class="uni-flex uni-flex-item3"></view>
  95. <view class="uni-flex uni-flex-item3 justify-align-center">
  96. <view class="uni-flex uni-flex-item btn" @click="submit()" :class="{ activeBg: bgChange }">提交申请 共({{ filterCount }})</view>
  97. </view>
  98. </view>
  99. </view>
  100. <!-- 可代理按钮 -->
  101. <!-- <view class="beginCard_btn" v-if="products.length > 0 && canAgent && btnStatus == 0">
  102. <button @click="submit" class="uni-flex justify-align-center">提交申请 共({{ filterCount }})个</button>
  103. </view> -->
  104. </view>
  105. </template>
  106. <script>
  107. import { mapState, mapMutations } from 'vuex';
  108. import mpvueCityPicker from '@/components/mpvue-citypicker/mpvueCityPicker.vue';
  109. import util from '../../../common/util.js';
  110. import address from '../../../common/getAddessId.js';
  111. import amap from '../../../common/amap-wx.js';
  112. import loadMore from '@/components/uni-load-more.vue';
  113. import backTop from '@/components/uni-top.vue';
  114. var index;
  115. export default {
  116. computed: {
  117. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  118. },
  119. components: {
  120. loadMore,
  121. backTop,
  122. mpvueCityPicker
  123. },
  124. data() {
  125. return {
  126. isShow: false,
  127. newProducts: [],
  128. allSelect: false,
  129. bgChange: false,
  130. btnStatus: -1, //-1:全部,0:可代理,1:被代理,2:已代理
  131. canAgent: false, //可代理按钮状态
  132. deleteArr: [], //被取消勾选的产品数组
  133. agencyCheckArr: [],
  134. cityPickerValueDefault: [0, 0, 1],
  135. themeColor: '#007AFF',
  136. pickerText: '',
  137. amapPlugin: null,
  138. amapKey: '408ca849e7fb38410487446db08ec898',
  139. addressName: '',
  140. backTop: {
  141. src: '../../../static/top.png',
  142. scrollTop: 0
  143. },
  144. loadingType: 0,
  145. contentText: {
  146. contentdown: '上拉显示更多',
  147. contentrefresh: '正在加载...',
  148. contentnomore: '没有更多数据了'
  149. },
  150. active: false,
  151. isDelShow: false,
  152. isFocus: false,
  153. sortNavfixed: false,
  154. show: false,
  155. windowHeight: 0,
  156. type: 0,
  157. cates: [
  158. {
  159. css: '',
  160. id: '0',
  161. no: '000',
  162. show: '0',
  163. subs: [],
  164. title: '全部品牌'
  165. }
  166. ],
  167. categorys: [
  168. {
  169. ico: '../../../static/merchant/all.png',
  170. id: '000',
  171. no: '000',
  172. title: '全部品牌'
  173. }
  174. ],
  175. category: {},
  176. products: [],
  177. curIndex: 0,
  178. key: '',
  179. id: '000',
  180. scrollLeft: 0,
  181. scrollY: 0,
  182. agentStatus: 1,
  183. user: {},
  184. newArr: [], //勾选的产品数组(可代理)
  185. ordernewArr: [], //勾选的产品数组(已代理)
  186. addressId: '',
  187. filterCount: 0,
  188. filter: [
  189. {
  190. title: '全部',
  191. no: -1,
  192. sel: true
  193. },
  194. {
  195. title: '可代理',
  196. no: 0,
  197. sel: false
  198. },
  199. {
  200. title: '被代理',
  201. no: 1,
  202. sel: false
  203. },
  204. {
  205. title: '已代理',
  206. no: 2,
  207. sel: false
  208. }
  209. ],
  210. popupType: '',
  211. popupContent: '',
  212. popupShow: false
  213. };
  214. },
  215. onPageScroll(e) {
  216. this.backTop.scrollTop = e.scrollTop;
  217. util.loads(this.products, 'list', this.windowHeight);
  218. uni.createSelectorQuery()
  219. .selectAll('#list')
  220. .boundingClientRect(datas => {
  221. this.sortNavfixed = parseInt(datas[0].top) < 78 ? true : false;
  222. })
  223. .exec();
  224. },
  225. onShow() {},
  226. onLoad(e) {
  227. this.user = JSON.parse(this.jyyUser);
  228. index = 1;
  229. this.windowHeight = uni.getSystemInfoSync().windowHeight;
  230. this.getCategory();
  231. if (e.n > 4) {
  232. setTimeout(() => {
  233. this.public(e.n, e);
  234. }, 200);
  235. }
  236. // #ifdef MP-WEIXIN
  237. this.amapPlugin = new amap.AMapWX({
  238. key: this.amapKey
  239. });
  240. this.getRegeo();
  241. // #endif
  242. // #ifdef H5
  243. uni.getLocation({
  244. type: 'wgs84',
  245. geocode: true,
  246. success: res => {
  247. let gitude = res.longitude + ',' + res.latitude;
  248. let that = this;
  249. uni.request({
  250. url: 'https://restapi.amap.com/v3/geocode/regeo',
  251. method: 'POST',
  252. header: {
  253. 'content-type': 'application/x-www-form-urlencoded'
  254. },
  255. data: {
  256. output: 'JSON',
  257. location: gitude,
  258. key: 'bf5fad85b6706db59ac208af908aa99e'
  259. },
  260. success: result => {
  261. let addresss = result.data.regeocode.addressComponent;
  262. console.log(address);
  263. let province = addresss.province;
  264. let city = addresss.city;
  265. let district = addresss.district;
  266. that.addressName = province + '-' + city + '-' + district;
  267. that.addressId = address.getAddressid(province, city, district);
  268. that.key = that.addressName;
  269. that.getData();
  270. },
  271. fail: () => {},
  272. complete: () => {}
  273. });
  274. }
  275. });
  276. // #endif
  277. },
  278. onPullDownRefresh() {
  279. this.getData();
  280. setTimeout(function() {
  281. uni.stopPullDownRefresh();
  282. }, 1000);
  283. },
  284. onReachBottom() {
  285. this.getData();
  286. },
  287. watch: {
  288. products(val) {
  289. for (let i = 0; i < this.filter.length; i++) {
  290. if (this.filter[i].sel) {
  291. this.filterProducts(this.filter[i].no);
  292. }
  293. }
  294. }
  295. },
  296. methods: {
  297. ...mapMutations(['setAgency']),
  298. footerShow(products){
  299. if( this.btnStatus == 0){
  300. for (let i = 0; i < products.length; i++) {
  301. if (products[i].agency == 0) {
  302. this.isShow = true;
  303. break;
  304. } else {
  305. this.isShow = false;
  306. }
  307. }
  308. }
  309. },
  310. getLocation(e, that) {},
  311. // 全选
  312. AllSelect() {
  313. let selected = this.allSelect;
  314. this.allSelect = !selected;
  315. let arr = this.newProducts;
  316. for (let i = 0; i < arr.length; i++) {
  317. if (arr[i].agency == 0) {
  318. //循环商品为选中
  319. if (this.allSelect == true) {
  320. this.newProducts[i].select = true;
  321. }
  322. if (this.allSelect == false) {
  323. this.newProducts[i].select = false;
  324. }
  325. }
  326. }
  327. this.allSl(); //商品数量
  328. },
  329. //结算商品数量
  330. allSl() {
  331. let js = 0;
  332. let arr = this.newProducts;
  333. for (let i = 0; i < arr.length; i++) {
  334. js += this.newProducts[i].select;
  335. }
  336. this.filterCount = js;
  337. if (this.filterCount > 0) {
  338. this.bgChange = true;
  339. } else {
  340. this.bgChange = false;
  341. }
  342. },
  343. filterProducts(no) {
  344. for (let i = 0; i < this.products.length; i++) {
  345. this.products[i].filter = false;
  346. }
  347. for (let i = 0; i < this.products.length; i++) {
  348. if (no == -1) {
  349. this.products[i].filter = true;
  350. } else {
  351. if (no == this.products[i].agency) {
  352. this.products[i].filter = true;
  353. this.newProducts = [];
  354. for (let j = 0; j < this.products.length; j++) {
  355. if (this.products[j].filter) {
  356. this.newProducts.push(this.products[j]);
  357. }
  358. }
  359. }
  360. }
  361. }
  362. },
  363. filterList(item, key) {
  364. for (let i = 0; i < this.filter.length; i++) {
  365. if (i == key) {
  366. this.$set(item, 'sel', true);
  367. } else {
  368. this.$set(this.filter[i], 'sel', false);
  369. }
  370. }
  371. this.filterProducts(item.no);
  372. this.btnStatus = item.no;
  373. this.footerShow(this.products);
  374. },
  375. //提交申请
  376. submit() {
  377. let idArr = [];
  378. for (let i = 0; i < this.products.length; i++) {
  379. if (this.products[i].select === true && this.products[i].agency == 0) {
  380. this.agencyCheckArr.push(this.products[i].id);
  381. }
  382. if (this.products[i].select === false && this.products[i].agency == 0) {
  383. idArr.push(this.products[i].id); //存放没勾选的产品id
  384. }
  385. }
  386. let intersection = this.agencyCheckArr.filter(v => idArr.includes(v)); //数组交集
  387. let sa = new Set(this.agencyCheckArr);
  388. let sb = new Set(intersection);
  389. let complement = [...this.agencyCheckArr.filter(x => !sb.has(x)), ...intersection.filter(x => !sa.has(x))]; //数组补集
  390. this.agencyCheckArr = complement;
  391. setTimeout(() => {
  392. let Arr = [];
  393. let filterarr = this.agencyCheckArr.filter((value, index) => {
  394. //数组去重
  395. return this.agencyCheckArr.indexOf(value) === index;
  396. });
  397. for (let j = 0; j < filterarr.length; j++) {
  398. Arr.push({
  399. id: filterarr[j]
  400. });
  401. }
  402. this.newArr = Arr;
  403. let agencyArr = [];
  404. for (let y = 0; y < this.products.length; y++) {
  405. for (let z = 0; z < this.newArr.length; z++) {
  406. if (this.newArr[z].id == this.products[y].id) {
  407. agencyArr.push({
  408. title: this.products[y].title,
  409. pic: this.products[y].pic,
  410. id: this.products[y].id
  411. });
  412. }
  413. }
  414. }
  415. if (agencyArr.length > 0) {
  416. this.setAgency(JSON.stringify(agencyArr));
  417. uni.navigateTo({
  418. url: 'applyfor?key=' + this.key + '&addressId=' + this.addressId
  419. });
  420. } else {
  421. uni.showToast({
  422. title: '请选择代理商品!',
  423. icon: 'none'
  424. });
  425. }
  426. }, 500);
  427. },
  428. Agencychecked(e, index) {
  429. switch (e[index].agency) {
  430. case 0:
  431. e[index].select = !e[index].select;
  432. this.$set(this.products[index], 'select', e[index].select);
  433. //判断商品是否全部选中,是的话,全选也选中
  434. let json = this.newProducts.length;
  435. let all = true;
  436. for (let i = 0; i < json; i++) {
  437. all *= this.newProducts[i].select;
  438. }
  439. if (all == true) {
  440. this.allSelect = true;
  441. } else {
  442. this.allSelect = false;
  443. }
  444. this.allSl();
  445. break;
  446. case 1:
  447. uni.showToast({
  448. title: '此商品已被代理',
  449. icon: 'none'
  450. });
  451. break;
  452. case 2:
  453. uni.showToast({
  454. title: '此商品我已代理',
  455. icon: 'none'
  456. });
  457. break;
  458. }
  459. },
  460. onConfirm(e) {
  461. this.pickerText = e.label;
  462. this.key = this.pickerText;
  463. this.addressId = e.id;
  464. },
  465. getRegeo() {
  466. uni.showLoading({
  467. title: '获取信息中'
  468. });
  469. this.amapPlugin.getRegeo({
  470. success: data => {
  471. let province = data[0].regeocodeData.addressComponent.province;
  472. let city = data[0].regeocodeData.addressComponent.city;
  473. let district = data[0].regeocodeData.addressComponent.district;
  474. this.addressName = province + '-' + city + '-' + district;
  475. this.addressId = address.getAddressid(province, city, district);
  476. this.key = this.addressName;
  477. this.getData();
  478. uni.hideLoading();
  479. }
  480. });
  481. },
  482. showMulLinkageThreePicker() {
  483. this.$refs.mpvueCityPicker.show();
  484. },
  485. focus() {
  486. this.active = true;
  487. //HM修改 增加获取焦点判断
  488. if (this.key != '') {
  489. this.isDelShow = true;
  490. }
  491. },
  492. inputChange(event) {
  493. var keyword = event.detail.value;
  494. this.$emit('input', keyword);
  495. if (this.key) {
  496. this.isDelShow = true;
  497. }
  498. },
  499. blur() {
  500. this.isFocus = false;
  501. if (!this.key) {
  502. this.active = false;
  503. }
  504. },
  505. clear() {
  506. //HM修改 收起键盘
  507. uni.hideKeyboard();
  508. this.isFocus = false;
  509. this.key = '';
  510. this.active = false;
  511. //HM修改 清空内容时候触发组件input
  512. this.isDelShow = false;
  513. },
  514. search() {
  515. index = 1;
  516. this.loadingType = 0;
  517. this.products = [];
  518. this.filterCount = 0;
  519. this.allSelect = false;
  520. this.getData();
  521. },
  522. onCancel(e) {
  523. //console.log(e)
  524. },
  525. onReset() {
  526. this.pickerText = '';
  527. this.key = '';
  528. },
  529. getData() {
  530. if (this.loadingType !== 0) {
  531. return;
  532. }
  533. uni.request({
  534. url: this.webUrl + 'List',
  535. method: 'POST',
  536. header: {
  537. 'content-type': 'application/x-www-form-urlencoded'
  538. },
  539. data: {
  540. pageNum: index,
  541. brand: this.id,
  542. area: this.key,
  543. userid: this.user.id,
  544. pageSize: 100,
  545. agentStatus: 1,
  546. agency: this.user.agency
  547. },
  548. success: res => {
  549. if (res.data.result.ratioProducts.length > 0) {
  550. this.products = this.products.concat(res.data.result.ratioProducts);
  551. this.footerShow(this.products);
  552. setTimeout(() => {
  553. util.loads(this.products, 'list', this.windowHeight);
  554. }, 500);
  555. } else {
  556. this.loadingType = 2;
  557. return;
  558. }
  559. if (index == parseInt(res.data.result.pages)) {
  560. this.loadingType = 2;
  561. return;
  562. } else {
  563. this.loadingType = 0;
  564. }
  565. index++;
  566. },
  567. fail: () => {},
  568. complete: () => {}
  569. });
  570. },
  571. getElSize(id) {
  572. //得到元素的size
  573. return new Promise((res, rej) => {
  574. uni.createSelectorQuery()
  575. .select('#' + id)
  576. .fields(
  577. {
  578. size: true,
  579. scrollOffset: true
  580. },
  581. data => {
  582. res(data);
  583. }
  584. )
  585. .exec();
  586. });
  587. },
  588. async public(i, e) {
  589. this.id = e.id;
  590. let index = i;
  591. let tabBars = await this.getElSize('tab-bars'),
  592. tabBarScrollLeft = tabBars.scrollLeft; //点击的时候记录并设置scrollLeft
  593. let width = 0;
  594. for (let j = 0; j < index; j++) {
  595. let result = await this.getElSize('tab' + this.categorys[j].id);
  596. width += result.width;
  597. }
  598. let winWidth = uni.getSystemInfoSync().windowWidth,
  599. nowElement = await this.getElSize('tab' + this.categorys[index].id),
  600. nowWidth = nowElement.width;
  601. if (width + nowWidth - tabBarScrollLeft > winWidth - nowWidth) {
  602. this.scrollLeft = width + nowWidth * 3 - winWidth;
  603. }
  604. if (width < tabBarScrollLeft) {
  605. this.scrollLeft = width;
  606. }
  607. },
  608. changeTab(i, e) {
  609. if (this.curIndex === i) {
  610. return false;
  611. } else {
  612. this.public(i, e);
  613. this.isClickChange = true;
  614. this.curIndex = i;
  615. this.filterCount = 0;
  616. this.allSelect = false;
  617. this.bgChange = false;
  618. index = 1;
  619. this.loadingType = 0;
  620. this.products = [];
  621. this.getData();
  622. setTimeout(() => {
  623. util.loads(this.products, 'list', this.windowHeight);
  624. }, 500);
  625. }
  626. },
  627. imageOnLoad(e) {
  628. e.loaded = true;
  629. },
  630. getCategory() {
  631. uni.request({
  632. url: this.webUrl + 'Brands',
  633. method: 'POST',
  634. header: {
  635. 'content-type': 'application/x-www-form-urlencoded'
  636. },
  637. success: res => {
  638. this.cates = this.cates.concat(res.data.result.brands);
  639. this.categorys = this.categorys.concat(res.data.result.brands);
  640. },
  641. fail: () => {},
  642. complete: () => {}
  643. });
  644. }
  645. }
  646. };
  647. </script>
  648. <style>
  649. /*----- 改动的 */
  650. /* #ifdef H5 */
  651. .jz_cart .footer {
  652. bottom: 0 !important;
  653. }
  654. /* #endif */
  655. .activeBg {
  656. background: #dd0101 !important;
  657. }
  658. .jz_cart.jz_agent .btn {
  659. border-radius: 6rpx;
  660. background: #cdcdcd;
  661. letter-spacing: 4rpx;
  662. }
  663. .jz_agent .common {
  664. padding: 0 20upx;
  665. background-color: #f1f1f1;
  666. }
  667. .jz_agent .selectContent {
  668. padding: 0 20upx;
  669. }
  670. .jz_agent .selectBtn {
  671. position: absolute;
  672. right: 0upx;
  673. bottom: 0upx;
  674. }
  675. .jz_agent .selectBtn image {
  676. width: 40upx;
  677. height: 40upx;
  678. }
  679. .jz_agent .agencyStatus {
  680. position: absolute;
  681. top: 50%;
  682. left: 50%;
  683. margin-left: -50upx;
  684. margin-top: -50upx;
  685. width: 100upx;
  686. height: 100upx;
  687. background: rgba(0, 0, 0, 0.4);
  688. z-index: 888;
  689. border-radius: 50%;
  690. color: #ffffff;
  691. }
  692. .jz_agent .loadMore {
  693. margin-bottom: 100upx;
  694. }
  695. .jz_agent .agent-product .agentTop .topItem {
  696. position: relative;
  697. padding-bottom: 20upx;
  698. border-radius: 8upx;
  699. box-shadow: 0 0 10rpx 0 #b2b2b2;
  700. margin-bottom: 30upx;
  701. }
  702. .jz_agent .beginCard_btn {
  703. position: fixed;
  704. left: 0;
  705. bottom: 20upx;
  706. width: 100%;
  707. z-index: 999;
  708. }
  709. .jz_agent .beginCard_btn button {
  710. display: block;
  711. width: 550upx;
  712. height: 115upx;
  713. line-height: 115rpx;
  714. font-size: 28rpx;
  715. background: url(../../../static/btn.png) no-repeat;
  716. background-size: 550upx 115upx;
  717. color: #ffffff;
  718. }
  719. .jz_agent .checkStyle {
  720. position: absolute;
  721. top: 0upx;
  722. left: -16upx;
  723. width: 0;
  724. height: 0;
  725. z-index: 100;
  726. border-top: 50upx solid #11c200;
  727. border-right: 50upx solid transparent;
  728. }
  729. .jz_agent .checkStyleActick {
  730. position: absolute;
  731. top: 0upx;
  732. left: -16upx;
  733. width: 0;
  734. height: 0;
  735. z-index: 100;
  736. border-top: 50upx solid #ff0000;
  737. border-right: 50upx solid transparent;
  738. }
  739. .jz_agent .topItem {
  740. position: relative;
  741. z-index: 666;
  742. overflow: hidden;
  743. }
  744. .jz_agent .swiper-tab-list {
  745. width: 170upx !important;
  746. }
  747. .jz_lists scroll-view.uni-swiper-tab {
  748. padding-top: 0upx !important;
  749. }
  750. .jz_myfit.jz_lists scroll-view.uni-swiper-tab {
  751. padding-top: 0upx !important;
  752. margin-bottom: 0upx !important;
  753. padding-bottom: 0upx;
  754. }
  755. .jz_agent .agencyBtn {
  756. color: #09bb07;
  757. background: #11c200 !important;
  758. padding: 0 10upx;
  759. }
  760. /* .jz_agent .agent-product {
  761. margin-top: 250upx !important;
  762. } */
  763. /* ------改动的 */
  764. .jz_agent .agencyTitle.titleSingle {
  765. margin: 0 auto;
  766. width: 210upx;
  767. font-size: 26upx;
  768. overflow: hidden;
  769. text-overflow: ellipsis;
  770. white-space: nowrap;
  771. text-align: center;
  772. }
  773. .jz_agent .topItem-wrap {
  774. width: 224upx;
  775. height: 224upx;
  776. position: relative;
  777. }
  778. .jz_agent .agencyTitle {
  779. width: 224upx;
  780. overflow: hidden;
  781. white-space: nowrap;
  782. }
  783. .jz_agent .search-input .icon-del.icon {
  784. width: 50upx;
  785. top: 0;
  786. }
  787. .jz_myfit .loadbox {
  788. border-top-left-radius: 20upx;
  789. border-top-right-radius: 20upx;
  790. }
  791. .tab-search {
  792. position: fixed;
  793. width: 100%;
  794. z-index: 8888;
  795. }
  796. .jz_myfit.jz_lists scroll-view.uni-swiper-tab {
  797. margin-bottom: 0;
  798. }
  799. .jz_agent .agent-product {
  800. margin-top: 320upx;
  801. }
  802. .fixed {
  803. width: 100%;
  804. position: fixed;
  805. left: 0;
  806. top: 0;
  807. /* #ifdef H5 */
  808. /* top: 84upx; */
  809. top: 44px;
  810. /* #endif */
  811. background: #ffffff;
  812. margin: 0 !import;
  813. z-index: 999;
  814. box-sizing: border-box;
  815. border-bottom: 2upx solid #eeeeee;
  816. transform: translateZ(0);
  817. -webkit-transform: translateZ(0);
  818. }
  819. .activeLine {
  820. border-bottom: 2upx solid #ff273c;
  821. }
  822. .jz_lists {
  823. position: relative;
  824. }
  825. .jz_lists scroll-view.uni-swiper-tab {
  826. border-bottom: 0;
  827. height: auto;
  828. line-height: auto;
  829. padding-top: 20upx;
  830. }
  831. .jz_lists .productTitle-item {
  832. justify-content: center;
  833. align-items: center;
  834. }
  835. .jz_lists .productTitle-item .picname {
  836. line-height: 60upx;
  837. }
  838. .jz_lists .productTitle-item image {
  839. width: 50upx;
  840. height: 50upx;
  841. }
  842. .lists .sortNav .Nav:first-child {
  843. /* border-left: none; */
  844. }
  845. .list .tab-bar-wrap {
  846. width: 200upx;
  847. }
  848. ::-webkit-scrollbar {
  849. display: none;
  850. }
  851. .lists .nav-left {
  852. width: 218upx;
  853. border-right: solid 1upx #e0e0e0;
  854. padding-top: 20upx;
  855. box-sizing: border-box;
  856. }
  857. .lists .nav-left .nav-left-title {
  858. height: 80upx;
  859. font-weight: 600;
  860. margin: 0 auto;
  861. margin-left: 10upx;
  862. }
  863. .lists .nav-left-item {
  864. height: 110upx;
  865. font-size: 30upx;
  866. display: flex;
  867. align-items: center;
  868. justify-content: center;
  869. }
  870. .lists .nav-left-item image {
  871. width: 40upx;
  872. height: 40upx;
  873. margin-right: 18upx;
  874. }
  875. .lists .nav-right {
  876. width: 100%;
  877. box-sizing: border-box;
  878. }
  879. .uni-tab-bar-loading {
  880. width: 100%;
  881. }
  882. .uni-tab-bar-loading .loading-text {
  883. margin-top: 50upx;
  884. font-size: 28upx;
  885. text-align: center;
  886. }
  887. .lists .list {
  888. width: 100%;
  889. height: 92%;
  890. }
  891. #tab-bar {
  892. background-color: #ffffff;
  893. padding-bottom: 60upx;
  894. overflow: hidden;
  895. }
  896. .uni-tab-bar .active {
  897. color: #ffe200;
  898. /* border-left: 10upx solid #ffe200; */
  899. }
  900. .prices .prices-cart image {
  901. width: 52upx;
  902. height: 50upx;
  903. margin-right: 10upx;
  904. }
  905. .prices .prices-salePrice {
  906. font-size: 22upx;
  907. color: #f00000;
  908. }
  909. .image {
  910. position: absolute;
  911. width: 100%;
  912. height: 100%;
  913. }
  914. .placeholder {
  915. background: #e2e2e2 url(../../../static/load.gif) center center no-repeat;
  916. opacity: 1;
  917. transition: opacity 0.4s linear;
  918. }
  919. .placeholder.loaded {
  920. opacity: 0;
  921. }
  922. .list-collapse {
  923. padding-left: 36upx;
  924. box-sizing: border-box;
  925. }
  926. .lists .sortNav .navActive {
  927. color: #d80000;
  928. }
  929. .uni-filter {
  930. margin-top: 8upx;
  931. background-color: #ffffff;
  932. padding: 16upx 24upx;
  933. font-size: 28upx;
  934. justify-content: space-between;
  935. position: relative;
  936. }
  937. .uni-filter .uni-filter-item {
  938. background-color: #f1f1f1;
  939. padding: 8upx 0;
  940. border-radius: 4upx;
  941. width: 24%;
  942. height: 32upx;
  943. justify-content: center;
  944. align-items: center;
  945. position: relative;
  946. }
  947. .uni-filter .uni-filter-sel {
  948. background-color: #c50200;
  949. color: #ffffff;
  950. }
  951. /* .uni-filter .uni-filter-line {
  952. position: absolute;
  953. height: 4upx;
  954. background: #f1f1f1;
  955. top: 50%;
  956. left: 0;
  957. margin-top: -2upx;
  958. width: 100%;
  959. } */
  960. .jz_agent .search {
  961. margin-top: 8upx;
  962. }
  963. </style>