Browse Source

修改问题

1.0
396316021 2 years ago
parent
commit
280012cd35
  1. 6
      pages/Cron/detail.vue
  2. 6
      pages/Goods/index.vue
  3. 6
      pages/Index/components/HomePage/index.vue
  4. 92
      pages/Index/components/ShopPage/index.vue
  5. 22
      pages/Index/index.vue
  6. 47
      pages/Line/components/SubmitPage/index.vue
  7. 2
      pages/Login/index.vue
  8. 21
      pages/Order/confirm.vue
  9. 2
      pages/User/edit.vue
  10. 16
      pages/User/order.vue

6
pages/Cron/detail.vue

@ -57,7 +57,7 @@
:custom-style="{backgroundColor:'#ffffff',borderRadius:'20rpx',marginBottom:'16rpx'}"
:title-style="{fontSize: '28rpx',fontWeight: '400',color: '#020B18',marginBottom:'20rpx'}"
>
<template #value v-if="item.type === current">
<template #value v-if="item.type === (current+1)">
<view class="cell-value-add" v-if="item.type === 1">
+{{ item.number }}
</view>
@ -94,7 +94,7 @@ export default {
}, {
name: '暖新币兑换'
},],
current: 1,
current: 0,
title: '暖新币明细',
loading: true,
staticImage: {
@ -184,7 +184,7 @@ export default {
this.end[e.index] = false;
this.lists = [[],[]];
this.current = e.index;
this.getCron(true,e.index);
this.getCron(true);
}
},
options: {

6
pages/Goods/index.vue

@ -321,10 +321,12 @@ export default {
this.model.number = this.specificationsList[this.model.spec].quantity;
uni.$u.toast('超过最大库存数量,已为您填入最大数量');
}
console.log(this.model.spec)
this.model.info = this.specificationsList[this.model.spec];
this.model.info.name = this.detail.name;
this.model.info.image = this.detail.images[0];
wx.navigateTo({url:'/pages/Order/confirm?info='+JSON.stringify(this.model)})
uni.setStorageSync('detailInfo',this.model);
wx.navigateTo({url:'/pages/Order/confirm'})
},
},
onPageScroll(res) {

6
pages/Index/components/HomePage/index.vue

@ -330,6 +330,12 @@ export default {
safeAreaInsetTop: false
})
}else{
if(!uni.getStorageSync('token')){
wx.navigateTo({
url: '/pages/Login/index'
})
return false;
}
if(item.title === '线索上传'){
if(!this.userInfo.fxx || this.userInfo.fxx.length === 0){
this.$refs.uNotify.show({

92
pages/Index/components/ShopPage/index.vue

@ -92,7 +92,7 @@
</u-row>
</view>
<view class="map-container" :style="{display:(tabCheck === 'room'?'flex':'none')}" v-if="(tabCheck === 'room')">
<view class="map-container" :style="{display:(tabCheck === 'room'?'flex':'none')}" >
<view class="top-map" :style="{marginTop:size.height+'px'}">
<view id="map" class="map">
<map id="shopMap" style="width:100%;height:1000rpx;" class="map" :show-location="true" :latitude="lat"
@ -106,18 +106,18 @@
<view class="pop-container row">
<view class="title row">
<view class="value">
<u-text text="北新国际二期" color="#020B18" size="32"></u-text>
<u-text :text="mapData.name" color="#020B18" size="32"></u-text>
</view>
<view class="button">
<u-image mode="widthFix" width="=50" height="50"></u-image>
<view class="button" style="width:50rpx;height:50rpx;">
<u-image mode="widthFix" width="=50" height="50" :src="staticImage.mapClose" @click="popMapShow = false"></u-image>
</view>
</view>
<view class="address row">
<view class="value">
<u-text text="成都市新都区互惠大道158号" color="#AFB5BE" size="28"></u-text>
<u-text :text="mapData.street" color="#AFB5BE" size="28"></u-text>
</view>
<view class="button">
<u-image mode="widthFix" width="=50" height="50"></u-image>
<view class="button" style="width:50rpx;height:50rpx;">
<u-image mode="widthFix" width="=50" height="50" :src="staticImage.position" @click="callPostion"></u-image>
</view>
</view>
<view class="pop-add"></view>
@ -126,7 +126,7 @@
</view>
</view>
<view class="room-container" :style="{display:(tabCheck === 'room'?'block':'none')}" v-if="(tabCheck === 'room')">
<view class="room-container" :style="{display:(tabCheck === 'room'?'block':'none')} ">
<uv-waterfall ref="waterfall"
v-model="listWater"
left-gap="26rpx"
@ -220,7 +220,7 @@
</uv-waterfall>
</view>
<view class="room-container item-container" :style="{display:(tabCheck === 'item'?'block':'none')}" v-if="(tabCheck === 'item')">
<view class="room-container item-container" :style="{display:(tabCheck === 'item'?'block':'none')}" >
<uv-waterfall ref="waterfallItem"
v-model="listWaterItem"
left-gap="26rpx"
@ -362,6 +362,7 @@ import api from "@/utils/functions.js";
import {goodsList, goodsType, roomList, streetList} from "@/api/shop";
import MzCard from "@/components/MzCard/index.vue";
import {imghost} from "@/config/host";
import shop from "@/pages/Shop/index.vue";
const img = 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/logo.png';
export default {
@ -436,24 +437,32 @@ export default {
popMapShow: false,
isGetLocal:false,
roomCoordinate:[
{
latitude:30.810122,
longitude:104.194078,
},{
latitude:30.57447,
longitude:103.92377,
},
// {
// latitude:30.810122,
// longitude:104.194078,
// },{
// latitude:30.57447,
// longitude:103.92377,
// },
],
mapIcon:imghost+'/static/image/map-icon.png'
mapIcon:imghost+'/static/image/map-icon.png',
staticImage:{
position:imghost+'/static/image/map-position.png',
mapClose:imghost+'/static/image/map-close.png',
},
mapData:{},
}
},
onLoad(option) {
console.log('shop', option)
if (option.tabCheck) {
this.tabCheck = option.tabCheck;
if(this.tabCheck === 'item'){
this.current = 1;
}
}
console.log('shopPage123')
this.getStreet();
// this.getStreet();
},
onReady() {
this.size.height = api.navHeight().navigationBar + api.navHeight().systemBar
@ -489,7 +498,7 @@ export default {
this.getLocal();
}
},
getRoomList(clear) {
getRoomList(clear = false) {
if (clear) {
this.status = 'loadmore'
this.pages.page = 1;
@ -503,9 +512,12 @@ export default {
return false;
}
roomList(this.pages).then(res => {
res.data.forEach(item => {
// const {lat,lng} = item.coordinate.split(',');
// this.roomCoordinate.push({latitude:lat,longitude:lng});
console.log('roomCoordinate',this.roomCoordinate)
res.data.map(item => {
const coordinate = item.coordinate.split(',');
this.roomCoordinate.push({latitude:parseFloat(coordinate[1]),longitude:parseFloat(coordinate[0])});
console.log('roomCoordinate',this.roomCoordinate)
return item;
});
this.addMarkers();
this.listWater.push.apply(this.listWater, res.data);
@ -514,8 +526,9 @@ export default {
}
})
this.pages.page++;
},
getItemList(clear) {
getItemList(clear = false) {
if (clear) {
this.statusItem = 'loadmore'
this.pagesItem.page = 1;
@ -586,17 +599,19 @@ export default {
})
},
initMap(){
let that = this;
console.log(this.lat,this.lng)
this.mapContext = uni.createMapContext("shopMap", this);
// // on.("markerClusterCreate", (e) => {})
that.isInitMap = true;
this.mapContext.initMarkerCluster({
enableDefaultStyle: false,
zoomOnClick: true,
gridSize: 60,
complete(res) {
console.log('initMarkerCluster', res)
}
});
@ -607,11 +622,14 @@ export default {
latitude: this.lat,
longitude: this.lng,
})
this.addMarkers();
this.afterCreateMap();
this.getRoomList();
// this.addMarkers();
},
addMarkers() {
let that = this;
if(!that.isInitMap){
return false;
}
let positions = this.roomCoordinate;
const markers = []
@ -649,6 +667,8 @@ export default {
//uni.request
//<uni-popup ref="popup" type="bottom">
// this.$refs.popup.open('bottom')
this.mapData = that.listWater[id-1];
console.log('mapData',this.mapData)
this.popMapShow = true;
this.mapContext.moveToLocation({
latitude: coordinate.latitude,
@ -659,7 +679,17 @@ export default {
this.popMapShow = false;
},
afterCreateMap(){
this.getRoomList();
this.getRoomList(true);
},
callPostion(){
const coordinate = this.mapData.coordinate.split(',');
const latitude=parseFloat(coordinate[1]);
const longitude=parseFloat(coordinate[0]);
uni.openLocation({
latitude:latitude,
longitude:longitude,
name:this.mapData.name,
})
},
},
onPageScroll(res) {
@ -669,10 +699,16 @@ export default {
},
mounted() {
let shopMore = uni.getStorageSync('shopMore');
if(shopMore){
this.current = 1;
this.tabCheck = 'item';
uni.setStorageSync('shopMore',false);
}
this.getItemList();
this.getStreet();
this.getGoodsType();
if(this.tabCheck === 'room'){
this.getLocal();
}

22
pages/Index/index.vue

@ -15,7 +15,7 @@
<!-- <HomePage v-if="(footCheck === 'order')"></HomePage>-->
</view>
<view :class="{show:(footCheck === 'shop')}" v-if="(footCheck === 'shop')">
<ShopPage ref="shop"></ShopPage>
<ShopPage ref="shop" current="current"></ShopPage>
</view>
<view :class="{show:(footCheck === 'user')}" v-if="(footCheck === 'user')">
<UserPage></UserPage>
@ -85,6 +85,7 @@ export default {
title: '我的',
},
],
current:0,
}
},
onLoad(option) {
@ -99,13 +100,16 @@ export default {
})
}
if(option.tabCheck){
this.$refs.shop.tabCheck = option.tabCheck;
this.$refs.shop.list.forEach((item,index) => {
if(item.id === option.tabCheck){
console.log('current',index)
this.$refs.shop.current = index;
}
})
// this.$refs.shop.tabCheck = option.tabCheck;
// this.$refs.shop.list.forEach((item,index) => {
// if(item.id === option.tabCheck){
// console.log('current',index)
// this.$refs.shop.current = index;
// }
// })
if(option.tabCheck === 'item'){
uni.setStorageSync('shopMore',true);
}
}
},
onReady() {
@ -135,7 +139,7 @@ export default {
this.footCheck = item.name;
this.title = item.title;
let token = uni.getStorageSync('token');
if (token && this.footCheck === 'user') {
if (token && (this.footCheck === 'user' || this.footCheck === 'home')) {
this.getUserExtend();
}
},

47
pages/Line/components/SubmitPage/index.vue

@ -21,10 +21,12 @@
prop="line.type_id"
borderBottom
>
<u-cell :is-link="true" :border="false" @click="showTypePicker" >
<u-cell :border="false" >
<template #title>
<u-text v-if="type_name" :text="type_name" size="28" color="#020B18" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; "></u-text>
<u-text v-else text="请选择" size="28" color="#AFB5BE" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; "></u-text>
<u-text v-if="type_name" :text="type_name" size="28" color="#020B18" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; " suffixIcon="arrow-right"
:icon-style="{color:'#020B18'}" @click="showTypePicker"></u-text>
<u-text v-else text="请选择" size="28" color="#AFB5BE" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; " suffixIcon="arrow-right"
:icon-style="{color:'#AFB5BE'}" @click="showTypePicker"></u-text>
</template>
</u-cell>
</u-form-item>
@ -51,9 +53,12 @@
prop="line.address"
borderBottom
>
<u-cell :is-link="true" :border="false" @click="selectAddress">
<u-cell :border="false">
<template #title>
<u-text :text="model.line.address" size="28" color="#020B18" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; "></u-text>
<u-text v-if="model.line.address" :text="model.line.address" size="28" color="#020B18" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; " suffixIcon="arrow-right"
:icon-style="{color:'#020B18'}" @click="selectAddress"></u-text>
<u-text v-else text="请选择" size="28" color="#AFB5BE" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; " suffixIcon="arrow-right"
:icon-style="{color:'#AFB5BE'}" @click="selectAddress"></u-text>
</template>
</u-cell>
</u-form-item>
@ -407,20 +412,27 @@ export default {
},
//
selectAddress() {
uni.chooseLocation({
latitude:this.lat||'',
longitude:this.lng||'',
success: (res) => {
this.lat = res.latitude;
this.lng = res.longitude;
this.model.line.coordinate = res.latitude+','+res.longitude;
this.model.line.address = res.name+res.address;
// this.getRegionFn(res);
let that = this;
uni.getLocation({
type: 'wgs84',
success: function (res1) {
uni.chooseLocation({
latitude:res1.latitude||'',
longitude:res1.longitude||'',
success: (res) => {
that.lat = res.latitude;
that.lng = res.longitude;
that.model.line.coordinate = res.latitude+','+res.longitude;
that.model.line.address = res.name+res.address;
// this.getRegionFn(res);
},
fail: (err) => {
console.log(err)
}
});
},
fail: (err) => {
console.log(err)
}
});
},
//
submit(){
@ -452,6 +464,7 @@ export default {
lineSubmit(this.model.line).then(res => {
if (res.code === 200){
uni.$u.toast('上传成功');
this.navTo('/pages/Index/index')
}else{
uni.$u.toast(res.msg);
}

2
pages/Login/index.vue

@ -72,7 +72,7 @@ export default {
uni.setStorageSync('token',res.data.token);
userDetail().then((res) => {
uni.setStorageSync('user',res.data);
this.$store.emit('userInfo',res.data);
this.$store.commit('userInfo',res.data);
});
});
},

21
pages/Order/confirm.vue

@ -23,7 +23,7 @@
</view>
<view class="right row col">
<view class="content no-address">
<view class="title row col" v-if="address.length" @click="navTo('/pages/Address/index?type=select')">
<view class="title row col" v-if="(address.address)" @click="navTo('/pages/Address/index?type=select')">
<view class="name">
<u-text :text="address.name" color="#020B18" size="32" mode="name" lineHeight="50"></u-text>
</view>
@ -51,8 +51,7 @@
<view class="cell-body row col-12">
<view class="left">
<view class="icon">
<u-image mode="aspectFill" class="img" :src="detail.info.cover" height="180" width="180"
radius="20"></u-image>
<u-image mode="aspectFill" class="img" :src="detail.info.image.url" height="180" width="180" radius="20"></u-image>
</view>
</view>
<view class="right row col">
@ -130,7 +129,7 @@
<script>
import api from "@/utils/functions.js";
import {roomDetail} from "@/api/shop";
import {goodsDetail, roomDetail} from "@/api/shop";
import {imghost} from "@/config/host";
import {submitGoodsOrder, userAddrList} from "@/api/user";
@ -160,7 +159,7 @@ export default {
}
},
onLoad(option) {
this.detail = JSON.parse(option.info)
this.detail = uni.getStorageSync('detailInfo');
console.log(this.detail)
},
onReady() {
@ -191,11 +190,12 @@ export default {
},
getDetail(id) {
roomDetail({
house_id: id
goodsDetail({
goods_id: id
}).then(res => {
console.log(res.data)
this.detail = res.data;
this.detail.name = res.data.name;
this.detail.cover = res.data.image[0];
});
},
submit() {
@ -210,6 +210,7 @@ export default {
submitGoodsOrder(data).then(res => {
if(res.code === 200){
uni.getStorageSync('detailInfo');
this.navTo('/pages/Order/done?id='+res.data.goods_order_id);
}else{
uni.$u.toast(res.msg)
@ -220,6 +221,7 @@ export default {
let cacheAddress = uni.getStorageSync('address');
if (cacheAddress) {
console.log('hasCacheAddress')
console.log(cacheAddress)
this.address = cacheAddress;
} else {
userAddrList({}).then(res => {
@ -230,6 +232,7 @@ export default {
}
});
})
console.log(this.address)
}
}
},
@ -240,7 +243,7 @@ export default {
},
onShow() {
this.getDefaultAddress()
},
mounted() {
this.getDefaultAddress();

2
pages/User/edit.vue

@ -377,7 +377,7 @@ export default {
uni.$u.toast('修改成功')
userDetail().then((res) => {
uni.setStorageSync('user',res.data);
this.$store.emit('userInfo',res.data);
this.$store.commit('userInfo',res.data);
uni.navigateBack({delta:1})
});
}else{

16
pages/User/order.vue

@ -83,9 +83,9 @@
</view>
</view>
<view class="button-group row col">
<view class="button">
<u-button text="查看详情" shape="circle" custom-style="height:64rpx;border: 2rpx solid #AFB5BE;padding:0rpx 42rpx;"></u-button>
</view>
<!-- <view class="button">-->
<!-- <u-button text="查看详情" shape="circle" custom-style="height:64rpx;border: 2rpx solid #AFB5BE;padding:0rpx 42rpx;"></u-button>-->
<!-- </view>-->
<view class="button">
<u-button @click="logisticsShow = true" text="查看物流" shape="circle" custom-style="height:64rpx;border: 2rpx solid #AFB5BE;padding:0rpx 42rpx;"></u-button>
</view>
@ -219,15 +219,7 @@ export default {
},
isTop: false,
listsGy: [],
listsSc: [{
create_time:'',
status:1,
goods_cover:'',
goods_name:'',
coin_number:'',
goods_number:'',
take_phone:'',
}],
listsSc: [],
size: {
height: 500,
},

Loading…
Cancel
Save