shop.vue 14 KB

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