shop.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. <template>
  2. <view class="box">
  3. <view class="topbox">
  4. <view class="sstop">
  5. <image src="../../static/timg/icon_search@2x.png" mode="" class="sstopimg"></image>
  6. <input type="text" v-model="name" placeholder="请输入商品名称" class="sstopInput" @confirm="ssList">
  7. <image src="../../static/img/icon_close.png" mode="" @click="empty" v-if="inputChShow" class="inputCh"></image>
  8. </view>
  9. <scroll-view scroll-x="true" class="scroll-Y" >
  10. <view class="classificationBox">
  11. <view class="classification" v-for="(item,index) in categoryList" @click="topClick(index,item)">
  12. <view class="classificationName classificationNameActive" v-if="topIndex==index" :style="{color:'#'+themeColor}">{{item.name}}</view>
  13. <view class="classificationName" v-else >{{item.name}}</view>
  14. <view class="classificationHx" :style="{background:'#'+themeColor}" v-if="topIndex==index"></view>
  15. </view>
  16. </view>
  17. </scroll-view>
  18. </view>
  19. <view style="height: 180rpx;"></view>
  20. <view class="paixuBox">
  21. <view class="paixuLine" @click="defaultpx" :class="{pxActive:defaultpxActive}">
  22. 默认排序
  23. </view>
  24. <view class="paixuLine" @click="xlPx(1)">
  25. <view :class="{pxActive:salessort}">销量</view>
  26. <view class="paixuLineTbBox">
  27. <view class="paixuLineTbtop" >
  28. <image v-if="salessorts" src="../../static/timg/icon_arrow_up_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  29. <image v-else src="../../static/timg/icon_arrow_up_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  30. </view>
  31. <view class="paixuLineTbtop">
  32. <image v-if="salessortx" src="../../static/timg/icon_arrow_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  33. <image v-else src="../../static/timg/icon_arrow_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="paixuLine" @click="jgpx(1)">
  38. <view :class="{pxActive:pricesort}">价格</view>
  39. <view class="paixuLineTbBox">
  40. <view class="paixuLineTbtop" >
  41. <image v-if="pricesorts" src="../../static/timg/icon_arrow_up_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  42. <image v-else src="../../static/timg/icon_arrow_up_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  43. </view>
  44. <view class="paixuLineTbtop">
  45. <image v-if="pricesortx" src="../../static/timg/icon_arrow_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  46. <image v-else src="../../static/timg/icon_arrow_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <scroll-view scroll-y="true" class="scroll-Y goodsSw goodsBox" :scroll-top="scrollTop" @scroll="onscroll" >
  52. <view style="padding-bottom: 30rpx;"><!-- class="goodsBox" -->
  53. <view class="hotGoodsLine" v-for="(item,index) in list" @click="goDetail(item)">
  54. <view>
  55. <image :src="item.url" v-if="item.url" mode="" @error="defImg()" class="hotGoodsLineImg"></image>
  56. <image v-else src="../../static/timg/noimg.png" mode="" class="hotGoodsLineImg"></image>
  57. </view>
  58. <view class="hotGoodsLineRIght">
  59. <view class="goodsName">{{item.name}}</view>
  60. <view class="timeTbox" v-if="item.goodsDownTime">
  61. <view class="timeK" style="margin-left: 0;">{{item.shengyuD}}</view>
  62. <view class="timeviewTxt" > 天</view>
  63. <view class="timeK">{{item.shengyuH}}</view>
  64. <view class="timeviewTxt"> 时</view>
  65. <view class="timeK">{{item.shengyuM}}</view>
  66. <view class="timeviewTxt" > 分 &nbsp;后结束抢购</view>
  67. </view>
  68. <view class="hotGoodsLineRIghtBottom">
  69. <view class="goodsPrice">
  70. <view class="goodsPrice1" >{{item.saleLabel}}</view><!-- :style="{color:'#'+themeColor}" -->
  71. <view class="goodsPrice2" >¥</view><!-- :style="{color:'#'+themeColor}" -->
  72. <view class="goodsPrice3" >{{item.salePrice?item.salePrice:item.scribingPrice}}
  73. <span v-if="item.categoryIds=='7B97D114-C419-42B2-9C1E-0B4CA284CDA0'">万</span>
  74. </view>
  75. <view class="goodsPrice4" v-if="item.showLabel&&item.scribingPrice">
  76. <span v-if="item.showLabel.indexOf('1')!=-1">¥{{item.scribingPrice}}</span>
  77. </view>
  78. </view>
  79. <view class="Sold" >
  80. <view v-if="item.showLabel&&item.showLabel.indexOf('3')!=-1">
  81. 已售 {{item.saleQty>0?item.saleQty:0}}
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. <nodata v-if="list.length==0"></nodata>
  88. </view>
  89. </scroll-view>
  90. <!-- 手机号授权 -->
  91. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  92. <view class="authorizCont" @click.stop="">
  93. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  94. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  95. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  96. </view>
  97. <view style="text-align: center;padding-top: 56rpx;">
  98. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  99. </view>
  100. </view>
  101. <img src="../../static/timg/btn_top@2x.png" alt="" class="btn_top" @click="btnTop">
  102. </view>
  103. </template>
  104. <script>
  105. import nodata from '../../components/nodata/nodata.vue'
  106. export default {
  107. components: {
  108. nodata
  109. },
  110. data() {
  111. return {
  112. userInfo:'',
  113. salessort:false,
  114. salessorts:false,
  115. salessortx:false,
  116. pricesort:false,
  117. pricesorts:false,
  118. pricesortx:false,
  119. topIndex:0,
  120. categoryList:'',
  121. page:1,
  122. limit:10,
  123. name:'',
  124. categoryID:'',
  125. order:'',
  126. orderBy:'',
  127. list:[],
  128. defaultImg: require("../../static/timg/noimg.png"),
  129. defaultpxActive:false,
  130. authorizShow:false,
  131. code:'',
  132. wxOpenData:'',
  133. shopcategoryID:'',
  134. inputChShow:false,
  135. ext:'',
  136. scrollTop:0,
  137. themeColor:'',
  138. }
  139. },
  140. watch:{
  141. name(val){
  142. console.log(val)
  143. if(val){
  144. this.inputChShow=true
  145. }
  146. },
  147. },
  148. onLoad(opt) {
  149. console.log(getApp().globalData.shopcategoryID)
  150. //this.userInfo = uni.getStorageSync("userInfo");
  151. /* this.shopcategoryID=getApp().globalData.shopcategoryID;
  152. if(this.shopcategoryID){
  153. this.categoryID=this.shopcategoryID
  154. } */
  155. this.userInfo=this.$store.state.userInfo;
  156. this.wxOpenData=this.$store.state.wxOpenData;
  157. this.themeColor = uni.getStorageSync("themeColor");
  158. if(this.themeColor){
  159. if(this.themeColor=='6F2BE8'){
  160. var backgroundImage='/static/tabimg/shop6F2BE8.png'
  161. }
  162. if(this.themeColor=='1677FF'){
  163. var backgroundImage='/static/tabimg/shop1677FF.png'
  164. }
  165. if(this.themeColor=='FF4F00'){
  166. var backgroundImage='/static/tabimg/shopFF4F00.png'
  167. }
  168. if(this.themeColor=='D53533'){
  169. var backgroundImage='/static/tabimg/shop1.png'
  170. }
  171. uni.setTabBarStyle({
  172. // color: '#FF0000',
  173. selectedColor: '#'+this.themeColor,
  174. })
  175. uni.setTabBarItem({
  176. index: 1,
  177. text: '商城',
  178. selectedIconPath: backgroundImage
  179. })
  180. }
  181. this.ext=this.$common.getExtStoreId();
  182. this.getcategoryList();
  183. this.getlistOpenGoodsPage();
  184. /* uni.getLocation({
  185. type: 'gcj02',
  186. success: function(res) {
  187. console.log(res)
  188. },
  189. fail(err) {
  190. console.log(err)
  191. }
  192. }); */
  193. },
  194. onShow() {
  195. var shopcategoryID = uni.getStorageSync("shopcategoryID")
  196. if(shopcategoryID){
  197. uni.removeStorageSync('shopcategoryID');
  198. if(this.categoryList){
  199. this.categoryList.forEach((item,index)=>{
  200. //console.log(item.id)
  201. if(item.id==shopcategoryID){
  202. this.topIndex=index
  203. }
  204. })
  205. console.log("this.categoryID"+this.categoryID)
  206. if(this.topIndex){
  207. this.categoryID=shopcategoryID;
  208. }else{
  209. this.categoryID=''
  210. }
  211. this.list=[];
  212. this.page=1;
  213. this.getlistOpenGoodsPage()
  214. }
  215. }
  216. },
  217. methods: {
  218. onPageScroll(e){
  219. //console.log(e)
  220. //this.scrollTop=e.scrollTop
  221. },
  222. btnTop(){
  223. uni.pageScrollTo({
  224. scrollTop: 0,
  225. });
  226. // console.log(this.scrollTop)
  227. // this.$nextTick(function() {
  228. // this.scrollTop = 0
  229. // });
  230. },
  231. onscroll(e){
  232. //console.log(e)
  233. this.scrollTop = e.detail.scrollTop
  234. },
  235. empty(){
  236. console.log("情况")
  237. this.name='';
  238. this.inputChShow=false;
  239. this.list=[];
  240. this.page=1;
  241. this.getlistOpenGoodsPage()
  242. },
  243. decryptPhoneNumber: function(e) {
  244. console.log(e);
  245. this.code=e.detail.code
  246. this.wxPhoneLogin()
  247. this.authorizShow=false;
  248. },
  249. wxPhoneLogin(){
  250. var that=this;
  251. this.$http('miniApp2/sys/wxPhoneLogin', {
  252. appId:'wx33053a645546ec31',
  253. unionId:'EEADACCD-8A19-499D-8AD7-6975D2C93243',
  254. code:this.code,
  255. openId:this.wxOpenData.openid
  256. },'POST').then(res => {
  257. var data = res.data;
  258. if(data.loginInfo){
  259. this.userInfo=data.loginInfo.openUser;
  260. this.wxOpenData=data.loginInfo;
  261. this.$store.commit('mutationswxOpenData', data)
  262. this.$store.commit('mutationsuserInfo', this.userInfo)
  263. this.topIndex=1;
  264. this.list=[];
  265. this.page=1;
  266. this.getlistOpenGoodsPage()
  267. }
  268. })
  269. },
  270. xlPx(num){
  271. this.salessort=true;
  272. this.defaultpxActive=false;
  273. this.pricesort=false;
  274. this.pricesort=false;
  275. this.pricesorts=false;
  276. this.pricesortx=false;
  277. if(this.salessorts){
  278. num=2
  279. }
  280. if(num==1){
  281. this.salessorts=true;
  282. this.salessortx=false;
  283. this.orderBy='asc';
  284. }else{
  285. this.salessorts=false;
  286. this.salessortx=true;
  287. this.orderBy='desc';
  288. }
  289. this.order='SaleQty';
  290. this.list=[];
  291. this.page=1;
  292. this.getlistOpenGoodsPage()
  293. },
  294. jgpx(type){
  295. this.salessort=false;
  296. this.defaultpxActive=false;
  297. this.pricesort=true;
  298. this.salessort=false;
  299. this.salessorts=false;
  300. this.salessortx=false;
  301. if(this.pricesorts){
  302. type=2
  303. }
  304. if(type==1){
  305. this.pricesorts=true;
  306. this.pricesortx=false;
  307. this.orderBy='asc';
  308. }else{
  309. this.pricesorts=false;
  310. this.pricesortx=true;
  311. this.orderBy='desc';
  312. }
  313. this.order='SalePrice';
  314. this.list=[];
  315. this.page=1;
  316. this.getlistOpenGoodsPage()
  317. },
  318. defaultpx(){
  319. this.defaultpxActive=true;
  320. this.order='';
  321. this.orderBy='';
  322. this.salessort=false;
  323. this.salessorts=false;
  324. this.salessortx=false;
  325. this.pricesort=false;
  326. this.pricesorts=false;
  327. this.pricesortx=false;
  328. //this.topIndex=0;
  329. this.list=[];
  330. this.page=1;
  331. this.getlistOpenGoodsPage()
  332. },
  333. defImg(event){
  334. // console.log(event)
  335. /* let img = event.srcElement;
  336. img.src = this.defaultImg;
  337. img.onerror = null; //防止闪图 */
  338. },
  339. topClick(index,item){
  340. //console.log(item)
  341. this.topIndex=index;
  342. this.list=[];
  343. this.page=1;
  344. this.categoryID=item.id;
  345. this.getlistOpenGoodsPage()
  346. },
  347. ssList(){
  348. this.topIndex=0;
  349. this.list=[];
  350. this.page=1;
  351. this.getlistOpenGoodsPage()
  352. },
  353. goDetail(item){
  354. // if(!this.userInfo){
  355. // this.authorizShow=true;
  356. // }else{
  357. // }
  358. uni.navigateTo({
  359. url:'goodsDetail?id='+item.id
  360. })
  361. },
  362. getcategoryList(){
  363. this.$http('openMall/categoryList', {
  364. unionId:this.ext.unionId
  365. },'GET').then(res => {
  366. this.categoryList=res.data;
  367. var obj={
  368. id:'',
  369. name:'全部'
  370. }
  371. this.categoryList.unshift(obj);
  372. var shopcategoryID = uni.getStorageSync("shopcategoryID")
  373. if(shopcategoryID){
  374. //console.log(this.shopcategoryID)
  375. this.categoryList.forEach((item,index)=>{
  376. //console.log(item.id)
  377. if(item.id==this.shopcategoryID){
  378. this.topIndex=index
  379. }
  380. })
  381. if(this.topIndex){
  382. this.categoryID=shopcategoryID;
  383. }else{
  384. this.categoryID=''
  385. }
  386. }
  387. })
  388. },
  389. getlistOpenGoodsPage(){
  390. uni.showLoading({ title: '加载中'});
  391. console.log(this.categoryID)
  392. var that=this;
  393. this.$http('openMall/listOpenGoodsPage', {
  394. page:this.page,
  395. limit:this.limit,
  396. name:this.name,
  397. categoryID:this.categoryID,
  398. orderBy:this.order,
  399. order:this.orderBy,
  400. unionId:this.ext.unionId
  401. },'GET').then(res => {
  402. uni.hideLoading();
  403. res.data.Items.forEach(item=>{
  404. if(item.goodsDownTime){
  405. item.shengyuM=''
  406. item.shengyuD=''
  407. item.shengyuH=''
  408. //console.log(item)
  409. //that.clock(item)
  410. let _this = this
  411. let today = new Date() // 当前时间
  412. let h = today.getHours()
  413. let m = today.getMinutes()
  414. let s = today.getSeconds()
  415. let stopTime = new Date(item.goodsDownTime.replace(/-/g, '/')) // 结束时间
  416. if (Number(new Date(item.goodsDownTime).getTime()) < Number(new Date().getTime())) {
  417. this.activityEnd = true
  418. return
  419. }
  420. let stopH = stopTime.getHours()
  421. let stopM = stopTime.getMinutes()
  422. let stopS = stopTime.getSeconds()
  423. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  424. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  425. let D = parseInt(shenyu) - parseInt(shengyuD * 60 * 60 * 24 * 1000)// 除去天的毫秒数
  426. let shengyuH = parseInt(D / (60 * 60 * 1000)) // 除去天的毫秒数转换成小时
  427. let H = D - shengyuH * 60 * 60 * 1000 // 除去天、小时的毫秒数
  428. let shengyuM = parseInt(H / (60 * 1000)) // 除去天的毫秒数转换成分钟
  429. let M = H - shengyuM * 60 * 1000// 除去天、小时、分的毫秒数
  430. let S = parseInt((shenyu - shengyuD * 60 * 60 * 24 * 1000 - shengyuH * 60 * 60 * 1000 - shengyuM * 60 * 1000) / 1000)// 除去天、小时、分的毫秒数转化为秒
  431. item.shengyuM=shengyuM;
  432. item.shengyuD=shengyuD;
  433. item.shengyuH=shengyuH;
  434. }
  435. })
  436. var data=res.data.Items;
  437. this.list=this.list.concat(data);
  438. console.log(this.list)
  439. })
  440. },
  441. clock(item){
  442. console.log(item)
  443. if(!item){
  444. return false;
  445. }
  446. let _this = this
  447. let today = new Date() // 当前时间
  448. let h = today.getHours()
  449. let m = today.getMinutes()
  450. let s = today.getSeconds()
  451. let stopTime = new Date(item.goodsDownTime.replace(/-/g, '/')) // 结束时间
  452. if (Number(new Date(item.goodsDownTime).getTime()) < Number(new Date().getTime())) {
  453. this.activityEnd = true
  454. return
  455. }
  456. let stopH = stopTime.getHours()
  457. let stopM = stopTime.getMinutes()
  458. let stopS = stopTime.getSeconds()
  459. let shenyu = stopTime.getTime() - today.getTime() // 倒计时毫秒数
  460. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  461. let D = parseInt(shenyu) - parseInt(shengyuD * 60 * 60 * 24 * 1000)// 除去天的毫秒数
  462. let shengyuH = parseInt(D / (60 * 60 * 1000)) // 除去天的毫秒数转换成小时
  463. let H = D - shengyuH * 60 * 60 * 1000 // 除去天、小时的毫秒数
  464. let shengyuM = parseInt(H / (60 * 1000)) // 除去天的毫秒数转换成分钟
  465. let M = H - shengyuM * 60 * 1000// 除去天、小时、分的毫秒数
  466. let S = parseInt((shenyu - shengyuD * 60 * 60 * 24 * 1000 - shengyuH * 60 * 60 * 1000 - shengyuM * 60 * 1000) / 1000)// 除去天、小时、分的毫秒数转化为秒
  467. this.shengyuM=shengyuM;
  468. this.shengyuD=shengyuD;
  469. this.shengyuH=shengyuH;
  470. setTimeout(_this.clock, 500)
  471. },
  472. },
  473. onReachBottom(){
  474. this.page++;
  475. this.getlistOpenGoodsPage()
  476. //console.log("shanglas")
  477. },
  478. onPullDownRefresh(){
  479. this.list=[];
  480. this.page=1;
  481. this.getlistOpenGoodsPage();
  482. setTimeout(() => {
  483. uni.stopPullDownRefresh(); // 关闭下拉刷新
  484. }, 2000);
  485. }
  486. }
  487. </script>
  488. <style scoped lang="less">
  489. .btn_top{
  490. width: 100rpx;
  491. height: 100rpx;
  492. position: fixed;
  493. right: 24rpx;
  494. bottom: 40rpx;
  495. }
  496. .timeTbox{
  497. height: 60rpx;
  498. display: flex;
  499. padding-top: 15rpx;
  500. font-size: 24rpx;
  501. font-family: PingFangSC-Regular, PingFang SC;
  502. font-weight: 400;
  503. color: #764D49;
  504. }
  505. .timeviewTxt{
  506. line-height: 41rpx;
  507. padding-top: 10rpx;
  508. }
  509. .timeDivTxt{
  510. line-height: 60rpx;
  511. padding: 0 10rpx;
  512. }
  513. .timeK{
  514. height: 41rpx;
  515. line-height: 41rpx;
  516. color: #FFFFFF;
  517. width: 41rpx;
  518. text-align: center;
  519. background: #F03B3B;
  520. border-radius: 6rpx;
  521. margin-top: 9rpx;
  522. margin-left: 10rpx;
  523. margin-right: 10rpx;
  524. }
  525. .hotGoodsLineRIghtBottom{
  526. display: flex;
  527. justify-content: space-between;
  528. width: 470rpx;
  529. }
  530. .topbox{
  531. position: fixed;
  532. width: 750rpx;
  533. top: -1rpx;
  534. left: 0;
  535. z-index: 11;
  536. }
  537. .inputCh{
  538. width:40rpx;
  539. height: 40rpx;
  540. position: absolute;
  541. right: 60rpx;
  542. top: 40rpx;
  543. z-index: 11;
  544. }
  545. .pxActive{
  546. color: #FF0000 !important;
  547. }
  548. .paixuLineTbtopIcon{
  549. width: 16rpx;
  550. height: 8rpx;
  551. display: block;
  552. padding-left: 10rpx;
  553. }
  554. .paixuLineTbtopIconx{
  555. padding-bottom:24rpx;
  556. }
  557. .paixuLineTbtopIcons{
  558. padding-top: 8rpx;
  559. }
  560. .paixuLineTbBox{
  561. display: flex;
  562. flex-direction: column;
  563. justify-content: space-between;
  564. }
  565. .box{
  566. background: #F4F5F7;
  567. min-height: 100vh;
  568. }
  569. .sstopInput{
  570. width: 626rpx;
  571. height: 72rpx;
  572. background: #F4F5F7;
  573. border-radius: 36rpx;
  574. line-height: 72rpx;
  575. font-size: 28rpx;
  576. padding-left: 76rpx;
  577. }
  578. .sstop{
  579. position: relative;
  580. padding-top: 24rpx;
  581. padding-left: 24rpx;
  582. background: #ffffff;
  583. }
  584. .sstopimg{
  585. width: 40rpx;
  586. height: 40rpx;
  587. position: absolute;
  588. left: 44rpx;
  589. top: 40rpx;
  590. }
  591. .scroll-Y{
  592. background: #ffffff;
  593. width: 750rpx;
  594. }
  595. .goodsBox{
  596. // height: calc(100vh - 280rpx);
  597. // padding-bottom: 120rpx;
  598. }
  599. .classificationBox{
  600. display: flex;
  601. padding-bottom: 12rpx;
  602. }
  603. .classificationName{
  604. white-space: nowrap;
  605. font-size: 28rpx;
  606. color: #3C3C3C;
  607. line-height: 40rpx;
  608. padding:24rpx 24rpx 8rpx 24rpx;
  609. font-weight: 400;
  610. }
  611. .classificationNameActive{
  612. font-weight: 500 !important;
  613. /* color: #FF0000 ; */
  614. }
  615. .classificationHx{
  616. width: 40rpx;
  617. height: 4rpx;
  618. // background: #FF0000;
  619. margin: 0 auto;
  620. }
  621. .paixuBox{
  622. width: 750rpx;
  623. height: 72rpx;
  624. background: #FFFFFF;
  625. margin-top: 20rpx;
  626. display: flex;
  627. justify-content: space-around;
  628. border-bottom: 1px solid #EEEEEE;
  629. }
  630. .paixuLine{
  631. line-height: 37rpx;font-size: 26rpx;color: #666666;padding-top: 18rpx;
  632. display: flex;
  633. }
  634. .hotGoodsLine{
  635. margin-top: 30rpx;
  636. padding:0rpx 20rpx;
  637. background: #FFFFFF;
  638. border-radius: 16rpx;
  639. display: flex;
  640. }
  641. .hotGoodsLineImg{
  642. width: 208rpx;
  643. height: 194rpx;
  644. border-radius: 16rpx;
  645. border: 1px solid #EEEEEE;
  646. display: block;
  647. }
  648. .goodsName{
  649. font-size: 28rpx;
  650. font-family: PingFangSC-Regular, PingFang SC;
  651. font-weight: 400;
  652. color: #333333;
  653. line-height: 40rpx;
  654. text-overflow: -o-ellipsis-lastline;
  655. overflow: hidden;
  656. text-overflow: ellipsis;
  657. display: -webkit-box;
  658. -webkit-line-clamp: 2;
  659. line-clamp: 2;
  660. -webkit-box-orient: vertical;
  661. }
  662. .hotGoodsLineRIght{
  663. padding-left: 24rpx;
  664. }
  665. .goodsPrice{
  666. display: flex;
  667. padding-top: 10rpx;
  668. }
  669. .goodsPrice1{
  670. font-size: 24rpx;
  671. font-weight: 400;
  672. color: #FF0000;
  673. padding-top: 8rpx;
  674. }
  675. .goodsPrice2{
  676. font-size: 22rpx;
  677. font-weight: 400;
  678. color: #FF0000;
  679. padding-top: 10rpx;
  680. }
  681. .goodsPrice3{
  682. font-size: 32rpx;
  683. font-weight: 500;
  684. color: #FF0000;
  685. }
  686. .goodsPrice4{
  687. font-size: 24rpx;
  688. font-weight: 400;
  689. color: #999999;
  690. padding-top: 8rpx;
  691. text-decoration:line-through;
  692. padding-left: 10rpx;
  693. }
  694. .Sold{
  695. font-weight: 400;
  696. color: #999999;
  697. font-size: 24rpx;
  698. padding-top: 20rpx;
  699. line-height: 30rpx;
  700. height: 30rpx;
  701. }
  702. .authorizBox{
  703. width: 100vw;
  704. height: 100vh;
  705. background: rgba(0, 0, 0, 0.5);
  706. position: fixed;
  707. top: 0;
  708. left: 0;
  709. }
  710. .authorizCont{
  711. margin-top: 30vh;
  712. width: 564rpx;
  713. height: 408rpx;
  714. background: #FFFFFF;
  715. border-radius: 24rpx;
  716. margin-left: 93rpx;
  717. position: relative;
  718. }
  719. .authorizCloseImg{
  720. width: 62rpx;
  721. height: 62rpx;
  722. }
  723. .sqLogoBox{
  724. width: 180rpx;
  725. height: 180rpx;
  726. background: #FFFFFF;
  727. border-radius: 90rpx;
  728. text-align: center;
  729. position: absolute;
  730. top: -50rpx;
  731. left: 192rpx;
  732. }
  733. .authorizName{
  734. color: #333333;
  735. line-height: 42rpx;
  736. font-size: 30rpx;
  737. text-align: center;
  738. padding-top: 58rpx;
  739. }
  740. .authorizMs{
  741. color: #999999;
  742. line-height: 36rpx;
  743. font-size: 26rpx;
  744. width: 452rpx;
  745. padding-top: 24rpx;
  746. text-align: center;
  747. margin-left: 56rpx;
  748. }
  749. .authorizContbutton{
  750. width: 422rpx;
  751. height: 88rpx;
  752. background: #D53533;
  753. border-radius: 44rpx;
  754. line-height: 88rpx;
  755. text-align: center;
  756. font-size:30rpx;
  757. color: #FFFFFF;
  758. margin-top: 62rpx;
  759. margin-left:71rpx;
  760. }
  761. </style>