shop.vue 12 KB

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