Browse Source

对接接口

1.0
396316021 2 years ago
parent
commit
3f7ea22bde
  1. 15
      api/feed.js
  2. 15
      api/index.js
  3. 39
      api/line.js
  4. 18
      api/user.js
  5. 1
      components/FooterNav/index.vue
  6. 3
      components/HeaderNav/index.vue
  7. 11
      manifest.json
  8. 55
      pages/Address/index.vue
  9. 3
      pages/Cron/detail.vue
  10. 1
      pages/Cron/rule.vue
  11. 95
      pages/Feed/index.vue
  12. 25
      pages/Index/components/HomePage/index.vue
  13. 1
      pages/Index/components/UserPage/index.vue
  14. 1
      pages/Index/index.vue
  15. 363
      pages/Line/components/ListPage/index.vue
  16. 407
      pages/Line/components/SubmitPage/index.vue
  17. 125
      pages/Line/index.vue
  18. 58
      pages/Line/user.vue
  19. 2
      pages/Login/index.vue
  20. 1
      pages/OrderDetail/index.vue
  21. 1
      pages/Report/qrcode.vue
  22. 1
      pages/Shop/components/ListPage/index.vue
  23. 12
      pages/Shop/index.vue
  24. 3
      pages/User/edit.vue
  25. 1
      pages/User/order.vue
  26. 16
      utils/functions.js

15
api/feed.js

@ -0,0 +1,15 @@
import request from "@/utils/request.js";
import {host} from "@/config/host.js";
/**
* 意见反馈
* @param {Object} data
*/
export function feedback(data) {
return request({
url: `${host}/common/upFeekback`,
method: "post",
data
});
}

15
api/index.js

@ -0,0 +1,15 @@
import request from "@/utils/request.js";
import {host} from "@/config/host.js";
/**
* banner
* @param {Object} data
*/
export function banner(data) {
return request({
url: `${host}/other/banner`,
method: "get",
data
});
}

39
api/line.js

@ -0,0 +1,39 @@
import request from "@/utils/request.js";
import {host} from "@/config/host.js";
/**
* 线索类型
* @param {Object} data
*/
export function lineType(data) {
return request({
url: `${host}/clue/clue-type`,
method: "get",
data
});
}
/**
* 线索上传
* @param {Object} data
*/
export function lineSubmit(data) {
return request({
url: `${host}/clue/submit`,
method: "post",
data
});
}
/**
* 线索列表
* @param {Object} data
*/
export function lineList(data) {
return request({
url: `${host}/clue/lists`,
method: "post",
data
});
}

18
api/user.js

@ -62,4 +62,22 @@ export function userEdit(data) {
method: "post",
data
});
}
export function userLineList(data) {
return request({
url: `${host}/clue/user-lists`,
method: "post",
data
});
}
export function userAddrList(data) {
return request({
url: `${host}/user-address/lists`,
method: "get",
data
});
}

1
components/FooterNav/index.vue

@ -66,7 +66,6 @@ export default {
}
this.$store.commit('footCheck', item.name);
this.$store.commit('title', item.title);
console.log('commit');
},
isFootCheck() {
// return this.;

3
components/HeaderNav/index.vue

@ -58,9 +58,6 @@
this.navPaddingTop = api.navHeight().navPaddingTop,
this.navHeight = api.navHeight().navHeight,
this.headerPadding = api.navHeight().headerPadding
console.log('this.navPaddingTop123',this.navPaddingTop);
console.log('this.navHeight',this.navHeight);
console.log('this.headerPadding',this.headerPadding);
},
navBack(){
wx.navigateBack({

11
manifest.json

@ -54,7 +54,16 @@
"setting" : {
"urlCheck" : false
},
"usingComponents" : true
"usingComponents" : true,
"requiredPrivateInfos": ["getLocation", "chooseLocation"],
"permission" : {
"scope.userLocation" : {
"desc" : "获取发生事件位置"
},
"scope.userFuzzyLocation" : {
"desc" : "获取发生事件位置"
}
}
},
"mp-alipay" : {
"usingComponents" : true

55
pages/Address/index.vue

@ -13,7 +13,7 @@
<uni-swipe-action>
<u-list :height="size.height+'px'">
<uni-swipe-action-item :right-options="options" v-for="(item,index) in lists">
<uni-swipe-action-item @click="deleteAddr" :right-options="options" v-for="(item,index) in lists">
<u-list-item>
<u-cell isLink
:border="false"
@ -24,30 +24,27 @@
<view class="title-container">
<view class="title-group row">
<view class="title">
<u-text :block="true" mode="name" text="张某某" format="encrypt" size="32" color="#020b18"></u-text>
<u-text :block="true" mode="name" :text="item.name" format="encrypt" size="32" color="#020b18"></u-text>
</view>
<view class="phone">
<u-text :block="true" mode="phone" text="15012345678" format="encrypt" size="32" color="#020b18"></u-text>
<u-text :block="true" mode="phone" :text="item.phone" format="encrypt" size="32" color="#020b18"></u-text>
</view>
</view>
<view class="address">
<u-text text="四川省成都市双流区 海昌路168号" size="32" color="#020b18"></u-text>
<u-text :text="item.area+item.address" size="32" color="#020b18"></u-text>
</view>
</view>
</template>
<template #label>
<view class="label-container row">
<view class="checkbox">
<u-radio-group v-model="value">
<u-radio
<u-checkbox
activeColor="#FF9545"
:key="index"
:name="item.id"
:checked="item.is_default"
size="35"
shape="circle"
iconSize="30"
></u-radio>
</u-radio-group>
></u-checkbox>
</view>
<view class="title">
<u-text text="设为默认地址" size="28" color="#020b18"></u-text>
@ -85,6 +82,7 @@ import {
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
import {userAddrList} from "@/api/user";
export default {
components: {
@ -108,30 +106,7 @@ export default {
newIcon: imghost + '/static/image/new-icon.png',
},
isTop: false,
lists: [
{
id: 1,
thumb: imghost + '/static/image/new-1.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true
}, {
id: 2,
thumb: imghost + '/static/image/new-2.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true
}, {
id: 3,
thumb: imghost + '/static/image/new-3.png',
title: '全市公安机关夏季治安打击整治“彭安行动”111开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: false
},
],
lists: [],
size: {
height: 500,
},
@ -144,7 +119,6 @@ export default {
let that = this;
let height = api.wxSystemInfo().system.windowHeight
let headerHeight = uni.$u.getPx(44) + uni.$u.sys().statusBarHeight
console.log('headerHeight',headerHeight)
let info = uni.createSelectorQuery().in(this).select('.foot-button');
info.boundingClientRect(function (data) {
@ -181,6 +155,14 @@ export default {
url: url
})
},
getAddressList(){
userAddrList().then(res => {
this.lists = res.data;
})
},
deleteAddr(e){
console.log(e)
}
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
@ -193,6 +175,9 @@ export default {
// this.listHeight();
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
},
mounted() {
this.getAddressList();
}
}
</script>

3
pages/Cron/detail.vue

@ -119,7 +119,6 @@ export default {
let that = this;
let height = api.wxSystemInfo().system.windowHeight
let headerHeight = uni.$u.getPx(44) + uni.$u.sys().statusBarHeight
console.log('headerHeight', headerHeight)
let info = uni.createSelectorQuery().in(this);
info.select('.top-container').boundingClientRect(function (data) {
@ -134,7 +133,6 @@ export default {
otherHeight += item.height;
});
that.size.height = that.size.height = height - headerHeight - otherHeight - uni.$u.getPx('40rpx');
console.log(that.size.height)
});
},
computed: {
@ -181,7 +179,6 @@ export default {
if (res.data.length === 0) {
this.end[this.current - 1] = true;
}
console.log(this.end)
})
if (nextPage) {
this.page[this.current - 1]++;

1
pages/Cron/rule.vue

@ -150,7 +150,6 @@ export default {
let info = uni.createSelectorQuery().in(this).select('.top-container');
info.boundingClientRect(function (data) {
that.size.height += data.height;
console.log('top-container',data)
}).exec(function(res){});
},
chatDetail(item) {

95
pages/Feed/index.vue

@ -19,18 +19,19 @@
position:'relative'
}">
<u-form
errorType="toast"
labelWidth="auto"
labelPosition="left"
:model="model1"
:model="model"
:rules="rules"
ref="form1"
ref="feedForm"
>
<u-form-item
prop="userInfo.name"
ref="item1"
prop="remark"
:custom-style="{padding:'0'}"
>
<u-textarea
v-model="model.remark"
border="none"
placeholder="请描述您遇到的问题"
height="220"
@ -42,12 +43,12 @@
</u-form-item>
<u-form-item
label="联系方式"
prop="userInfo.sex"
prop="connect"
borderBottom
ref="item1"
:custom-style="{padding:'34rpx 0'}"
>
<u-input
v-model="model.connect"
inputAlign="right"
disabledColor="#ffffff"
placeholder="请填写手机号,以便我们联系您"
@ -57,18 +58,18 @@
</u-form-item>
<u-form-item
prop="userInfo.sex"
ref="item1"
:custom-style="{padding:'34rpx 0'}"
>
<u-upload
width="160"
height="160"
:fileList="fileList1"
:fileList="fileList"
name="1"
multiple
:maxCount="10"
uploadIcon="plus"
@afterRead="afterFileRead"
@delete="deleteFile"
></u-upload>
</u-form-item>
</u-form>
@ -86,6 +87,8 @@
marginTop:'48rpx',
height:'80rpx'
}"
@click="submit"
></u-button>
</view>
</u-col>
@ -109,6 +112,8 @@ import {
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
import {feedback} from "@/api/feed";
import {userDetail, userEdit} from "@/api/user";
export default {
components: {
@ -123,7 +128,26 @@ export default {
newIcon: imghost + '/static/image/new-icon.png',
},
isTop: false,
fileList1:[]
fileList:[],
model:{
connect:'',
remark:'',
file:[]
},
rules:{
'connect': {
type: 'string',
required: true,
message: '请填写联系方式',
trigger: ['blur', 'change']
},
'remark': {
type: 'string',
required: true,
message: '请填写内容',
trigger: ['blur', 'change']
},
},
}
},
onLoad() {
@ -135,7 +159,58 @@ export default {
},
},
methods: {
submit(){
let file = [];
this.fileList.forEach(item => {
file.push(item.url)
});
this.model.file = file.join();
this.$refs.feedForm.validate().then(res => {
feedback(this.model).then((res) => {
if(res === '200'){
uni.$u.toast('反馈成功')
}else{
uni.$u.toast(res.msg)
}
})
}).catch(errors => {
uni.$u.toast(errors[0].message)
})
},
//
async afterFileRead (event){
let lists = [].concat(event.file);
let fileListLen = this.fileList.length;
lists.map((item) => {
this.fileList.push({
...item,
status: 'uploading',
message: '上传中',
});
});
for (let i = 0; i < lists.length; i++) {
api.upfile(lists[i].url).then(res => {
let item = this.fileList[fileListLen];
this.fileList.splice(fileListLen, 1, {
...item,
status: 'success',
message: '',
url: res.show_path,
thumb: res.show_path,
});
fileListLen++;
})
// const result = await uploadFilePromise(lists[i].url);
}
},
//
deleteFile(event){
this.fileList.splice(event.index, 1);
},
},
onPageScroll(res) {
if (res.scrollTop <= 20) {

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

@ -6,7 +6,7 @@
<u-row :custom-style="{padding:'0 26rpx'}">
<u-col :span="12">
<u-swiper
:list="list1"
:list="indexBanner"
height="300"
radius="20"
></u-swiper>
@ -125,7 +125,7 @@
<view class="image-container">
<u-image src="https://cdn.uviewui.com/uview/album/1.jpg" :lazy-load="true" width="100%" height="180"></u-image>
<view class="img-title">
<u--text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u--text>
<u-text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u-text>
</view>
</view>
</u-col>
@ -135,7 +135,7 @@
<view class="image-container">
<u-image src="https://cdn.uviewui.com/uview/album/1.jpg" :lazy-load="true" width="100%" height="180"></u-image>
<view class="img-title">
<u--text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u--text>
<u-text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u-text>
</view>
</view>
</u-col>
@ -171,7 +171,7 @@
<view class="image-container">
<u-image src="https://cdn.uviewui.com/uview/album/1.jpg" :lazy-load="true" width="100%" height="180"></u-image>
<view class="img-title">
<u--text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u--text>
<u-text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u-text>
</view>
</view>
</u-col>
@ -181,7 +181,7 @@
<view class="image-container">
<u-image src="https://cdn.uviewui.com/uview/album/1.jpg" :lazy-load="true" width="100%" height="180"></u-image>
<view class="img-title">
<u--text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u--text>
<u-text :lines="1" text="社区活动 | 大丰街道大运会志愿活动报名啦!" size="28" color="#FFFFFF" class="img-title"></u-text>
</view>
</view>
</u-col>
@ -238,6 +238,7 @@ import {
} from '@/config/host.js'
import api from '@/utils/functions.js';
import MzCard from "@/components/MzCard/index.vue";
import {banner} from "@/api";
export default {
@ -281,12 +282,7 @@ export default {
wallpaperBgImage: 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
bg: imghost + '/static/image/BG.png',
},
indexBanner: [
{
image: imghost + '/static/image/banner.png',
url: '',
}
],
indexBanner: [],
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
@ -321,6 +317,11 @@ export default {
if (this.userExtends) {
this.user.coupons = this.userExtends.coupon_count
}
},
getBanner(){
banner({}).then(res => {
this.indexBanner = res.data.banner;
})
}
},
onPageScroll(res) {
@ -336,7 +337,7 @@ export default {
api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
},
mounted() {
this.getBanner();
},
updated() {

1
pages/Index/components/UserPage/index.vue

@ -257,7 +257,6 @@ export default {
},
mounted() {
this.userInfo = uni.getStorageSync('user');
console.log(this.userInfo)
},
methods: {
copyId(idcard){

1
pages/Index/index.vue

@ -82,7 +82,6 @@
testLogin({
user_id: 1
}).then((res) => {
console.log(res.data)
uni.setStorageSync('token', res.data);
this.show = false;
this.getUserDetail();

363
pages/Line/components/ListPage/index.vue

@ -7,139 +7,102 @@
<view class="background-view blue"></view>
<view class="title-group row">
<view class="label">提交时间</view>
<view class="content">2023/08/03 15:23</view>
<view class="status blue">待办结</view>
<view class="content">{{item.create_time}}</view>
<view class="status" :class="item.status === 1 ?'blue':'green'">{{ item.status === 1 ?'待办结':'已办结' }}</view>
</view>
<view class="main-hr"></view>
<view class="body-group border-box">
<view class="body-item row">
<view class="label">事件类型</view>
<view class="content">环境污染</view>
<view class="content">{{item.clue_type}}</view>
</view>
<view class="body-item row">
<view class="label">事件地址</view>
<view class="content">四川省成都市新都区22号</view>
</view>
<view class="body-item row">
<view class="label">文字说明</view>
<view class="content">有污水排出污染河流</view>
</view>
<view class="body-item row image">
<view class="label">图片视频</view>
<view class="content row">
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
<view class="content col">
<u-text
:text="item.address"
size="28"
color="#020B18"
custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; "></u-text>
</view>
</view>
</view>
</view>
<view class="card-ext"></view>
</view>
<view class="card-item border-box">
<view class="card-main border-box">
<view class="background-view green"></view>
<view class="title-group row">
<view class="label">提交时间</view>
<view class="content">2023/08/03 15:23</view>
<view class="status green">已办结</view>
</view>
<view class="main-hr"></view>
<view class="body-group border-box">
<view class="body-item row">
<view class="label">事件类型</view>
<view class="content">环境污染</view>
</view>
<view class="body-item row">
<view class="label">事件地址</view>
<view class="content">四川省成都市新都区22号</view>
</view>
<view class="body-item row">
<view class="label">文字说明</view>
<view class="content">有污水排出污染河流</view>
<view class="content">{{item.describe}}</view>
</view>
<view class="body-item row image">
<view class="body-item row image" v-if="item.images || item.video">
<view class="label">图片视频</view>
<view class="content row">
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" width="100%" height="180" mode="widthFix"></u-image>
<view class="content-img col-6" v-for="itemImg in item.images" v-if="item.images">
<u-image v-show="itemImg" :src="itemImg" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" width="100%" height="180" mode="widthFix"></u-image>
<view class="content-img col-6" v-for="itemVideo in item.video" v-if="item.video">
<u-image v-show="itemVideo" :src="itemVideo" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
</view>
</view>
</view>
</view>
<view class="card-ext">
<view class="card-main border-box">
<view class="body-group border-box">
<view class="body-item row">
<view class="label">处理时间</view>
<view class="content">2023/09/23 16:25</view>
</view>
<view class="body-item row">
<view class="label">处理部门</view>
<view class="content">***部门</view>
</view>
<view class="body-item row">
<view class="label">丰行侠暖新币</view>
<view class="content orange">10</view>
</view>
<view class="body-item row image">
<view class="label">图片视频</view>
<view class="content">
已勒令整改并检查完成
</view>
<view class="content row">
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
</view>
</view>
</view>
</view>
<view class="card-main border-box">
<view class="card-main border-box" v-if="item.handle_time">
<view class="body-group border-box">
<view class="body-item row">
<view class="label">处理时间</view>
<view class="content">2023/09/23 16:25</view>
<view class="content">{{item.handle_time}}</view>
</view>
<view class="body-item row">
<view class="label">处理部门</view>
<view class="content">***部门</view>
<view class="content">{{item.handle_department}}</view>
</view>
<view class="body-item row">
<view class="label">丰行侠暖新币</view>
<view class="content orange">10</view>
<view class="content orange">{{ item.coin_number }}</view>
</view>
<view class="body-item row image">
<view class="label">图片视频</view>
<view class="content">
已勒令整改并检查完成
</view>
<view class="content row">
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
<view class="content-img col-6">
<u-image :src="staticImage.userFxx" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>
</view>
{{item.handle_res}}
</view>
<!-- <view class="content row">-->
<!-- <view class="content-img col-6">-->
<!-- <u-image :src="item.video" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>-->
<!-- </view>-->
<!-- <view class="content-img col-6">-->
<!-- <u-image :src="item.video" :lazy-load="true" width="100%" height="180" mode="widthFix"></u-image>-->
<!-- </view>-->
<!-- </view>-->
</view>
</view>
</view>
</view>
</view>
<u-loadmore :status="status" fontSize="28" marginBottom="50" marginTop="30" @loadmore="getLineList()"/>
</view>
</u-col>
</u-row>
<u-datetime-picker
:show="startShow"
v-model="pages.starttime"
@cancel="startShow = false"
@close="startShow = false"
@confirm="selectStart"
mode="date"
></u-datetime-picker>
<u-datetime-picker
:show="endShow"
v-model="pages.endtime"
@cancel="endShow = false"
@close="endShow = false"
@confirm="selectEnd"
mode="date"
></u-datetime-picker>
<u-picker :show="typeShow"
:columns="[columns]"
keyName="name"
@close="typeShow = false"
@cancel="typeShow = false"
@confirm="selectType"></u-picker>
</template>
<script>
@ -148,117 +111,40 @@ import {
} from '@/config/host.js'
import api from '@/utils/functions.js';
import MzCard from "@/components/MzCard/index.vue";
import {lineList, lineType} from "@/api/line";
import {userLineList} from "@/api/user";
export default {
components:{
MzCard
},
data: {
lists:[{},{},{}],
tags:[
{
checked:true,
name:'红绿灯故障'
},{
checked:false,
name:'存在安全隐患'
},{
checked:false,
name:'公共设施损坏了'
},{
checked:false,
name:'环境污染污水'
},
],
fileList1:[],
model1: {
userInfo: {
name: '',
sex: 1,
},
},
rules: {
'userInfo.name': {
type: 'string',
required: true,
message: '请填写姓名',
trigger: ['blur', 'change']
},
'userInfo.sex': {
type: 'string',
max: 1,
required: true,
message: '请选择男或女',
trigger: ['blur', 'change']
},
},
sexList:[
{
id:1,
name: '男',
disabled: false,
},
{
i:2,
name: '女',
disabled: false,
},
],
list1: [
'https://cdn.uviewui.com/uview/swiper/swiper1.png',
'https://cdn.uviewui.com/uview/swiper/swiper2.png',
'https://cdn.uviewui.com/uview/swiper/swiper3.png',
],
title: '暖新人',
loading: true,
staticImage: {
hiImage: imghost + '/static/image/index-user-title-hi.png',
dogImage: imghost + '/static/image/index-user-title-dog.png',
couponsImage: imghost + '/static/image/index-user-coupons-background.png',
indexButtonGroup: [{
image: imghost + '/static/image/index-five-1.png',
url: '/pages/Authentication/index',
title:'丰行侠认证'
},{
image: imghost + '/static/image/index-five-2.png',
url: '/pages/Index/index',
title:'顾问认证'
},{
image: imghost + '/static/image/index-five-3.png',
url: '/pages/Index/index',
title:'线索上传'
},{
image: imghost + '/static/image/index-five-4.png',
url: '/pages/Index/index',
title:'社区顾问库'
},{
image: imghost + '/static/image/index-five-5.png',
url: '/pages/Index/index',
title:'暖新服务'
},
],
wallpaperBgImage: 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
bg: imghost + '/static/image/BG.png',
},
indexBanner: [
{
image: imghost + '/static/image/banner.png',
url: '',
name:'lineLists',
props:{
isUserList:{
type:Boolean,
default:false
}
},
data() {
return {
columns:[],
typeShow:false,
startShow:false,
endShow:false,
status: 'loadmore',
page:1,
lists: [],
title: '暖新人',
loading: true,
pages:{
page:1,
limit:10,
clue_type_id:'',
status:'',
starttime:'',
endtime:'',
}
],
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685
},
isTop: false,
pagePadding: 100,
userInfo: {},
userExtends: {},
size:{
height:0
}
},
onLoad() {
@ -269,12 +155,16 @@ export default {
let info = uni.createSelectorQuery().in(this).select('.foot-button');
info.boundingClientRect(function (data) {
that.size.height = data.height;
console.log('height',that.size.height)
}).exec(function (res) {});
},
methods: {
//线
getLineType(){
lineType({}).then((res) => {
this.columns = res.data;
})
},
checkboxClick(index){
console.log(index)
this.tags[index].checked = !this.tags[index].checked;
},
userCouponsPage() {
@ -288,15 +178,63 @@ export default {
})
},
updateUserInfo() {
if (this.userInfo) {
this.user.id = this.userInfo.id
this.user.nickname = this.userInfo.name
this.user.avatar = this.userInfo.avatar
},
getLineList(clear = false){
console.log('getLineList')
if(clear){
this.status = 'loadmore'
this.pages.page = 1;
this.pages.limit = 10;
this.lists = [];
}
if (this.userExtends) {
this.user.coupons = this.userExtends.coupon_count
if(this.status === 'nomore'){
return false;
}
}
this.status = 'loading';
let data = this.pages;
data.starttime = uni.$u.timeFormat(data.starttime, 'yyyy-mm-dd 00:00:00')
data.endtime = uni.$u.timeFormat(data.endtime, 'yyyy-mm-dd 23:59:59')
if(!this.isUserList){
lineList(data).then(res => {
if(res.data.length === 0){
this.status = 'nomore';
}else{
this.status = 'loadmore';
}
this.lists = this.lists.concat(res.data);
});
}else{
userLineList(data).then(res => {
if(res.data.length === 0){
this.status = 'nomore';
}else{
this.status = 'loadmore';
}
this.lists = this.lists.concat(res.data);
});
}
this.pages.page++;
},
//
selectType(e){
this.pages.clue_type_id = e.value[0].id
this.$emit('typeCheck', e.value[0].name)
this.typeShow = false;
},
//
selectStart(e){
this.pages.starttime = e.value;
this.startShow = false;
this.endShow = true;
},
selectEnd(e){
this.pages.endtime = e.value;
this.startShow = false;
this.endShow = false;
},
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
@ -304,14 +242,14 @@ export default {
} else {
uni.$emit('isTop', false);
}
},
created() {
this.pagePadding = (api.navHeight().navPaddingTop +
api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
},
mounted() {
this.getLineType();
this.getLineList(true);
},
updated() {
@ -328,7 +266,22 @@ export default {
this.userExtends = newVal;
this.updateUserInfo();
}
}
},
"pages.starttime": {
handler(newVal, oldVal) {
this.$emit('startTime', this.pages.starttime)
}
},
"pages.endtime": {
handler(newVal, oldVal) {
this.$emit('endTime', this.pages.endtime)
}
},
"pages.clue_type_id": {
handler(newVal, oldVal) {
this.getLineList(true)
}
},
}
}
</script>

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

@ -2,7 +2,7 @@
<view class="list-page" :style="{padding:'20rpx',marginBottom:'100rpx'}">
<u-form
labelPosition="left"
:model="model1"
:model="model"
:rules="rules"
ref="form1"
labelWidth="200rpx"
@ -18,30 +18,28 @@
padding:'34rpx 0'
}"
label="事件类型"
prop="userInfo.name"
prop="line.type_id"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请选择"
v-model="model1.userInfo.name"
border="none"
></u-input>
<u-cell :is-link="true" :border="false" @click="typeShow = true" >
<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>
</template>
</u-cell>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="手机号"
prop="userInfo.name"
prop="line.phone"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请输入"
v-model="model1.userInfo.name"
v-model="model.line.phone"
border="none"
></u-input>
</u-form-item>
@ -50,23 +48,20 @@
padding:'34rpx 0'
}"
label="事件地址"
prop="userInfo.name"
prop="line.address"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请选择"
v-model="model1.userInfo.name"
border="none"
></u-input>
<u-cell :is-link="true" :border="false" @click="selectAddress">
<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>
</template>
</u-cell>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
prop="userInfo.name"
ref="item1"
prop="line.describe"
>
<view class="label-title">文字说明</view>
@ -85,6 +80,7 @@
backgroundColor:'#FAFAFA',
padding:'8rpx 20rpx'
}"
v-model="model.line.describe"
></u-textarea>
</u-form-item>
@ -93,7 +89,6 @@
padding:'0 0 34rpx 0'
}"
prop="userInfo.name"
ref="item1"
>
<view class="upload-container row">
<view class="row">
@ -105,11 +100,14 @@
<u-upload
width="160"
height="160"
:fileList="fileList1"
name="1"
:fileList="imageList"
name="img"
multiple
:maxCount="10"
:previewFullImage="true"
uploadIcon="plus"
@afterRead="afterImgRead"
@delete="deleteImg"
></u-upload>
</view>
<view class="title">上传照片</view>
@ -119,11 +117,12 @@
<u-upload
width="160"
height="160"
:fileList="fileList1"
name="1"
multiple
:maxCount="10"
:fileList="videoList"
name="video"
:maxCount="1"
uploadIcon="plus"
@afterRead="afterVideoRead"
@delete="deleteVideo"
></u-upload>
</view>
<view class="title">上传视频</view>
@ -146,8 +145,15 @@
fontWeight:'400',
height:'80rpx'
}"
@click="submit"
></u-button>
</view>
<u-picker :show="typeShow"
:columns="[tags]"
keyName="name"
@close="typeShow = false"
@cancel="typeShow = false"
@confirm="selectType"></u-picker>
</template>
<script>
@ -156,116 +162,126 @@ import {
} from '@/config/host.js'
import api from '@/utils/functions.js';
import MzCard from "@/components/MzCard/index.vue";
import {lineSubmit, lineType} from "@/api/line";
import login from "@/pages/Login/index.vue";
export default {
components:{
MzCard
},
data: {
tags:[
{
checked:true,
name:'红绿灯故障'
},{
checked:false,
name:'存在安全隐患'
},{
checked:false,
name:'公共设施损坏了'
},{
checked:false,
name:'环境污染污水'
data() {
return {
typeList:[],
typeShow:false,
imageList: [],
videoList: [],
tags: [],
fileList1: [],
model: {
line: {
clue_type_id: '',
phone: '',
address: '',
coordinate: '',
describe: '',
images: [],
video: '',
},
],
fileList1:[],
model1: {
userInfo: {
name: '',
sex: 1,
},
},
rules: {
'userInfo.name': {
type: 'string',
required: true,
message: '请填写姓名',
trigger: ['blur', 'change']
},
'userInfo.sex': {
type: 'string',
max: 1,
required: true,
message: '请选择男或女',
trigger: ['blur', 'change']
rules: {
'line.clue_type_id ': {
type: 'string',
required: true,
message: '请选择线索类型',
trigger: ['blur', 'change']
},'line.phone ': {
type: 'string',
required: true,
message: '请填写手机号',
trigger: ['blur', 'change']
},'line.address': {
type: 'string',
required: true,
message: '请填写地址',
trigger: ['blur', 'change']
},'line.describe ': {
type: 'string',
required: true,
message: '请填写文字说明',
trigger: ['blur', 'change']
},
},
},
sexList:[
{
id:1,
name: '男',
disabled: false,
sexList: [
{
id: 1,
name: '男',
disabled: false,
},
{
i: 2,
name: '女',
disabled: false,
},
],
list1: [
'https://cdn.uviewui.com/uview/swiper/swiper1.png',
'https://cdn.uviewui.com/uview/swiper/swiper2.png',
'https://cdn.uviewui.com/uview/swiper/swiper3.png',
],
title: '暖新人',
loading: true,
staticImage: {
hiImage: imghost + '/static/image/index-user-title-hi.png',
dogImage: imghost + '/static/image/index-user-title-dog.png',
couponsImage: imghost + '/static/image/index-user-coupons-background.png',
indexButtonGroup: [{
image: imghost + '/static/image/index-five-1.png',
url: '/pages/Authentication/index',
title: '丰行侠认证'
}, {
image: imghost + '/static/image/index-five-2.png',
url: '/pages/Index/index',
title: '顾问认证'
}, {
image: imghost + '/static/image/index-five-3.png',
url: '/pages/Index/index',
title: '线索上传'
}, {
image: imghost + '/static/image/index-five-4.png',
url: '/pages/Index/index',
title: '社区顾问库'
}, {
image: imghost + '/static/image/index-five-5.png',
url: '/pages/Index/index',
title: '暖新服务'
},
],
wallpaperBgImage: 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
bg: imghost + '/static/image/BG.png',
},
{
i:2,
name: '女',
disabled: false,
indexBanner: [
{
image: imghost + '/static/image/banner.png',
url: '',
}
],
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685
},
],
list1: [
'https://cdn.uviewui.com/uview/swiper/swiper1.png',
'https://cdn.uviewui.com/uview/swiper/swiper2.png',
'https://cdn.uviewui.com/uview/swiper/swiper3.png',
],
title: '暖新人',
loading: true,
staticImage: {
hiImage: imghost + '/static/image/index-user-title-hi.png',
dogImage: imghost + '/static/image/index-user-title-dog.png',
couponsImage: imghost + '/static/image/index-user-coupons-background.png',
indexButtonGroup: [{
image: imghost + '/static/image/index-five-1.png',
url: '/pages/Authentication/index',
title:'丰行侠认证'
},{
image: imghost + '/static/image/index-five-2.png',
url: '/pages/Index/index',
title:'顾问认证'
},{
image: imghost + '/static/image/index-five-3.png',
url: '/pages/Index/index',
title:'线索上传'
},{
image: imghost + '/static/image/index-five-4.png',
url: '/pages/Index/index',
title:'社区顾问库'
},{
image: imghost + '/static/image/index-five-5.png',
url: '/pages/Index/index',
title:'暖新服务'
isTop: false,
pagePadding: 100,
userInfo: {},
userExtends: {},
size: {
height: 0
},
],
wallpaperBgImage: 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
bg: imghost + '/static/image/BG.png',
},
indexBanner: [
{
image: imghost + '/static/image/banner.png',
url: '',
}
],
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685
},
isTop: false,
pagePadding: 100,
userInfo: {},
userExtends: {},
size:{
height:0
lat:'',
lng:'',
type_name:'',
}
},
onLoad() {
@ -276,33 +292,139 @@ export default {
let info = uni.createSelectorQuery().in(this).select('.foot-button');
info.boundingClientRect(function (data) {
that.size.height = data.height;
console.log('height',that.size.height)
}).exec(function (res) {});
},
methods: {
//
checkboxClick(index){
console.log(index)
this.tags[index].checked = !this.tags[index].checked;
},
userCouponsPage() {
wx.navigateTo({
url: '/pages/UserCoupons/index'
})
},
navTo(url) {
wx.navigateTo({
url: url
})
},
updateUserInfo() {
if (this.userInfo) {
this.user.id = this.userInfo.id
this.user.nickname = this.userInfo.name
this.user.avatar = this.userInfo.avatar
//线
getLineType(){
lineType({}).then((res) => {
this.tags = res.data;
})
},
//线
selectType(e){
this.model.line.clue_type_id = e.value[0].id;
this.type_name = e.value[0].name;
this.typeShow = false;
},
//
async afterImgRead (event){
let lists = [].concat(event.file);
let fileListLen = this.imageList.length;
lists.map((item) => {
this.imageList.push({
...item,
status: 'uploading',
message: '上传中',
});
});
for (let i = 0; i < lists.length; i++) {
api.upfile(lists[i].url).then(res => {
let item = this.imageList[fileListLen];
this.imageList.splice(fileListLen, 1, {
...item,
status: 'success',
message: '',
url: res.show_path,
thumb: res.show_path,
});
fileListLen++;
})
// const result = await uploadFilePromise(lists[i].url);
}
},
//
async afterVideoRead (event){
let lists = [].concat(event.file);
let fileListLen = this.videoList.length;
lists.map((item) => {
this.videoList.push({
...item,
status: 'uploading',
message: '上传中',
});
});
for (let i = 0; i < lists.length; i++) {
api.upfile(lists[i].url).then(res => {
let item = this.videoList[fileListLen];
this.videoList.splice(fileListLen, 1, {
...item,
status: 'success',
message: '',
url: res.show_path,
thumb: res.show_path,
});
fileListLen++;
})
}
if (this.userExtends) {
this.user.coupons = this.userExtends.coupon_count
},
//
deleteImg(event){
this.imageList.splice(event.index, 1);
},
//
deleteVideo(event){
this.videoList.splice(event.index, 1);
},
//
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);
},
fail: (err) => {
console.log(err)
}
});
},
//
submit(){
let image = [];
this.imageList.forEach(item => {
image.push(item.url)
});
this.model.line.images = image;
let video = [];
this.videoList.forEach(item => {
video.push(item.url);
});
this.model.line.video = video.join();
if(!this.model.line.describe){
let tags = [];
this.tags.forEach(item => {
if(item.checked){
tags.push(item.name);
}
});
this.model.line.describe = tags.join(',');
}
console.log(this.model.line)
lineSubmit(this.model.line).then(res => {
});
}
},
onPageScroll(res) {
@ -318,7 +440,7 @@ export default {
api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
},
mounted() {
this.getLineType();
},
updated() {
@ -342,4 +464,5 @@ export default {
<style lang="scss">
@import './components/index.scss';
</style>

125
pages/Line/index.vue

@ -21,15 +21,15 @@
lineColor="#F47210"
:custom-style="{margin:'auto'}"
:scrollable="false"
@change="tabsChenge"
@change="tabsChange"
></u-tabs>
<view class="screen-container row" :class="{show:(tabCheck === 'lists')}">
<u-row :custom-style="{width:'100%',display:(tabCheck === 'lists'?'flex':'none')}" :gutter="20">
<u-col :span="5">
<u-col :span="4">
<view class="screen-type">
<view class="screen-type-button row ">
<view class="button-text">
<u-text text="事件类型" size="28" color="#020B18"></u-text>
<view class="button-text" @click="$refs.lineLists.typeShow = true">
<u-text :text="typeCheck?typeCheck:'事件类型'" size="28" color="#020B18" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;"></u-text>
</view>
<view class="button-icon">
<u-icon name="arrow-down-fill" size="12"></u-icon>
@ -37,11 +37,18 @@
</view>
</view>
</u-col>
<u-col :span="7">
<u-col :span="8">
<view class="screen-date col-7">
<view class="screen-date-button row col">
<view class="date-text">
<u-text text="2023-08-03" size="28" color="#020B18"></u-text>
<view class="date-text" @click="$refs.lineLists.startShow = true"
style="max-width:90%;display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;">
<view class="date-item">
<u-text mode="date" :text="startTime||0" size="28" color="#020B18" custom-style=""></u-text>
</view>
<view class="date-item">~</view>
<view class="date-item">
<u-text mode="date" :text="endTime||0" size="28" color=""></u-text>
</view>
</view>
<view class="date-icon">
<u-icon name="calendar" size="32"></u-icon>
@ -60,27 +67,36 @@
</u-row>
</view>
<view class="screen-button-body" :style="{display:(tabCheck === 'lists'?'flex':'none')}">
<u-row :custom-style="{padding:'16rpx 26rpx'}">
<u-col>
<view class="screen-button-group row">
<view class="screen-button">
<u-button text="全部事件" color="#FF9545" :hairline="false" :custom-style="{borderRadius:'10rpx',border:'none'}">全部事件</u-button>
</view>
<view class="screen-button">
<u-button text="全部事件" color="#fff" :hairline="false" :custom-style="{borderRadius:'10rpx',border:'none',color:'#020B18'}">待结案</u-button>
</view>
<view class="screen-button">
<u-button text="全部事件" color="#fff" :hairline="false" :custom-style="{borderRadius:'10rpx',border:'none',color:'#020B18'}">已结案</u-button>
</view>
</view>
</u-col>
</u-row>
</view>
<view :class="{show:(tabCheck === 'lists')}">
<ListPage v-show="(tabCheck === 'lists')"></ListPage>
<view class="screen-button-body" :style="{display:(tabCheck === 'lists'?'flex':'none')}">
<u-row :custom-style="{padding:'16rpx 26rpx'}">
<u-col>
<view class="screen-button-group row">
<view class="screen-button" v-for="(item,index) in statusList">
<u-button
:color="(index === status)?'#FF9545':'#ffffff'"
:hairline="false"
:custom-style="{borderRadius:'10rpx',border:'none',color:(index === status)?'#ffffff':'#020B18'}"
:class="{active:(index === status)}"
@click="selectStatus(item,index)"
>{{item.name}}</u-button>
</view>
</view>
</u-col>
</u-row>
</view>
<ListPage
ref="lineLists"
v-show="(tabCheck === 'lists')"
@typeCheck="selectType"
@startTime="selectStart"
@endTime="selectEnd"
></ListPage>
</view>
</template>
<script>
@ -94,6 +110,16 @@
},
data() {
return {
statusList:[
{
name: '全部事件',
},{
name: '待结案',
},{
name: '已结案',
},
],
status:0,
list: [{
name: '线索提交',
id:'submit'
@ -104,6 +130,11 @@
tabCheck:'submit',
show: false,
title: '线索上传',
startShow:false,
endShow:false,
startTime:'',
endTime:'',
typeCheck:'',
}
},
onLoad() {
@ -111,17 +142,35 @@
},
methods: {
// store.
tabsChenge(e){
console.log(e)
tabsChange(e){
this.tabCheck = e.id
}
},
selectStatus(item,index){
this.status = index;
this.$refs.lineLists.pages.status = index;
this.$refs.lineLists.getLineList(true);
},
selectType(event){
this.typeCheck = event;
},
selectStart(event){
this.startTime = event;
},
selectEnd(event){
this.endTime = event;
},
},
onPageScroll(res) {
},
onReachBottom(){
if(this.tabCheck === 'lists'){
this.$refs.lineLists.getLineList();
}
},
created() {
},
},
mounted() {
},
@ -129,7 +178,14 @@
</script>
<style lang="scss">
::v-deep .u-cell__body{
padding: {
top:0 !important;
bottom:0 !important;
left:0 !important;
right:0 !important;
} ;
}
::v-deep .u-tabs__wrapper__nav__line{
left:24rpx;
}
@ -203,4 +259,13 @@
.show {
animation: show .5s;
}
.date-text{
.date-item{
display: inline-block;
}
}
.button-text{
max-width:90%
}
</style>

58
pages/Line/user.vue

@ -14,11 +14,11 @@
<view class="screen-container row" >
<u-row :custom-style="{width:'100%',display:'flex'}" :gutter="20">
<u-col :span="5">
<u-col :span="4">
<view class="screen-type">
<view class="screen-type-button row ">
<view class="button-text">
<u-text text="事件类型" size="28" color="#020B18"></u-text>
<view class="button-text" @click="$refs.lineLists.typeShow = true">
<u-text :text="typeCheck?typeCheck:'事件类型'" size="28" color="#020B18" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;"></u-text>
</view>
<view class="button-icon">
<u-icon name="arrow-down-fill" size="12"></u-icon>
@ -26,11 +26,18 @@
</view>
</view>
</u-col>
<u-col :span="7">
<u-col :span="8">
<view class="screen-date col-7">
<view class="screen-date-button row col">
<view class="date-text">
<u-text text="2023-08-03" size="28" color="#020B18"></u-text>
<view class="date-text" @click="$refs.lineLists.startShow = true"
style="max-width:90%;display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;">
<view class="date-item">
<u-text mode="date" :text="startTime||0" size="28" color="#020B18" custom-style=""></u-text>
</view>
<view class="date-item">~</view>
<view class="date-item">
<u-text mode="date" :text="endTime||0" size="28" color=""></u-text>
</view>
</view>
<view class="date-icon">
<u-icon name="calendar" size="32"></u-icon>
@ -61,7 +68,13 @@
</u-col>
</u-row>
</view>
<ListPage></ListPage>
<ListPage
ref="lineLists"
@typeCheck="selectType"
@startTime="selectStart"
@endTime="selectEnd"
:is-user-list="true"
></ListPage>
</template>
<script>
@ -77,14 +90,17 @@
return {
list: [{
name: '全部事件',
}, {
},{
name: '待结案',
}, {
},{
name: '已结案',
},],
tabCheck:'submit',
show: false,
title: '我的线索',
typeCheck:'',
startTime:'',
endTime:'',
}
},
onLoad() {
@ -93,9 +109,18 @@
methods: {
// store.
tabsChenge(e){
console.log(e)
// this.tabCheck = e.id
}
this.$refs.lineLists.pages.status = e.index;
this.$refs.lineLists.getLineList(true);
},
selectType(event){
this.typeCheck = event;
},
selectStart(event){
this.startTime = event;
},
selectEnd(event){
this.endTime = event;
},
},
onPageScroll(res) {
@ -188,4 +213,13 @@
.show {
animation: show .5s;
}
.date-text{
.date-item{
display: inline-block;
}
}
.button-text{
max-width:90%
}
</style>

2
pages/Login/index.vue

@ -79,8 +79,6 @@ export default {
wxLogin(phoneCode) {
uni.login({
success: ((res) => {
console.log(res)
console.log(phoneCode)
appletLogin({
code:res.code
})

1
pages/OrderDetail/index.vue

@ -307,7 +307,6 @@ export default {
let that = this;
let height = api.wxSystemInfo().system.windowHeight
let headerHeight = uni.$u.getPx(44) + uni.$u.sys().statusBarHeight
console.log('headerHeight',headerHeight)
let info = uni.createSelectorQuery().in(this).select('.foot-button');
info.boundingClientRect(function (data) {

1
pages/Report/qrcode.vue

@ -136,7 +136,6 @@ export default {
let info = uni.createSelectorQuery().in(this).select('.top-container');
info.boundingClientRect(function (data) {
that.size.height += data.height;
console.log('top-container',data)
}).exec(function(res){});
},
chatDetail(item) {

1
pages/Shop/components/ListPage/index.vue

@ -269,7 +269,6 @@ export default {
let info = uni.createSelectorQuery().in(this).select('.foot-button');
info.boundingClientRect(function (data) {
that.size.height = data.height;
console.log('height',that.size.height)
}).exec(function (res) {});
},
methods: {

12
pages/Shop/index.vue

@ -102,7 +102,7 @@
:key="item.id"
class="waterfall-item">
<view class="waterfall-item__image">
<image :src="item.image" mode="widthFix" :style="{width:item.width+'px'}"></image>
<image :src="item.image" mode="widthFix" :style="{width:'100%'}"></image>
</view>
<view class="waterfall-item__ft">
<view class="waterfall-item__ft__title">
@ -123,7 +123,7 @@
:key="item.id"
class="waterfall-item">
<view class="waterfall-item__image">
<image :src="item.image" mode="widthFix" :style="{width:item.width+'px'}"></image>
<image :src="item.image" mode="widthFix" :style="{width:'100%'}"></image>
</view>
<view class="waterfall-item__ft">
<view class="waterfall-item__ft__title">
@ -183,9 +183,10 @@
{ image: 'https://via.placeholder.com/200x200.png/2878ff', title: '我是标题2', desc: '描述描述描述描述描述描述描述描述2' },
],
list1:[
{ image: 'https://via.placeholder.com/200x500.png/ff0000', title: '我是标题1', desc: '描述描述描述描述描述描述描述描述1' },
{ image: 'https://via.placeholder.com/200x200.png/2878ff', title: '我是标题2', desc: '描述描述描述描述描述描述描述描述2' },
{ image: 'https://via.placeholder.com/200x200.png/2878ff', title: '我是标题2', desc: '描述描述描述描述描述描述描述描述2' },
{ image: 'https://via.placeholder.com/200x500.png/ff0000', title: '我是标题1', desc: '描述描述描述描述描述描述描述描述1' },
{ image: 'https://via.placeholder.com/200x200.png/2878ff', title: '我是标题2', desc: '描述描述描述描述描述描述描述描述2' },
{ image: 'https://via.placeholder.com/200x200.png/2878ff', title: '我是标题2', desc: '描述描述描述描述描述描述描述描述2' },
],
@ -237,7 +238,10 @@
</script>
<style lang="scss">
.room-container{
box-sizing: border-box;
width:100%;
}
::v-deep .u-tabs__wrapper__nav__line{
left:24rpx;
}

3
pages/User/edit.vue

@ -257,7 +257,6 @@ export default {
let that = this;
let height = api.wxSystemInfo().system.windowHeight
let headerHeight = uni.$u.getPx(44) + uni.$u.sys().statusBarHeight
console.log('headerHeight',headerHeight)
let info = uni.createSelectorQuery().in(this).select('.foot-button');
info.boundingClientRect(function (data) {
@ -311,7 +310,7 @@ export default {
submit(){
this.$refs.userInfo.validate().then(res => {
userEdit(this.model.userInfo).then((res) => {
if(res.code === 200){
if(res.code === '200'){
uni.$u.toast('修改成功')
userDetail().then((res) => {
uni.setStorageSync('user',res.data);

1
pages/User/order.vue

@ -318,7 +318,6 @@ export default {
let that = this;
let height = api.wxSystemInfo().system.windowHeight
let headerHeight = uni.$u.getPx(44) + uni.$u.sys().statusBarHeight
console.log('headerHeight',headerHeight)
let info = uni.createSelectorQuery().in(this).select('.foot-button');
info.boundingClientRect(function (data) {

16
utils/functions.js

@ -19,12 +19,10 @@ const api = {
wx.getFuzzyLocation({
type: 'wgs84',
success(re) {
console.log(re);
uni.chooseLocation({
latitude:re.latitude,
longitude:re.longitude,
success: function (data) {
console.log(data);
let obj={
latitude:data.latitude,
longitude: data.longitude,
@ -32,7 +30,7 @@ const api = {
}
if(data.errMsg=='chooseLocation:ok'){
qqmapsdk=new QQMapWX({
key:'K65BZ-LULE4-744UV-X4EIA-27RA5-A4FWT'
key:'SUUBZ-MIX6C-Y7U2B-AXT6O-NZ2W5-D6F2B'
})
qqmapsdk.reverseGeocoder({
location:{
@ -68,7 +66,7 @@ const api = {
getloction(details){
return new Promise((relove, reject)=>{
qqmapsdk=new QQMapWX({
key:'K65BZ-LULE4-744UV-X4EIA-27RA5-A4FWT'
key:'SUUBZ-MIX6C-Y7U2B-AXT6O-NZ2W5-D6F2B'
})
qqmapsdk.geocoder({
//获取表单传入地址
@ -97,6 +95,7 @@ const api = {
return obj
},
upfile:(file)=>{
let token=uni.getStorageSync('token')
// console.log(file);
return new Promise((relove, reject) => {
// console.log(file);
@ -107,6 +106,10 @@ const api = {
url: `${host}/other/upload`, //仅为示例,非真实的接口地址
filePath:file,
name: 'file',
header: {
"content-type": "application/json;charset=utf-8",
"Authorization":"Bearer "+ token.token
},
success: (uploadFileRes) => {
uni.hideLoading()
relove(JSON.parse(uploadFileRes.data).data)
@ -234,11 +237,6 @@ const api = {
this.navHeight = this.menu.height;
this.headerPadding = (this.menu.top - this.systemBar);
this.systemBarHeight = (this.navPaddingTop + this.navigationBar)
console.log('systemBarHeight',this.systemBarHeight);
console.log('navPaddingTop',this.navPaddingTop);
console.log('navHeight',this.navHeight);
console.log('navigationBar',this.navigationBar);
}catch(e){
//默认高度,刘海屏
this.navPaddingTop = 43;

Loading…
Cancel
Save