123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <!-- 商品分类 -->
- <view :style="colorStyle">
- <!-- 门店的两种样式布局 -->
- <storeCate1 :info="info" ref="refresh2"></storeCate1>
- </view>
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex';
- import colors from "@/mixins/color";
- import storeCate1 from './cart.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']),
- components: {
- storeCate1,
- },
- mixins: [colors],
- data() {
- return {
- info: {},
- id: 0,
- category: '',
- storeShow: 1,
- customerType: 1,
- where: {
- latitude: 0,
- longitude: 0,
- store_id: 0
- },
- cart_num: 0,
- delivery_type: 3,
- }
- },
- onLoad(options) {
- this.collage_id = options.collage_id;
- this.delivery_type = options.delivery_type;
- 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');
- this.selfLocation();
- if (!this.$util.checkOpenGPSServiceByAndroidIOS()) {
- this.getStore();
- }
- } catch (e) {}
- },
- onPageScroll(e) {
- uni.$emit('onPageScroll', e.scrollTop);
- },
- onReachBottom() {
- uni.$emit('onReachBottom');
- },
- 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) => {
- 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 = {}
- } else {
- this.info = res.data.info
- }
- this.info = {
- ...this.info,
- collage_id: this.collage_id,
- delivery_type: this.delivery_type
- };
- this.id = this.info.id
- this.customerType = parseInt(res.data.info.customer_type)
- setTimeout(() => {
- this.$refs.refresh2.getAllCategory();
- this.$refs.refresh2.getCartNum();
- if (this.isLogin) {
- this.$refs.refresh2.getCartList(1);
- }
- }, 10)
- })
- },
- },
- }
- </script>
- <style scoped lang="scss">
- /deep/.goodCate .uni-badge-left-margin .uni-badge--error {
- background-color: #fff !important;
- color: var(--view-theme);
- border-color: var(--view-theme);
- z-index: 8;
- }
- /deep/.goodCate .footer .cartIcon .uni-badge-left-margin .uni-badge--error {
- right: 0 !important;
- top: 10px !important;
- }
- /deep/.mask {
- z-index: 99;
- }
- /deep/.good-cate {
- padding: 80rpx;
- }
- </style>
|