123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- <template>
- <view class="content">
- <u-swiper height="320" :list="imageTopList" ></u-swiper>
- <!-- 导航按钮 -->
- <view class="nav">
- <u-grid :col="4" :border="false" @click="toPage">
- <u-grid-item :index="1">
- <u-image width="90rpx" height="90rpx" src="/static/zhinan.png"></u-image>
- <view class="grid-text">回收分类</view>
- </u-grid-item>
- <u-grid-item :index="1">
- <u-image width="90rpx" height="90rpx" src="/static/liucheng.png"></u-image>
- <view class="grid-text">使用指南</view>
- </u-grid-item>
- <u-grid-item :index="2">
- <u-image width="90rpx" height="90rpx" src="/static/shouyi.png"></u-image>
- <view class="grid-text">乐豆收益</view>
- </u-grid-item>
- <u-grid-item :index="3">
- <u-image width="90rpx" height="90rpx" src="/static/hexiao.png"></u-image>
- <view class="grid-text">扫码核销</view>
- </u-grid-item>
- </u-grid>
- </view>
- <!-- 网点 -->
- <view class="storeList">
- <u-section title="附近的回收机" :right="false" line-color="#01c9b2" class="store-section"></u-section>
- <view class="stores-box">
- <view class="stores-item" v-for="item in stationDataList" @click="viewStore(item)">
- <view class="item-con">
- <image src="/static/md-icon.png" class="item-icon"></image>
- <view class="s-name item-main">{{ item.name }}</view>
- </view>
- <view class="item-con">
- <image src="/static/dz-icon.png" class="item-icon"></image>
- <view class="s-address item-main">
- <view>{{ item.provinceName }}{{ item.cityName }}{{ item.districtName }}{{ item.address }}</view>
- <view>
- <u-icon name="map-fill" color="#01c9b2" size="30"></u-icon>
- {{ item.distanct.distance ? (item.distanct.distance / 1000).toFixed(1) : 0 }}KM
- <u-icon name="arrow-right" color="#999" size="20"></u-icon>
- </view>
- </view>
- </view>
- <view class="item-con">
- <image src="/static/time-icon.png" class="item-icon"></image>
- <view class="s-time item-main">
- <view>
- 营业时间:
- <text v-for="(tItem, tInd) in item.deliveryTimeRuleItemList" :key="tInd">
- {{ tItem.openTime }} - {{ tItem.closeTime }}{{ tInd == item.deliveryTimeRuleItemList.length - 1 ? '' : ',' }}
- </text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getCartList,
- addGoodsToCart,
- deleteGoodsFormCart,
- updateGoodsBuyQty
- } from '@/api/shoppingCart.js'
- import {bannerList} from '@/api/banner.js'
- import {
- getLookUpDatas
- } from '@/api/data.js'
- import { stationList } from '@/api/station.js'
- export default {
- data() {
- return {
- imageTopList: [],
- stationDataList: [] // 附近网点列表
- }
- },
- onLoad() {
- // 获取订单状态数据字典
- this.getCodeList('RUBBISH_TYPE','vuex_rubbishType')
- // 获取顶部轮播图
- this.getbannerList()
- // 获取经纬度
- this.getLocation()
- // 查询购物车列表
- this.getCartList()
- // 加入购物车
- uni.$on("addCart",item =>{
- this.addGoodToCart(item)
- })
- // 删除购物车的商品
- uni.$on("delCartGood",item => {
- this.delGoodFormCart(item)
- })
- // 更新购物车商品数量
- uni.$on("updateGoodsBuyQty",item=>{
- this.updateGoodsBuyQty(item)
- })
- },
- methods: {
- // 获取数据字典
- getCodeList(code,key) {
- getLookUpDatas({
- type: code
- }).then(res => {
- if (res.status == 200) {
- this.$u.vuex(key, res.data)
- }
- })
- },
- // 获取经纬度
- getLocation() {
- const _this = this;
- uni.getLocation({
- type: 'wgs84',
- success: function(res) {
- _this.getStationList(res.longitude, res.latitude)
- },
- fail: function(error) {
- console.log(error)
- uni.showToast({ icon: 'none', title: '定位失败' })
- }
- });
- },
- // 获取网点列表
- getStationList(lng, lat) {
- stationList({ lng: lng, lat: lat }).then(res => {
- if (res.status == 200) {
- this.stationDataList = res.data
- } else {
- this.stationDataList = []
- }
- });
- },
- // 获取banner
- getbannerList(){
- bannerList({type:'banner',location:'MALL_TOP'}).then(res=>{
- if(res.status==200){
- this.imageTopList=res.data
- }
- })
- },
- // 查询购物车
- getCartList(){
- getCartList({}).then(res => {
- console.log(res)
- if(res.status == 200){
- this.$u.vuex('vuex_cartList', res.data)
- }
- })
- },
- // 添加购物车
- addGoodToCart(item){
- addGoodsToCart(item).then(res => {
- if(res.status == 200){
- uni.showToast({
- title:"商品添加成功",
- icon:"none"
- })
- // 刷新购物车
- this.getCartList()
- }
- })
- },
- // 删除购物车
- delGoodFormCart(ids){
- uni.showLoading({
- mask: true,
- title: "删除中..."
- })
- deleteGoodsFormCart({idList:ids}).then(res => {
- if(res.status == 200){
- uni.showToast({
- title:"商品删除成功",
- icon:"none"
- })
- // 刷新购物车
- this.getCartList()
- }
- uni.hideLoading()
- })
- },
- // 更新商品数量
- updateGoodsBuyQty(item){
- uni.showLoading({
- mask: true,
- title: "更新数量中..."
- })
- updateGoodsBuyQty(item).then(res => {
- uni.hideLoading()
- })
- },
- // 更多商品
- toGoods(clsId){
- uni.navigateTo({
- url:"/pages/goods/goods?id="+clsId
- })
- },
- // 快速导航
- toPage(e){
- let path=[
- '/pages/userCenter/zhinan',
- '/pages/userCenter/liucheng',
- '/pages/userCenter/ldDetailed',
- ''
- ]
- if(path[e]!=''){
- uni.navigateTo({
- url: path[e]
- })
- }else{
- // 核销
- this.smHx()
- }
- },
- // 扫码核销
- smHx(){
- uni.navigateTo({
- url: '/pages/checkOut/checkOut'
- })
- return
- uni.scanCode({
- success(e) {
- console.log(e)
- },
- fail(err) {
- console.log(err)
- }
- })
- },
- // 查看网点
- viewStore(item){
- uni.navigateTo({
- url: '/pages/store/store?id=' + item.id + '&stationNo=' + item.stationNo
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- // background: url(../../static/topBg.png) no-repeat top center;
- // background-size: 100%;
- width: 100%;
- .nav {
- margin: 20upx 0;
- border-radius: 15upx;
- box-shadow: 0upx 3upx 6upx #eee;
- overflow: hidden;
- .grid-text {
- padding-top: 10upx;
- }
- }
- .storeList {
- padding: 25upx 20upx 20upx;
- .store-section {
- margin-bottom: 20rpx;
- }
- .stores-box {
- padding-top: 5upx;
- .stores-item {
- background: #ffffff;
- border-radius: 15upx;
- box-shadow: 0upx 3upx 6upx #eee;
- border-bottom: 1px solid #f8f8f8;
- padding: 10upx 20upx;
- margin-bottom: 20rpx;
- &:last-child {
- border: 0;
- }
- .item-con {
- display: flex;
- &:last-child {
- .item-main {
- border: none;
- }
- }
- .item-icon {
- width: 34rpx;
- height: 34rpx;
- margin-right: 10rpx;
- flex-shrink: 0;
- padding: 18rpx 0;
- }
- .item-main {
- font-size: 24rpx;
- color: #666;
- padding: 18rpx 0;
- border-bottom: 1rpx solid #f2f2f2;
- flex-grow: 1;
- }
- .s-address {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
- }
- }
- }
- }
- </style>
|