This commit is contained in:
3321822538@qq.com 2024-06-08 18:05:07 +08:00
parent f306f2e5c6
commit 71af7a8bf5
20 changed files with 311 additions and 195 deletions

View File

@ -1,6 +1,6 @@
const install = (Vue, vm) => {
Vue.prototype.$u.http.setConfig({
baseUrl: 'http://124.221.246.124:2288/dev-api',
baseUrl: 'http://192.168.2.88:3100/dev-api',
// baseUrl: 'https://znb.ccttiot.com',
loadingText: '努力加载中~',
loadingTime: 800,
@ -41,9 +41,9 @@ const install = (Vue, vm) => {
};
vm.$u.post('/app/auth/wxLogin',data).then(res=>{
if (res.code == 10003) {
uni.navigateTo({
url:'/pages/login/login'
})
// uni.navigateTo({
// url:'/pages/login/login'
// })
} else if (res.code == 200) {
// console.log("老用户登录",res.data)

View File

@ -36,7 +36,7 @@
</view>
<view class="anniu">
<view class="" @click="mapFun">
<image style="width: 48rpx;height: 48rpx;vertical-align: middle;margin-bottom: 20rpx;margin-right: 10rpx;" src="https://api.ccttiot.com/smartmeter/img/static/u7jJoQmp3QBVyOWa4ayq" mode=""></image>到这去
<image style="width: 42rpx;height: 40rpx;vertical-align: middle;margin-bottom: 14rpx;margin-right: 10rpx;" src="https://api.ccttiot.com/smartmeter/img/static/u7jJoQmp3QBVyOWa4ayq" mode=""></image>到这去
</view>
<view class="" style="color: #fff;background-color: #25CE88;" @click="scanQRCode">
<image style="width: 48rpx;height: 48rpx;vertical-align: middle;margin-bottom: 10rpx;" src="https://api.ccttiot.com/smartmeter/img/static/uMXqFPfRkmTxb3pLYKL2" mode=""></image> 扫码充电
@ -98,14 +98,13 @@
success: (res) => {
this.covers = []; //
if (res.scale <= 14) {
this.addMarkersWithoutLabels();
this.addMarkersWithoutLabels()
} else {
this.addMarkersWithLabels();
this.addMarkersWithLabels()
}
},
fail: (error) => {
console.error('获取地图缩放级别失败:', error);
// ...
// console.error('', error)
},
});
},
@ -119,7 +118,7 @@
height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uI3B6yPwtiUBD3vafLtw',
};
this.covers.push(shopCover);
this.covers.push(shopCover)
});
},
addMarkersWithLabels() {
@ -140,22 +139,21 @@
rotate:20
}
}
this.covers.push(shopCover);
this.covers.push(shopCover)
});
},
calculateAnchorX(name) {
let chineseLength = 0;
let englishLength = 0;
let chineseLength = 0
let englishLength = 0
for (let i = 0; i < name.length; i++) {
const charCode = name.charCodeAt(i);
const charCode = name.charCodeAt(i)
if (charCode >= 0x4e00 && charCode <= 0x9fa5) {
chineseLength++;
} else if (/[a-zA-Z]/.test(name[i])) {
englishLength = englishLength+0.3;
// console.log(englishLength);
englishLength = englishLength+0.3
}
}
const totalLength = chineseLength + englishLength * 2;
const totalLength = chineseLength + englishLength * 2
return -totalLength * 6.5
},
@ -171,13 +169,13 @@
})
},
fail: err => {
console.error('扫描失败:', err);
console.error('扫描失败:', err)
uni.showToast({
title: '扫描失败',
icon: 'none'
});
})
}
});
})
},
getxq(){
@ -202,10 +200,9 @@
uni.getLocation({
type: 'wgs84',
success: (res) => {
console.log('我的位置:', res);
this.latitude = res.latitude;
this.longitude = res.longitude;
this.jinweidu = this.longitude + ',' + this.latitude;
this.jinweidu = res.longitude + ',' + res.latitude
this.latitude = Number(res.latitude.toFixed(5)) - 0.004
this.longitude = Number(res.longitude.toFixed(5)) + 0.004
//
this.$u.get("/app/store/listNearBy?center=" + this.jinweidu + '&radius=' + 1000).then(res => {
if (res.code == 200) {
@ -217,7 +214,7 @@
longitude: item.lng,
width: 25,
height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uI3B6yPwtiUBD3vafLtw', //
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uI3B6yPwtiUBD3vafLtw',
label: {
content: item.name,
anchorX: (() => {
@ -233,8 +230,7 @@
return -35
} else if (item.name.length <= 8) {
return -40
} else if (item.name.length <=
10) {
} else if (item.name.length <= 10) {
return -45
} else {
return -item.name.length * 5
@ -245,13 +241,13 @@
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white',
}
};
this.covers.push(shopCover);
});
this.covers.push(shopCover)
})
}
});
},
fail: (err) => {
console.error('获取位置失败:', err);
console.error('获取位置失败:', err)
}
});
},
@ -300,7 +296,6 @@
height: 100%;
}
page {
// background-color: ;
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
@ -333,8 +328,6 @@
border-radius: 8rpx 8rpx 8rpx 8rpx;
.wz{
font-size: 20rpx;
// width: 96rpx;
// height: 34rpx;
background: #B7FFE1;
border-radius: 16rpx 16rpx 16rpx 16rpx;
padding: 4rpx 16rpx;
@ -360,14 +353,11 @@
}
.list{
display: flex;
// margin-top: 44rpx;
padding-bottom: 16rpx;
.pic{
width: 150rpx;
height: 134rpx;
// background-color: #D9D8FF;
border-radius: 10rpx;
// margin-right: 28rpx;
image{
width: 100%;
height: 100%;
@ -377,7 +367,6 @@
}
}
.cen{
// margin-right: 140rpx;
margin-left: 20rpx;
.cena{
font-weight: 500;
@ -402,7 +391,6 @@
display: inline-block;
padding: 4rpx 18rpx;
box-sizing: border-box;
// border: 1px solid #ccc;
border-radius: 20rpx;
}
.bu{

View File

@ -81,6 +81,10 @@
icon: 'none',
duration: 2000
})
}else if(res.code == 401){
uni.navigateTo({
url:'/pages/login/login'
})
}
})
},
@ -201,7 +205,7 @@
color: #3D3D3D;
.one {
width: 154rpx;
width: 165rpx;
}
.hq {
@ -216,7 +220,7 @@
box-sizing: border-box;
position: absolute;
top: 14rpx;
right: 68rpx;
right: 64rpx;
z-index: 99;
}

View File

@ -96,9 +96,9 @@
this.pagenum++
} else {
//
this.noMoreData = true;
this.noMoreData = true
}
this.isLoading = false;
this.isLoading = false
}
})
},
@ -130,7 +130,7 @@
padding-bottom: 22rpx;
}
page {
// background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
background: #F4F5F7;
}
.page {

View File

@ -71,6 +71,13 @@
</view>
</view>
<view class="" style="width: 448rpx;height: 448rpx;margin: auto;margin-top: 100rpx;text-align: center;"
v-if="showflag">
<image style="width: 448rpx;height: 448rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/ufLi6IZd5kh1MIEZFYTo" mode=""></image>
<view class="" style="font-size: 30rpx;color: #ccc;margin-top: 30rpx;">暂无更多代理人员...</view>
</view>
</view>
</view>
</template>
@ -261,7 +268,9 @@
padding-bottom: 22rpx;
}
page {}
page {
background-color:#F4F5F7;
}
.page {
width: 750rpx;

View File

@ -33,7 +33,7 @@
点击即同意<text>委托扣款授权书</text>
</view>
</view>
<image src="https://api.ccttiot.com/smartmeter/img/static/uQq0ENieLfArog8TQQVN" mode="" class="pic"></image>
<image :src="imgad" mode="" class="pic"></image>
</view>
<!-- 遮罩层 -->
<u-mask :show="show" @click="show = false"></u-mask>
@ -57,7 +57,7 @@
<view class="yuedu">
请仔细阅读微信支付分押金规则同意协议请 点击按钮
</view>
<view class="anniu">
<view class="anniu" @click="btnweiyj">
确认并支付
</view>
</view>
@ -102,15 +102,24 @@
sn:'',
fee:{},
sum:0,
wxf:''
wxf:'',
imgad:''
}
},
onLoad(option) {
this.sn = option.sn
this.getemi()
this.getad()
this.getwxf()
},
methods: {
getad() {
this.$u.get("/app/ad").then((res) => {
if (res.code == 200) {
this.imgad = res.data.picture
}
})
},
btnzu() {
if(this.wxf > 550){
this.deposittrue = true
@ -118,6 +127,11 @@
this.depositfalse = true
}
},
btnweiyj(){
uni.navigateTo({
url:'/pages/deposit/index'
})
},
btnyc() {
this.depositfalse = false
this.deposittrue = false

View File

@ -69,6 +69,13 @@
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},{
"path": "pages/deposit/czyj",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
{
"path": "pages/abbr/index",

View File

@ -86,7 +86,6 @@
// }
this.getlists()
}
},
btnxq(id) {
uni.navigateTo({
@ -96,22 +95,19 @@
change(index) {
if (index == 0) {
this.classifyId = this.list[index + 1].classifyId
this.current = index;
this.current = index
this.getlists()
} else {
this.classifyId = this.list[index].classifyId
this.current = index;
this.current = index
this.getlists()
}
},
getlists() {
this.$u.get('/app/article/list?classifyId=' + this.classifyId + '&pageNum=' + 1 + '&pageSize=' + 6).then(
res => {
if (res.code == 200) {
this.listitem = res.rows
// console.log(this.listitem);
}
})
}

View File

@ -2,7 +2,7 @@
<view class="page">
<u-navbar title="设备列表" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000" title-size='36' height='50'></u-navbar>
<view class="serchinp">
<u-search placeholder="搜索" v-model="keyword" @custom="btnseach"></u-search>
<u-search placeholder="搜索" v-model="keyword" input-align="center" @custom="btnseach"></u-search>
<view class="xuanze">
<text style="margin-top: 4rpx;" @click="btnstatus(1)">{{zhuangt}}</text> <text
style="width: 2px;height: 40rpx;background-color: #C7C7C7;display: inline-block;"></text> <text
@ -314,6 +314,9 @@
/deep/ .uicon-nav-back {
padding-bottom: 22rpx;
}
/deep/ .u-input{
padding-left: 86rpx;
}
.page .serchinp .u-content{
padding-left: 20rpx !important;
}

View File

@ -2,7 +2,7 @@
<view class="page">
<u-navbar title="下级设备列表" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000" title-size='36' height='50'></u-navbar>
<view class="serchinp">
<u-search placeholder="搜索" v-model="keyword" @custom="btnseach"></u-search>
<u-search placeholder="搜索" v-model="keyword" input-align="center" @custom="btnseach"></u-search>
<view class="xuanze">
<text style="margin-top: 4rpx;" @click="btnstatus(1)">{{zhuangt}}</text> <text
style="width: 2px;height: 40rpx;background-color: #C7C7C7;display: inline-block;"></text> <text
@ -238,7 +238,7 @@
}
this.totalWithdraw = res.totalWithdraw
this.wateringList = this.wateringList.concat(res.rows);
this.pagenum++;
this.pagenum++
} else {
this.noMoreData = true;
}
@ -248,13 +248,13 @@
onReachBottom() {
let sum = this.total / this.pagesize
if (this.pagenum - 1 < sum) {
this.getlist();
this.getlist()
} else {
uni.showToast({
title: '没有更多设备了',
icon: 'none',
duration: 1000
});
})
}
},
@ -313,6 +313,9 @@
/deep/ .uicon-nav-back {
padding-bottom: 22rpx;
}
/deep/ .u-input{
padding-left: 86rpx;
}
.page .serchinp .u-content{
padding-left: 20rpx !important;
}
@ -326,9 +329,6 @@
padding-right: 34rpx;
box-sizing: border-box;
// position: fixed;
// top: 0;
// left: 0;
.scrll {
height: 100%;
overflow-y: scroll;

View File

@ -10,7 +10,7 @@
<text>账户余额</text> <text class="tx" style="margin-right: 10rpx;" @click="btnnav(9)">提现明细</text>
</view>
<view class="zhje">
<text>{{txobj.totalAmount}}</text> <text class="btntx" @click="btnnav(10)">立即提现</text>
<text>{{txobj.totalAmount == null ? 0 : txobj.totalAmount}}</text> <text class="btntx" @click="btnnav(10)">立即提现</text>
</view>
<view class="buc">
收益提升技巧加强关注尽快为缺宝的设备补充充电宝
@ -271,7 +271,6 @@
}
page {
// background-color: ;
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
@ -321,16 +320,13 @@
padding: 0 40rpx;
box-sizing: border-box;
margin-top: 24rpx;
.ddje {
text-align: center;
.shu {
font-weight: 500;
font-size: 40rpx;
color: #3D3D3D;
}
.sb {
margin-top: 20rpx;
font-weight: 500;
@ -347,7 +343,6 @@
display: flex;
justify-content: space-between;
margin-top: 26rpx;
text {
padding: 6rpx 18rpx;
box-sizing: border-box;
@ -364,7 +359,6 @@
width: 100%;
padding: 10rpx 12rpx;
box-sizing: border-box;
text {
margin-right: 10rpx;
border-radius: 20rpx;
@ -372,20 +366,17 @@
display: inline-block;
width: 148rpx;
height: 84rpx;
// background: #E1F3ED;
text-align: center;
line-height: 84rpx;
}
}
}
.dttitle {
margin: 36rpx 0;
font-weight: 500;
font-size: 36rpx;
color: #3D3D3D;
}
.zhanghu {
margin-top: 32rpx;
width: 680rpx;
@ -394,11 +385,9 @@
border-radius: 24rpx 24rpx 24rpx 24rpx;
padding: 36rpx 38rpx;
box-sizing: border-box;
.zhtitle {
display: flex;
justify-content: space-between;
.sj {
display: flex;
justify-content: space-between;
@ -512,7 +501,6 @@
.dtxs {
width: 642rpx;
height: 812rpx;
// background-color: red;
margin: auto;
}

View File

@ -171,6 +171,7 @@
page {
// background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
background-color: #F4F5F7;
}
.page {

View File

@ -7,7 +7,7 @@
<view class="titleje">
<text></text> 0
</view>
<view class="cz">
<view class="cz" @click="btncz">
充值
</view>
</view>
@ -65,7 +65,11 @@
},
methods: {
btncz(){
uni.navigateTo({
url:'/pages/deposit/czyj'
})
}
}
}
</script>

View File

@ -82,16 +82,16 @@
<view class="left">
审核状态:
</view>
<view class="right" v-if="xqobj.status == 1">
<view class="right" v-if="xqobj.status == 1" style="font-weight: 600;">
待审核
</view>
<view class="right" v-if="xqobj.status == 2">
<view class="right" v-if="xqobj.status == 2" style="font-weight: 600;">
审核通过
</view>
<view class="right" v-if="xqobj.status == 3">
<view class="right" v-if="xqobj.status == 3" style="font-weight: 600;">
驳回
</view>
<view class="right" v-if="xqobj.status == 4">
<view class="right" v-if="xqobj.status == 4" style="font-weight: 600;">
已打款
</view>
</view>

View File

@ -36,7 +36,7 @@
<u-icon name="red-packet" size="30" style="margin-right: 5rpx;"></u-icon> 线
</view>
<view class="je">
{{item.totalAmount}}
{{item.amount}}
</view>
</view>
</view>

View File

@ -11,6 +11,11 @@
<view class="dtxs">
<map class='map' id="map" :latitude="latitude" :longitude="longitude" @markertap="handleMapClick"
:show-location="true" :markers="covers" :scale="mapScale" />
</view>
<view class="fujin">
<image @click="onControltap" style="width: 76rpx;height: 76rpx;position: absolute;right: 40rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uOS9p7Sy1K9WpVQgD3b9" mode=""></image>
</view>
<view class="tubiao">
<view class="gr" @click="btnindex(1)">
@ -35,7 +40,7 @@
</view>
</view>
<view class="guangg">
<image src="https://api.ccttiot.com/smartmeter/img/static/uQq0ENieLfArog8TQQVN" mode=""></image>
<image :src="imgad" mode=""></image>
</view>
<view class="saoma" @click="scanQRCode">
<view>
@ -68,7 +73,6 @@
<text>订单金额</text> <text>{{zujiemoney > zujieobj.priceStandard.feeMaxPrice ? zujieobj.priceStandard.feeMaxPrice : zujiemoney}}</text>
</view>
<view class="shuom">
<!-- 计价规则{{zujieobj.priceStandard.feePrice}}/小时 -->
<text v-if="zujieobj.priceStandard.feeMode == 2">{{zujieobj.priceStandard.feePrice}}/小时</text>
<text v-if="zujieobj.priceStandard.feeMode == 1">{{zujieobj.priceStandard.feePrice}}/半小时</text>
{{zujieobj.priceStandard.feeFreeTime}}分钟免费
@ -139,16 +143,17 @@
zujieobj: {},
zujiemoney: '',
timer: null,
imgad:''
};
},
onReady() {
this.mapContext = uni.createMapContext('map', this);
this.mapScaleInterval = setInterval(this.updateMarkers, 1000);
this.mapContext = uni.createMapContext('map', this)
this.mapScaleInterval = setInterval(this.updateMarkers, 1000)
},
beforeDestroy() {
if (this.mapScaleInterval) {
clearInterval(this.mapScaleInterval);
this.mapScaleInterval = null;
clearInterval(this.mapScaleInterval)
this.mapScaleInterval = null
}
},
onShow() {
@ -158,6 +163,7 @@
this.getorder()
},1000)
this.startTimer()
this.getad()
},
onHide() {
//
@ -167,6 +173,13 @@
this.clearTimer()
},
methods: {
getad() {
this.$u.get("/app/ad").then((res) => {
if (res.code == 200) {
this.imgad = res.data.picture
}
})
},
btnsale(orderId){
this.$u.put(`/app/order/rent/${orderId}/toSale`).then(res => {
if(res.code == 200){
@ -230,7 +243,7 @@
clearTimer() {
//
if (this.timer) {
clearInterval(this.timer);
clearInterval(this.timer)
this.timer = null;
}
},
@ -242,14 +255,14 @@
this.zujieflag = true
this.zujieobj = res.data
if (this.zujieobj.endRentTime == null) {
var targetDate = new Date(this.zujieobj.startRentTime);
var currentDate = new Date();
var diff = targetDate - currentDate;
var absDiff = Math.abs(diff);
var hours = Math.floor(absDiff / (1000 * 60 * 60));
var minutes = Math.floor((absDiff % (1000 * 60 * 60)) / (1000 * 60));
let formattedMinutes = minutes < 10 ? '0' + minutes : minutes;
this.zujieobj.remainingTime = hours + '小时' + formattedMinutes + '分钟';
var targetDate = new Date(this.zujieobj.startRentTime)
var currentDate = new Date()
var diff = targetDate - currentDate
var absDiff = Math.abs(diff)
var hours = Math.floor(absDiff / (1000 * 60 * 60))
var minutes = Math.floor((absDiff % (1000 * 60 * 60)) / (1000 * 60))
let formattedMinutes = minutes < 10 ? '0' + minutes : minutes
this.zujieobj.remainingTime = hours + '小时' + formattedMinutes + '分钟'
if (this.zujieobj.priceStandard.feeMode == 2) {
if (minutes >= this.zujieobj.priceStandard.feeFreeTime) {
this.zujiemoney = (hours + 1) * this.zujieobj.priceStandard.feePrice
@ -267,14 +280,14 @@
}
}
} else {
var targetDate = new Date(this.zujieobj.endRentTime);
var currentDate = new Date();
var diff = targetDate - currentDate;
var absDiff = Math.abs(diff);
var hours = Math.floor(absDiff / (1000 * 60 * 60));
var minutes = Math.floor((absDiff % (1000 * 60 * 60)) / (1000 * 60));
let formattedMinutes = minutes < 10 ? '0' + minutes : minutes;
this.zujieobj.remainingTime = hours + '小时' + formattedMinutes + '分钟';
var targetDate = new Date(this.zujieobj.endRentTime)
var currentDate = new Date()
var diff = targetDate - currentDate
var absDiff = Math.abs(diff)
var hours = Math.floor(absDiff / (1000 * 60 * 60))
var minutes = Math.floor((absDiff % (1000 * 60 * 60)) / (1000 * 60))
let formattedMinutes = minutes < 10 ? '0' + minutes : minutes
this.zujieobj.remainingTime = hours + '小时' + formattedMinutes + '分钟'
if (this.zujieobj.priceStandard.feeMode == 2) {
if (minutes >= this.zujieobj.priceStandard.feeFreeTime) {
this.zujiemoney = (hours + 1) * this.zujieobj.priceStandard.feePrice
@ -298,20 +311,41 @@
}
})
},
onControltap(control) {
this.setMapScale()
},
async setMapScale(e, val) {
let mapContext = uni.createMapContext('map', this);
let setScale = () => {
return new Promise((resolve, reject) => {
mapContext.getScale({
success: r => {
resolve()
}
})
})
};
await setScale();
mapContext.moveToLocation({
success: (res) => {
const timer = setTimeout(() => {
clearTimeout(timer);
}, 500);
}
})
},
updateMarkers() {
this.mapContext.getScale({
success: (res) => {
this.covers = []
if (res.scale <= 14) {
this.addMarkersWithoutLabels();
this.addMarkersWithoutLabels()
} else {
this.addMarkersWithLabels();
this.addMarkersWithLabels()
}
},
fail: (error) => {
console.error('获取地图缩放级别失败:', error);
// ...
// console.error('', error);
},
});
},
@ -325,7 +359,7 @@
height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uI3B6yPwtiUBD3vafLtw',
};
this.covers.push(shopCover);
this.covers.push(shopCover)
});
},
addMarkersWithLabels() {
@ -346,7 +380,7 @@
rotate: 20
}
}
this.covers.push(shopCover);
this.covers.push(shopCover)
});
},
calculateAnchorX(name) {
@ -357,11 +391,10 @@
if (charCode >= 0x4e00 && charCode <= 0x9fa5) {
chineseLength++;
} else if (/[a-zA-Z]/.test(name[i])) {
englishLength = englishLength + 0.3;
// console.log(englishLength);
englishLength = englishLength + 0.3
}
}
const totalLength = chineseLength + englishLength * 2;
const totalLength = chineseLength + englishLength * 2
return -totalLength * 7
},
@ -373,18 +406,18 @@
onlyFromCamera: true,
scanType: ['qrCode'],
success: res => {
console.log('扫描结果:', res);
console.log('扫描结果:', res)
let result = res.result
uni.navigateTo({
url: '/page_user/yajin/index?sn=' + result
})
},
fail: err => {
console.error('扫描失败:', err);
console.error('扫描失败:', err)
uni.showToast({
title: '扫描失败',
icon: 'none'
});
})
}
});
},
@ -436,10 +469,9 @@
uni.getLocation({
type: 'wgs84',
success: (res) => {
// console.log('', res);
this.latitude = res.latitude;
this.longitude = res.longitude;
this.jinweidu = this.longitude + ',' + this.latitude;
this.jinweidu = res.longitude + ',' + res.latitude
this.latitude = Number(res.latitude.toFixed(5)) - 0.004
this.longitude = Number(res.longitude.toFixed(5)) + 0.004
//
this.$u.get("/app/store/listNearBy?center=" + this.jinweidu + '&radius=' + 1000).then(
res => {
@ -480,13 +512,13 @@
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white',
}
};
this.covers.push(shopCover);
this.covers.push(shopCover)
});
}
})
},
fail: (err) => {
console.error('获取位置失败:', err);
console.error('获取位置失败:', err)
}
});
},
@ -498,7 +530,7 @@
if (res.code) {
let data = {
loginCode: res.code,
};
}
taht.$u.post('/app/auth/wxLogin', data).then(res => {
if (res.code == 10003) {
// uni.navigateTo({
@ -515,7 +547,7 @@
},
handleMapClick(event) {
console.log(event);
console.log(event)
const markerId = event.markerId;
uni.navigateTo({
url: '/page_user/ditu?markerId=' + markerId
@ -540,7 +572,6 @@
}
page {
// background-color: ;
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
@ -550,9 +581,9 @@
padding-left: 34rpx;
padding-right: 34rpx;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
// position: fixed;
// top: 0;
// left: 0;
.zujie {
width: 750rpx;
@ -561,7 +592,7 @@
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
position: fixed;
left: 0;
bottom: 0;
bottom: 30rpx;
border-radius: 30rpx 30rpx 0 0;
.tit {
@ -739,7 +770,6 @@
display: inline-block;
width: 148rpx;
height: 84rpx;
// background: #E1F3ED;
text-align: center;
line-height: 84rpx;
}
@ -815,10 +845,6 @@
}
}
}
//
.title {
font-weight: 600;
@ -875,22 +901,29 @@
border-radius: 38rpx 38rpx 38rpx 38rpx;
margin-top: 34rpx;
padding-top: 16rpx;
position: relative;
.fujin {
position: absolute;
top: 730rpx;
padding-left: 30rpx;
width: 100%;
image {
width: 210rpx;
height: 74rpx;
}
}
.dtxs {
width: 642rpx;
height: 812rpx;
// background-color: red;
margin: auto;
}
.tubiao {
display: flex;
justify-content: space-between;
padding: 24rpx 50rpx;
padding: 20rpx 50rpx;
box-sizing: border-box;
// padding-top: 20rpx;
// padding-bottom: 24rpx;
.gr {
text-align: center;
width: 100%;

View File

@ -1,6 +1,6 @@
<template>
<view class="page">
<u-navbar :is-back="false" :title="tittxt" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' height='36' >
<u-navbar :is-back="false" :title="tittxt" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' height='50' >
</u-navbar>
<view class="imgbox">
@ -11,7 +11,7 @@
</button>
<view class="tip">
<!-- <image src="https://api.ccttiot.com/smartmeter/img/static/u4LEl3cUFgF9uN30ESnF" mode=""></image> -->
<u-checkbox-group>
<u-checkbox-group style="width: 40rpx;">
<u-checkbox v-model="checked" active-color="#25CE88"></u-checkbox>
</u-checkbox-group>
我已同意并阅读服务条款法律条款及隐私政策
@ -45,7 +45,13 @@
},
getPhoneNumber(e) {
let that = this;
console.log("eeeeeeee", e);
if(this.checked == false){
uni.showToast({
title: '请勾选服务条款以及隐私政策',
icon: 'none',
duration:2000
})
}else{
const wxLoginAsync = () => {
return new Promise((resolve, reject) => {
wx.login({
@ -80,6 +86,8 @@
.catch((err) => {
console.error(err);
});
}
},
ceshi() {
this.$u.get("/app/user/userInfo").then((res) => {
@ -94,8 +102,12 @@
</script>
<style lang="scss" >
/deep/ .u-title,
/deep/ .uicon-nav-back {
padding-bottom: 22rpx;
}
page{
background: #FFFFFF;
background: #E7F3E4;
}
.page {
position: relative; /* 添加相对定位 */
@ -104,12 +116,12 @@
.imgbox {
margin:102rpx auto ;
width: 730rpx;
height: 422rpx;
height: 600rpx;
z-index: 0;
image {
width: 730rpx;
height: 422rpx;
height: 600rpx;
}
}
.button{
@ -121,9 +133,10 @@
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
line-height: 90rpx;
}
.tip{
margin-top:128rpx ;
margin-top:30rpx ;
display: flex;
flex-wrap: nowrap;
align-items: center;

View File

@ -18,7 +18,7 @@
价格明细
</view>
<view class="mx">
<text style="width: 240rpx;">收费标准</text>
<text style="width: 140rpx;">收费标准</text>
<text>
<text v-if="fee.feeMode == 2">{{fee.feePrice}}/小时</text>
<text v-if="fee.feeMode == 1">{{fee.feePrice}}/半小时</text>
@ -57,7 +57,7 @@
<text>租借时间</text> <text>{{listobj.startRentTime}}</text>
</view>
<view class="zj">
<text>租借店铺</text> <text>{{listobj.startStoreName}}</text>
<text style="width: 220rpx;">租借店铺</text> <text>{{listobj.startStoreName}}</text>
</view>
<view class="zj">
<text>租借设备</text> <text>{{listobj.startCabinetSn}}</text>
@ -66,19 +66,19 @@
<text>租借电池</text> <text>{{listobj.deviceSn}}</text>
</view>
<view class="zj">
<text style="width: 160rpx;">租借地点</text> <text>{{listobj.startStoreAddress}} </text>
<text style="width: 220rpx;">租借地点</text> <text>{{listobj.startStoreAddress}} </text>
</view>
<view class="zj">
<text>归还时间</text> <text>{{listobj.endRentTime == null ? '-' : listobj.endRentTime}}</text>
</view>
<view class="zj">
<text>归还店铺</text> <text>{{listobj.endStoreName == null ? '-' : listobj.endStoreName}}</text>
<text style="width: 220rpx;">归还店铺</text> <text>{{listobj.endStoreName == null ? '-' : listobj.endStoreName}}</text>
</view>
<view class="zj">
<text>归还设备</text> <text>{{listobj.endCabinetSn == null ? '-' : listobj.endCabinetSn}}</text>
</view>
<view class="zj">
<text style="width: 160rpx;">归还地点</text> <text>{{listobj.endStoreAddress == null ? '-' : listobj.endStoreAddress}}</text>
<text style="width: 220rpx;">归还地点</text> <text>{{listobj.endStoreAddress == null ? '-' : listobj.endStoreAddress}}</text>
</view>
<view class="zj">
<text>订单编号</text> <text>{{listobj.orderNo}} <text class="fz" @click="fuzhi(listobj.orderNo)">复制</text> </text>

View File

@ -4,6 +4,10 @@
<view class="dtxs">
<map class='map' id="map" :latitude="latitude" :longitude="longitude" @markertap="handleMarkerClick"
:show-location="true" :markers="covers" :scale="mapScale" />
<view class="fujin">
<image @click="onControltap" style="width: 76rpx;height: 76rpx;position: absolute;right: 40rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uOS9p7Sy1K9WpVQgD3b9" mode=""></image>
</view>
</view>
<view class="listbox">
<view class="list" v-for="(item,index) in gxlist" :key="index">
@ -80,6 +84,29 @@
this.getshanghu()
},
methods: {
onControltap(control) {
this.setMapScale()
},
async setMapScale(e, val) {
let mapContext = uni.createMapContext('map', this);
let setScale = () => {
return new Promise((resolve, reject) => {
mapContext.getScale({
success: r => {
resolve()
}
})
})
};
await setScale();
mapContext.moveToLocation({
success: (res) => {
const timer = setTimeout(() => {
clearTimeout(timer);
}, 500);
}
})
},
updateMarkers() {
this.mapContext.getScale({
success: (res) => {
@ -166,9 +193,9 @@
uni.getLocation({
type: 'wgs84',
success: (res) => {
this.latitude = res.latitude;
this.longitude = res.longitude;
this.jinweidu = this.longitude + ',' + this.latitude;
this.jinweidu = res.longitude + ',' + res.latitude
this.latitude = Number(res.latitude.toFixed(5)) - 0.004
this.longitude = Number(res.longitude.toFixed(5)) + 0.004
//
this.$u.get("/app/store/listNearBy?center=" + this.jinweidu + '&radius=' + 1000).then(res => {
if (res.code == 200) {
@ -293,6 +320,17 @@
top: 0;
left: 0;
z-index: -1;
.fujin {
position: absolute;
bottom:240rpx;
padding-left: 0rpx;
width: 100%;
image {
width: 210rpx;
height: 74rpx;
}
}
}
.listbox{
margin-top: 820rpx;

View File

@ -60,7 +60,7 @@
</view>
<view class="grlist" @click="btnpage(5)">
<view class="">
<image src="https://api.ccttiot.com/smartmeter/img/static/uR2bLipB4EN2ymkWxldI" mode=""></image> <text class="wz">关于我们</text>
<image src="https://api.ccttiot.com/smartmeter/img/static/uANEp4scpqfFnIqUsIrn" mode=""></image> <text class="wz">关于我们</text>
</view>
<view class="">
<u-icon name="arrow-right"></u-icon>
@ -77,10 +77,10 @@
</view>
<view class="bdpic">
<image src="https://api.ccttiot.com/smartmeter/img/static/uQq0ENieLfArog8TQQVN" mode=""></image>
<image :src="imgad" mode=""></image>
</view>
<view class="anniu">
<view class="anniu" v-if="flag">
<view class="" @click="btnpage(0)">
我是代理商
</view>
@ -98,7 +98,10 @@
data() {
return {
nickName:'',
tel:''
tel:'',
imgad:'',
flag:false,
userid:''
}
},
onLoad() {
@ -107,8 +110,23 @@
onShow() {
this.nickName = uni.getStorageSync('userdata').nickName
this.tel = uni.getStorageSync('userdata').mobile
this.userid = uni.getStorageSync('userdata').agentId
// console.log(this.userid);
if(this.userid == '' || this.userid == null){
this.flag = false
}else{
this.flag = true
}
this.getad()
},
methods: {
getad() {
this.$u.get("/app/ad").then((res) => {
if (res.code == 200) {
this.imgad = res.data.picture
}
})
},
btnpage(num) {
if (num == 1) {
uni.navigateTo({