123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <template>
- <!-- 商品分类 -->
- <view :style="colorStyle">
- <!-- 门店的两种样式布局 -->
- <storeCate1 v-if="storeShow==1" :info="info" :isFooter="isFooter" ref="refresh2">
- </storeCate1>
- <storeCate2 v-if="storeShow==2" :cart_num="cart_num" :info="info" :customerType="customerType" ref="refresh">
- </storeCate2>
- <pageFooter @newDataStatus="newDataStatus"></pageFooter>
- </view>
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex';
- import colors from "@/mixins/color";
- import storeCate1 from './store_cate1.vue'
- import storeCate2 from './store_cate2.vue'
- import pageFooter from '@/components/pageFooter/index.vue'
- import {
- getnearbyStore
- } from '@/api/new_store.js'
- import {
- colorChange
- } from '@/api/api.js';
- import {
- getCartCounts
- } from '@/api/order.js';
- export default {
- computed: mapGetters(['isLogin', 'uid']),
- components: {
- storeCate1,
- storeCate2,
- pageFooter
- },
- mixins: [colors],
- data() {
- return {
- info: {},
- id:0,
- isFooter: false,
- category: '',
- storeShow: 2,
- customerType:1,
- where: {
- latitude: 0,
- longitude: 0,
- store_id: 0
- },
- cart_num:0
- }
- },
- onLoad(options){
- this.where.store_id = options.id;
- uni.setStorageSync('user_store_id', options.id);
- try {
- this.where.latitude = uni.getStorageSync('user_latitude');
- this.where.longitude = uni.getStorageSync('user_longitude');
- if(options.mapFrom==1){
- this.getStore();
- //this.getCartNum(options.id);
- }else{
- this.selfLocation();
- if(!this.$util.checkOpenGPSServiceByAndroidIOS()){
- this.getStore();
- }
- }
- } catch (e) {}
- },
- onShow(){
- if(uni.getStorageSync('form_type_cart')){
- this.getStore();
- }
- },
- mounted() {},
- methods: {
- otherFun(object){
- if(!!object){
- if(this.storeShow==1){
- this.$refs.refresh2.updateFun(object);
- }
- }
- },
- selfLocation() {
- let self = this
- // #ifdef H5
- if (self.$wechat.isWeixin()) {
- self.$wechat.location().then(res => {
- // this.where.latitude = res.latitude;
- // this.where.longitude = res.longitude;
- uni.setStorageSync('user_latitude', res.latitude);
- uni.setStorageSync('user_longitude', res.longitude);
- self.getStore();
- }).catch(err=>{
- self.getStore();
- })
- } else {
- // #endif
- uni.getLocation({
- type: 'gcj02',
- success: (res) => {
- try {
- // this.where.latitude = res.latitude;
- // this.where.longitude = res.longitude;
- uni.setStorageSync('user_latitude', res.latitude);
- uni.setStorageSync('user_longitude', res.longitude);
- } catch {}
- self.getStore();
- },
- fail:(err)=>{
- return self.$util.Tips({
- title: err
- });
- },
- complete: function() {
- self.getStore();
- }
- });
- // #ifdef H5
- }
- // #endif
- },
- // 获取接口附近门店
- getStore() {
- this.where.latitude = uni.getStorageSync('user_latitude');
- this.where.longitude = uni.getStorageSync('user_longitude');
- getnearbyStore(this.where).then(res => {
- let info = res.data.info;
- this.cart_num = res.data.cart_num;
- if(Object.prototype.toString.call(info) === "[object Array]"){
- this.info = {}
- this.storeShow = 2;
- }else{
- this.info = res.data.info
- this.storeShow = res.data.info.home_style;
- }
- this.id = this.info.id
- this.customerType = parseInt(res.data.info.customer_type)
- uni.setStorageSync('user_store_id', this.info.id);
- if (this.storeShow === 1) {
- setTimeout(()=>{
- this.$refs.refresh2.getAllCategory();
- if(this.isLogin){
- this.$refs.refresh2.getCartList(1);
- }
- this.$refs.refresh2.getMarTop();
- },10)
- } else if (this.storeShow === 2) {
- setTimeout(()=>{
- this.$refs.refresh.where.store_id = this.id
- this.$refs.refresh.loadend = false
- this.$refs.refresh.getProducts(true)
- })
- }
- })
- },
- newDataStatus(val) {
- this.isFooter = val;
- },
- },
- onReachBottom: function() {
- if (this.storeShow === 1) {
- setTimeout(()=>{
- this.$refs.refresh2.getProducts()
- },10)
- }
- if(this.storeShow === 2){
- this.$refs.refresh.getProducts()
- }
- }
- }
- </script>
- <style scoped lang="scss">
- /deep/.mask{
- z-index: 99;
- }
- </style>
|