shop.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  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" :class="{classificationNameActive:topIndex==index}">{{item.name}}</view>
  13. <view class="classificationHx" v-if="topIndex==index"></view>
  14. </view>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. <view style="height: 180rpx;"></view>
  19. <view class="paixuBox">
  20. <view class="paixuLine" @click="defaultpx" :class="{pxActive:defaultpxActive}">
  21. 默认排序
  22. </view>
  23. <view class="paixuLine" @click="xlPx(1)">
  24. <view :class="{pxActive:salessort}">销量</view>
  25. <view class="paixuLineTbBox">
  26. <view class="paixuLineTbtop" >
  27. <image v-if="salessorts" src="../../static/timg/icon_arrow_up_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  28. <image v-else src="../../static/timg/icon_arrow_up_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  29. </view>
  30. <view class="paixuLineTbtop">
  31. <image v-if="salessortx" src="../../static/timg/icon_arrow_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  32. <image v-else src="../../static/timg/icon_arrow_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="paixuLine" @click="jgpx(1)">
  37. <view :class="{pxActive:pricesort}">价格</view>
  38. <view class="paixuLineTbBox">
  39. <view class="paixuLineTbtop" >
  40. <image v-if="pricesorts" src="../../static/timg/icon_arrow_up_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  41. <image v-else src="../../static/timg/icon_arrow_up_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  42. </view>
  43. <view class="paixuLineTbtop">
  44. <image v-if="pricesortx" src="../../static/timg/icon_arrow_pre@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  45. <image v-else src="../../static/timg/icon_arrow_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. <scroll-view scroll-Y="true" class="scroll-Y goodsSw" >
  51. <view class="goodsBox">
  52. <view class="hotGoodsLine" v-for="(item,index) in list" @click="goDetail(item)">
  53. <view>
  54. <image :src="item.url" v-if="item.url" mode="" @error="defImg()" class="hotGoodsLineImg"></image>
  55. <image v-else src="../../static/timg/noimg.png" mode="" class="hotGoodsLineImg"></image>
  56. </view>
  57. <view class="hotGoodsLineRIght">
  58. <view class="goodsName">{{item.name}}</view>
  59. <view class="Sold" >
  60. <view v-if="item.showLabel&&item.showLabel.indexOf('3')!=-1">
  61. 已售 {{item.saleQty}}
  62. </view>
  63. </view>
  64. <view class="goodsPrice">
  65. <view class="goodsPrice1">{{item.saleLabel}}</view>
  66. <view class="goodsPrice2">¥</view>
  67. <view class="goodsPrice3">{{item.salePrice?item.salePrice:item.scribingPrice}}
  68. <span v-if="item.categoryIds=='7B97D114-C419-42B2-9C1E-0B4CA284CDA0'">万</span>
  69. </view>
  70. <view class="goodsPrice4" v-if="item.showLabel&&item.scribingPrice">
  71. <span v-if="item.showLabel.indexOf('1')!=-1">¥{{item.scribingPrice}}</span>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. <nodata v-if="list.length==0"></nodata>
  77. </view>
  78. </scroll-view>
  79. <!-- 手机号授权 -->
  80. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  81. <view class="authorizCont" @click.stop="">
  82. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  83. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  84. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  85. </view>
  86. <view style="text-align: center;padding-top: 56rpx;">
  87. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  88. </view>
  89. </view>
  90. </view>
  91. </template>
  92. <script>
  93. import nodata from '../../components/nodata/nodata.vue'
  94. export default {
  95. components: {
  96. nodata
  97. },
  98. data() {
  99. return {
  100. userInfo:'',
  101. salessort:false,
  102. salessorts:false,
  103. salessortx:false,
  104. pricesort:false,
  105. pricesorts:false,
  106. pricesortx:false,
  107. topIndex:0,
  108. categoryList:'',
  109. page:1,
  110. limit:10,
  111. name:'',
  112. categoryID:'',
  113. order:'',
  114. orderBy:'',
  115. list:[],
  116. defaultImg: require("../../static/timg/noimg.png"),
  117. defaultpxActive:false,
  118. authorizShow:false,
  119. code:'',
  120. wxOpenData:'',
  121. shopcategoryID:'',
  122. inputChShow:false,
  123. ext:'',
  124. }
  125. },
  126. watch:{
  127. name(val){
  128. console.log(val)
  129. if(val){
  130. this.inputChShow=true
  131. }
  132. },
  133. },
  134. onLoad(opt) {
  135. console.log(getApp().globalData.shopcategoryID)
  136. //this.userInfo = uni.getStorageSync("userInfo");
  137. this.shopcategoryID=getApp().globalData.shopcategoryID;
  138. if(this.shopcategoryID){
  139. this.categoryID=this.shopcategoryID
  140. }
  141. this.userInfo=this.$store.state.userInfo;
  142. this.wxOpenData=this.$store.state.wxOpenData;
  143. this.ext=this.$common.getExtStoreId();
  144. this.getcategoryList();
  145. this.getlistOpenGoodsPage();
  146. /* uni.getLocation({
  147. type: 'gcj02',
  148. success: function(res) {
  149. console.log(res)
  150. },
  151. fail(err) {
  152. console.log(err)
  153. }
  154. }); */
  155. },
  156. onShow() {
  157. var shopcategoryID = uni.getStorageSync("shopcategoryID")
  158. if(shopcategoryID){
  159. uni.removeStorageSync('shopcategoryID');
  160. if(this.categoryList){
  161. this.categoryList.forEach((item,index)=>{
  162. //console.log(item.id)
  163. if(item.id==shopcategoryID){
  164. this.topIndex=index
  165. }
  166. })
  167. this.categoryID=shopcategoryID;
  168. this.list=[];
  169. this.page=1;
  170. this.getlistOpenGoodsPage()
  171. }
  172. }
  173. },
  174. methods: {
  175. empty(){
  176. console.log("情况")
  177. this.name='';
  178. this.inputChShow=false;
  179. },
  180. decryptPhoneNumber: function(e) {
  181. console.log(e);
  182. this.code=e.detail.code
  183. this.wxPhoneLogin()
  184. this.authorizShow=false;
  185. },
  186. wxPhoneLogin(){
  187. var that=this;
  188. this.$http('miniApp2/sys/wxPhoneLogin', {
  189. appId:'wx33053a645546ec31',
  190. unionId:'EEADACCD-8A19-499D-8AD7-6975D2C93243',
  191. code:this.code,
  192. openId:this.wxOpenData.openid
  193. },'POST').then(res => {
  194. var data = res.data;
  195. if(data.loginInfo){
  196. this.userInfo=data.loginInfo.openUser;
  197. this.wxOpenData=data.loginInfo;
  198. this.$store.commit('mutationswxOpenData', data.loginInfo)
  199. this.$store.commit('mutationsuserInfo', this.userInfo)
  200. this.topIndex=1;
  201. this.list=[];
  202. this.page=1;
  203. this.getlistOpenGoodsPage()
  204. }
  205. })
  206. },
  207. xlPx(num){
  208. this.salessort=true;
  209. this.defaultpxActive=false;
  210. this.pricesort=false;
  211. this.pricesort=false;
  212. this.pricesorts=false;
  213. this.pricesortx=false;
  214. if(this.salessorts){
  215. num=2
  216. }
  217. if(num==1){
  218. this.salessorts=true;
  219. this.salessortx=false;
  220. this.orderBy='asc';
  221. }else{
  222. this.salessorts=false;
  223. this.salessortx=true;
  224. this.orderBy='desc';
  225. }
  226. this.order='SaleQty';
  227. this.list=[];
  228. this.page=1;
  229. this.getlistOpenGoodsPage()
  230. },
  231. jgpx(type){
  232. this.salessort=false;
  233. this.defaultpxActive=false;
  234. this.pricesort=true;
  235. this.salessort=false;
  236. this.salessorts=false;
  237. this.salessortx=false;
  238. if(this.pricesorts){
  239. type=2
  240. }
  241. if(type==1){
  242. this.pricesorts=true;
  243. this.pricesortx=false;
  244. this.orderBy='asc';
  245. }else{
  246. this.pricesorts=false;
  247. this.pricesortx=true;
  248. this.orderBy='desc';
  249. }
  250. this.order='SalePrice';
  251. this.list=[];
  252. this.page=1;
  253. this.getlistOpenGoodsPage()
  254. },
  255. defaultpx(){
  256. this.defaultpxActive=true;
  257. this.order='';
  258. this.orderBy='';
  259. this.salessort=false;
  260. this.salessorts=false;
  261. this.salessortx=false;
  262. this.pricesort=false;
  263. this.pricesorts=false;
  264. this.pricesortx=false;
  265. //this.topIndex=0;
  266. this.list=[];
  267. this.page=1;
  268. this.getlistOpenGoodsPage()
  269. },
  270. defImg(event){
  271. // console.log(event)
  272. /* let img = event.srcElement;
  273. img.src = this.defaultImg;
  274. img.onerror = null; //防止闪图 */
  275. },
  276. topClick(index,item){
  277. this.topIndex=index;
  278. this.list=[];
  279. this.page=1;
  280. this.categoryID=item.id;
  281. this.getlistOpenGoodsPage()
  282. },
  283. ssList(){
  284. this.topIndex=1;
  285. this.list=[];
  286. this.page=1;
  287. this.getlistOpenGoodsPage()
  288. },
  289. goDetail(item){
  290. // if(!this.userInfo){
  291. // this.authorizShow=true;
  292. // }else{
  293. // }
  294. uni.navigateTo({
  295. url:'goodsDetail?id='+item.id
  296. })
  297. },
  298. getcategoryList(){
  299. this.$http('openMall/categoryList', {
  300. unionId:this.ext.unionId
  301. },'GET').then(res => {
  302. this.categoryList=res.data;
  303. var obj={
  304. id:'',
  305. name:'全部'
  306. }
  307. this.categoryList.unshift(obj);
  308. if(this.shopcategoryID){
  309. //console.log(this.shopcategoryID)
  310. this.categoryList.forEach((item,index)=>{
  311. //console.log(item.id)
  312. if(item.id==this.shopcategoryID){
  313. this.topIndex=index
  314. }
  315. })
  316. }
  317. })
  318. },
  319. getlistOpenGoodsPage(){
  320. uni.showLoading({ title: '加载中'});
  321. this.$http('openMall/listOpenGoodsPage', {
  322. page:this.page,
  323. limit:this.limit,
  324. name:this.name,
  325. categoryID:this.categoryID,
  326. orderBy:this.order,
  327. order:this.orderBy,
  328. unionId:this.ext.unionId
  329. },'GET').then(res => {
  330. uni.hideLoading();
  331. var data=res.data.Items;
  332. this.list=this.list.concat(data)
  333. })
  334. }
  335. },
  336. onReachBottom(){
  337. this.page++;
  338. this.getlistOpenGoodsPage()
  339. //console.log("shanglas")
  340. },
  341. onPullDownRefresh(){
  342. this.list=[];
  343. this.page=1;
  344. this.getlistOpenGoodsPage();
  345. setTimeout(() => {
  346. uni.stopPullDownRefresh(); // 关闭下拉刷新
  347. }, 2000);
  348. }
  349. }
  350. </script>
  351. <style scoped lang="less">
  352. .topbox{
  353. position: fixed;
  354. width: 750rpx;
  355. top: -1rpx;
  356. left: 0;
  357. z-index: 11;
  358. }
  359. .inputCh{
  360. width:40rpx;
  361. height: 40rpx;
  362. position: absolute;
  363. right: 40rpx;
  364. top: 40rpx;
  365. z-index: 11;
  366. }
  367. .pxActive{
  368. color: #FF0000 !important;
  369. }
  370. .paixuLineTbtopIcon{
  371. width: 16rpx;
  372. height: 8rpx;
  373. display: block;
  374. padding-left: 10rpx;
  375. }
  376. .paixuLineTbtopIconx{
  377. padding-bottom:24rpx;
  378. }
  379. .paixuLineTbtopIcons{
  380. padding-top: 8rpx;
  381. }
  382. .paixuLineTbBox{
  383. display: flex;
  384. flex-direction: column;
  385. justify-content: space-between;
  386. }
  387. .box{
  388. background: #F4F5F7;
  389. min-height: 100vh;
  390. }
  391. .sstopInput{
  392. width: 626rpx;
  393. height: 72rpx;
  394. background: #F4F5F7;
  395. border-radius: 36rpx;
  396. line-height: 72rpx;
  397. font-size: 28rpx;
  398. padding-left: 76rpx;
  399. }
  400. .sstop{
  401. position: relative;
  402. padding-top: 24rpx;
  403. padding-left: 24rpx;
  404. background: #ffffff;
  405. }
  406. .sstopimg{
  407. width: 40rpx;
  408. height: 40rpx;
  409. position: absolute;
  410. left: 44rpx;
  411. top: 40rpx;
  412. }
  413. .scroll-Y{
  414. background: #ffffff;
  415. width: 750rpx;
  416. }
  417. .goodsBox{
  418. min-height: calc(100vh - 280rpx);
  419. }
  420. .classificationBox{
  421. display: flex;
  422. padding-bottom: 12rpx;
  423. }
  424. .classificationName{
  425. white-space: nowrap;
  426. font-size: 28rpx;
  427. color: #3C3C3C;
  428. line-height: 40rpx;
  429. padding:24rpx 24rpx 8rpx 24rpx;
  430. font-weight: 400;
  431. }
  432. .classificationNameActive{
  433. font-weight: 500 !important;
  434. color: #FF0000 ;
  435. }
  436. .classificationHx{
  437. width: 40rpx;
  438. height: 4rpx;
  439. background: #FF0000;
  440. margin: 0 auto;
  441. }
  442. .paixuBox{
  443. width: 750rpx;
  444. height: 72rpx;
  445. background: #FFFFFF;
  446. margin-top: 20rpx;
  447. display: flex;
  448. justify-content: space-around;
  449. border-bottom: 1px solid #EEEEEE;
  450. }
  451. .paixuLine{
  452. line-height: 37rpx;font-size: 26rpx;color: #666666;padding-top: 18rpx;
  453. display: flex;
  454. }
  455. .hotGoodsLine{
  456. margin-top: 30rpx;
  457. padding:0rpx 20rpx;
  458. background: #FFFFFF;
  459. border-radius: 16rpx;
  460. display: flex;
  461. }
  462. .hotGoodsLineImg{
  463. width: 208rpx;
  464. height: 194rpx;
  465. border-radius: 16rpx;
  466. border: 1px solid #EEEEEE;
  467. display: block;
  468. }
  469. .goodsName{
  470. font-size: 28rpx;
  471. font-family: PingFangSC-Regular, PingFang SC;
  472. font-weight: 400;
  473. color: #333333;
  474. line-height: 40rpx;
  475. text-overflow: -o-ellipsis-lastline;
  476. overflow: hidden;
  477. text-overflow: ellipsis;
  478. display: -webkit-box;
  479. -webkit-line-clamp: 2;
  480. line-clamp: 2;
  481. -webkit-box-orient: vertical;
  482. }
  483. .hotGoodsLineRIght{
  484. padding-left: 24rpx;
  485. }
  486. .goodsPrice{
  487. display: flex;
  488. padding-top: 10rpx;
  489. }
  490. .goodsPrice1{
  491. font-size: 24rpx;
  492. font-weight: 400;
  493. color: #FF0000;
  494. padding-top: 8rpx;
  495. }
  496. .goodsPrice2{
  497. font-size: 22rpx;
  498. font-weight: 400;
  499. color: #FF0000;
  500. padding-top: 10rpx;
  501. }
  502. .goodsPrice3{
  503. font-size: 32rpx;
  504. font-weight: 500;
  505. color: #FF0000;
  506. }
  507. .goodsPrice4{
  508. font-size: 24rpx;
  509. font-weight: 400;
  510. color: #999999;
  511. padding-top: 8rpx;
  512. text-decoration:line-through;
  513. padding-left: 10rpx;
  514. }
  515. .Sold{
  516. font-weight: 400;
  517. color: #999999;
  518. font-size: 24rpx;
  519. padding-top: 8rpx;
  520. line-height: 30rpx;
  521. height: 30rpx;
  522. }
  523. .authorizBox{
  524. width: 100vw;
  525. height: 100vh;
  526. background: rgba(0, 0, 0, 0.5);
  527. position: fixed;
  528. top: 0;
  529. left: 0;
  530. }
  531. .authorizCont{
  532. margin-top: 30vh;
  533. width: 564rpx;
  534. height: 408rpx;
  535. background: #FFFFFF;
  536. border-radius: 24rpx;
  537. margin-left: 93rpx;
  538. position: relative;
  539. }
  540. .authorizCloseImg{
  541. width: 62rpx;
  542. height: 62rpx;
  543. }
  544. .sqLogoBox{
  545. width: 180rpx;
  546. height: 180rpx;
  547. background: #FFFFFF;
  548. border-radius: 90rpx;
  549. text-align: center;
  550. position: absolute;
  551. top: -50rpx;
  552. left: 192rpx;
  553. }
  554. .authorizName{
  555. color: #333333;
  556. line-height: 42rpx;
  557. font-size: 30rpx;
  558. text-align: center;
  559. padding-top: 58rpx;
  560. }
  561. .authorizMs{
  562. color: #999999;
  563. line-height: 36rpx;
  564. font-size: 26rpx;
  565. width: 452rpx;
  566. padding-top: 24rpx;
  567. text-align: center;
  568. margin-left: 56rpx;
  569. }
  570. .authorizContbutton{
  571. width: 422rpx;
  572. height: 88rpx;
  573. background: #D53533;
  574. border-radius: 44rpx;
  575. line-height: 88rpx;
  576. text-align: center;
  577. font-size:30rpx;
  578. color: #FFFFFF;
  579. margin-top: 62rpx;
  580. margin-left:71rpx;
  581. }
  582. </style>