This commit is contained in:
3321822538@qq.com 2024-07-29 18:03:40 +08:00
parent 2312e57e82
commit c9d35bb92e
11 changed files with 197 additions and 90 deletions

View File

@ -20,8 +20,8 @@ const install = (Vue, vm) => {
// }, // },
// }); // });
Vue.prototype.$u.http.setConfig({ Vue.prototype.$u.http.setConfig({
// baseUrl: 'http://192.168.2.143:10002', baseUrl: 'http://192.168.2.143:10002',
baseUrl: 'https://kg.chuangtewl.com/prod-api', // baseUrl: 'https://kg.chuangtewl.com/prod-api',
// loadingText: '努力加载中~', // loadingText: '努力加载中~',
// loadingTime: 1000, // loadingTime: 1000,
// 设置自定义头部content-type // 设置自定义头部content-type
@ -126,7 +126,6 @@ const install = (Vue, vm) => {
}) })
} }
}, },
}) })
} }

View File

@ -329,7 +329,7 @@
} else { } else {
this.tcidlist.push(id); this.tcidlist.push(id);
} }
console.log(this.tcidlist); // console.log(this.tcidlist);
this.$emit('update:tcidlist', this.tcidlist) this.$emit('update:tcidlist', this.tcidlist)
}, },
@ -349,9 +349,9 @@
}, },
initList() { initList() {
console.log(this.list,'020202'); // console.log(this.list,'020202');
let tmpList = JSON.parse(JSON.stringify(this.list)); let tmpList = JSON.parse(JSON.stringify(this.list));
console.log(tmpList); // console.log(tmpList);
for (let i = 0, len = tmpList.length; i < len; i++) { for (let i = 0, len = tmpList.length; i < len; i++) {
// idsort // idsort
if (!tmpList[i].hasOwnProperty('HMDrag_id')) { if (!tmpList[i].hasOwnProperty('HMDrag_id')) {

View File

@ -5,27 +5,27 @@
<view class="box"> <view class="box">
<view class="list"> <view class="list">
<view class="" style="display: flex; <view class="" style="display: flex;
justify-content: space-between; justify-content: space-between;
width: 100%; width: 100%;
align-items: center;margin-top: 30rpx;"> align-items: center;">
<view class="title"> <view class="title">
套餐名称 套餐名称
</view> </view>
<input type="text" v-model="name" placeholder="输入套餐名称" /> <input type="text" v-model="name" placeholder="输入套餐名称" />
</view> </view>
<view class="" style="display: flex; <view class="" style="display: flex;
justify-content: space-between; justify-content: space-between;
width: 100%; width: 100%;
align-items: center;margin-top: 30rpx;"> align-items: center;margin-top: 30rpx;">
<view class="title"> <view class="title">
价格 价格
</view> </view>
<input type="text" v-model="price" placeholder="输入价格" /> <input type="text" v-model="price" placeholder="输入价格" />
</view> </view>
<view class="" style="display: flex; <view class="" style="display: flex;
justify-content: space-between; justify-content: space-between;
width: 100%; width: 100%;
align-items: center;margin-top: 30rpx;"> align-items: center;margin-top: 30rpx;">
<view class="title"> <view class="title">
通电时长 通电时长
</view> </view>
@ -67,6 +67,9 @@
<view v-if="title == '修改'" class="truess" @click="btndel"> <view v-if="title == '修改'" class="truess" @click="btndel">
删除 删除
</view> </view>
<view v-else class="trueqx" @click="btnqx">
取消
</view>
</view> </view>
</view> </view>
@ -120,6 +123,9 @@
} }
}, },
methods: { methods: {
btnqx(){
uni.navigateBack()
},
// bindPickerChange(e) { // bindPickerChange(e) {
// this.index = e.detail.value // this.index = e.detail.value
// }, // },
@ -153,22 +159,33 @@
}) })
}, },
btndel() { btndel() {
this.$u.delete(`/app/suit/${this.suitId}`).then((res) => { let that = this
if (res.code == 200) { uni.showModal({
uni.showToast({ title: '提示',
title: '删除成功', content: '您确定要删除该套餐吗?',
icon: 'success', success: function(res) {
duration: 1000, if (res.confirm) {
}) that.$u.delete(`/app/suit/${that.suitId}`).then((res) => {
setTimeout(() => { if (res.code == 200) {
uni.navigateBack() uni.showToast({
}, 1000) title: '删除成功',
} else { icon: 'success',
uni.showToast({ duration: 1000,
title: res.msg, })
icon: 'none', setTimeout(() => {
duration: 1000, uni.navigateBack()
}) }, 1000)
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 1000,
})
}
})
} else if (res.cancel) {
}
} }
}) })
}, },
@ -387,7 +404,7 @@
filter: blur(0px); filter: blur(0px);
margin: auto; margin: auto;
border-radius: 30rpx; border-radius: 30rpx;
padding: 15rpx 38rpx; padding: 30rpx 38rpx;
box-sizing: border-box; box-sizing: border-box;
.title { .title {
@ -434,6 +451,21 @@
color: #FFFFFF; color: #FFFFFF;
border-radius: 50rpx; border-radius: 50rpx;
} }
.trueqx {
width: 290rpx;
height: 84rpx;
background: #ccc;
filter: blur(0px);
text-align: center;
line-height: 84rpx;
position: fixed;
bottom: 76rpx;
right: 33%;
transform: translateX(-50%);
font-size: 36rpx;
color: #FFFFFF;
border-radius: 50rpx;
}
} }
} }
</style> </style>

View File

@ -111,7 +111,7 @@
methods: { methods: {
handleTcidlistUpdate(newTcidlist) { handleTcidlistUpdate(newTcidlist) {
// tcidlist // tcidlist
console.log('接收到的 tcidlist:', newTcidlist); // console.log(' tcidlist:', newTcidlist);
this.tcidlist = newTcidlist this.tcidlist = newTcidlist
}, },
@ -125,7 +125,7 @@
} }
}) })
let filteredArr = newSortedList.filter(item => item.suitId !== undefined) let filteredArr = newSortedList.filter(item => item.suitId !== undefined)
console.log("新的排列数据:", filteredArr) // console.log(":", filteredArr)
setTimeout(() => { setTimeout(() => {
this.$u.put("/app/suit/sort", filteredArr).then((res) => { this.$u.put("/app/suit/sort", filteredArr).then((res) => {
if (res.code == 200) { if (res.code == 200) {
@ -152,13 +152,13 @@
if (res.code == 200) { if (res.code == 200) {
if (res.data.length > 0) { if (res.data.length > 0) {
this.titaoc = res.data this.titaoc = res.data
let uniqueSuitIds = new Set(); let uniqueSuitIds = new Set()
this.list.forEach(item => { this.list.forEach(item => {
if (this.titaoc.some(titaocItem => titaocItem.sourceId === item.suitId || titaocItem.suitId === item.suitId)) { if (this.titaoc.some(titaocItem => titaocItem.sourceId === item.suitId || titaocItem.suitId === item.suitId)) {
uniqueSuitIds.add(item.suitId); uniqueSuitIds.add(item.suitId)
} }
}) })
this.tcidlist = Array.from(uniqueSuitIds); this.tcidlist = Array.from(uniqueSuitIds)
let matchedItems = this.list.filter(item => uniqueSuitIds.has(item.suitId)) let matchedItems = this.list.filter(item => uniqueSuitIds.has(item.suitId))
let unmatchedItems = this.list.filter(item => !uniqueSuitIds.has(item.suitId)) let unmatchedItems = this.list.filter(item => !uniqueSuitIds.has(item.suitId))
this.list = matchedItems.concat(unmatchedItems) this.list = matchedItems.concat(unmatchedItems)

View File

@ -12,24 +12,30 @@
<view class="wz">消费时间{{item.createTime}}</view> <view class="wz">消费时间{{item.createTime}}</view>
</view> </view>
<view class="rt"> <view class="rt">
<!-- <view class="top" v-if="item.status == 2"> <view class="top" v-if="item.status == 2">
已支付 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> 已支付
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
</view> </view>
<view class="top" v-if="item.status == 1"> <view class="top" v-if="item.status == 1">
未支付 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> 未支付
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
</view> </view>
<view class="top" v-if="item.status == 3"> <view class="top" v-if="item.status == 3">
已退款 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> 已退款
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
</view> </view>
<view class="top" v-if="item.status == 4"> <view class="top" v-if="item.status == 4">
已取消(用户) <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> 已取消(用户)
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
</view> </view>
<view class="top" v-if="item.status == 5"> <view class="top" v-if="item.status == 5">
已取消(系统) <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> 已取消(系统)
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
</view> </view>
<view class="top" v-if="item.status == 6"> <view class="top" v-if="item.status == 6">
支付中 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> 支付中
</view> --> <!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
</view>
<view class="je" style="text-align: right;"> <view class="je" style="text-align: right;">
{{item.money}} {{item.money}}
</view> </view>

View File

@ -116,6 +116,8 @@
}, },
onShow() { onShow() {
this.wateringList = []
this.pagenum = 1
this.getList() this.getList()
}, },
// //

View File

@ -2,9 +2,16 @@
<view class="pages"> <view class="pages">
<u-navbar title="提现记录" :border-bottom="false" :background="bgc" back-icon-color="#fff" title-color='#fff' title-size='36' <u-navbar title="提现记录" :border-bottom="false" :background="bgc" back-icon-color="#fff" title-color='#fff' title-size='36'
height='50'></u-navbar> height='50'></u-navbar>
<view class="cards" v-for="(item,index) in list" :key="index"> <view class="cards" v-for="(item,index) in list" :key="index" @click="btntx(item.billId)">
<view class="card_left"> <view class="card_left">
<view class="top">成功提现</view> <view class="top">提现
<text style="color: rgb(233, 178, 116);" v-if="item.status == 11">(审核中)</text>
<text style="color: rgb(109, 195, 68);" v-if="item.status == 12">(审核通过)</text>
<text style="color: rgb(246, 111, 116);" v-if="item.status == 13">(已拒绝)</text>
<text style="color: rgb(109, 195, 68);" v-if="item.status == 14">(已打款)</text>
<text style="color: rgb(246, 111, 116);" v-if="item.status == 15">(打款失败)</text>
<text style="color: rgb(177, 168, 246);" v-if="item.status == 16">(打款中)</text>
</view>
<view class="bot"> <view class="bot">
{{item.createTime}} {{item.createTime}}
</view> </view>
@ -53,6 +60,11 @@
} }
}, },
methods: { methods: {
btntx(billId){
uni.navigateTo({
url:'/page_user/mapditu/withdraw_xq?billId=' + billId
})
},
getDeviceList(){ getDeviceList(){
this.$u.get("/app/bill/withdrawList?pageNum=1&pageSize=10").then((res) => { this.$u.get("/app/bill/withdrawList?pageNum=1&pageSize=10").then((res) => {
if (res.code == 200) { if (res.code == 200) {

View File

@ -16,7 +16,7 @@
余额提现 余额提现
</view> </view>
<view class="" style="color: #8883f0;" @click="btntxrecord"> <view class="" style="color: #8883f0;" @click="btntxrecord">
提现明细 提现记录
</view> </view>
</view> </view>
<view class="input_box"> <view class="input_box">
@ -24,12 +24,15 @@
</view> </view>
<view class="ipt"> <view class="ipt">
<u-input v-model="money" placeholder='输入自定义金额' placeholder-style='font-size: 24rpx;'/> <u-input v-model="money" @input="change" placeholder='输入自定义金额' placeholder-style='font-size: 24rpx;'/>
</view> </view>
<view class="altx" @click="all()"> <view class="altx" @click="all()">
全部提现 全部提现
</view> </view>
</view> </view>
<view class="" style="color: red;font-size: 24rpx;padding-top: 30rpx;box-sizing: border-box;">
提现服务费为 {{serviceRates}}
</view>
<view class="tit"> <view class="tit">
<view class="" style="display: flex;"> <view class="" style="display: flex;">
<view class="tit_line" style="margin-top: 4rpx;"> <view class="tit_line" style="margin-top: 4rpx;">
@ -51,7 +54,7 @@
</view> </view>
</view> </view>
<view class="type_box" @click="pay(1,'3')"> <!-- <view class="type_box" @click="pay(1,'3')">
<view class="box_left"> <view class="box_left">
<image style="border-radius: 50%;" src="https://api.ccttiot.com/smartmeter/img/static/umHaHtYaD540zBB7NXQ7" mode=""></image> <image style="border-radius: 50%;" src="https://api.ccttiot.com/smartmeter/img/static/umHaHtYaD540zBB7NXQ7" mode=""></image>
<view class="text"> <view class="text">
@ -61,7 +64,8 @@
<view class="box_right" :class="currentindex==1?'act1':''"> <view class="box_right" :class="currentindex==1?'act1':''">
<span v-if="currentindex==1" style="color: #fff;"> <u-icon style="margin-top: 22rpx;" name="checkbox-mark" color="#fff" size="28"></u-icon> </span> <span v-if="currentindex==1" style="color: #fff;"> <u-icon style="margin-top: 22rpx;" name="checkbox-mark" color="#fff" size="28"></u-icon> </span>
</view> </view>
</view> </view> -->
<!-- <view class="type_box" @click="pay(1,'2')"> <!-- <view class="type_box" @click="pay(1,'2')">
<view class="box_left"> <view class="box_left">
<image src="https://api.ccttiot.com/smartmeter/img/static/uRsKrUoCa4XXCKyIMTwb" mode=""></image> <image src="https://api.ccttiot.com/smartmeter/img/static/uRsKrUoCa4XXCKyIMTwb" mode=""></image>
@ -74,7 +78,7 @@
</view> </view>
</view> --> </view> -->
<view class="type_box" v-for="(item,index) in infoList.BANK_CARD" :key="index" @click="pay(index+2,'3',item.accountNo)"> <!-- <view class="type_box" v-for="(item,index) in infoList.BANK_CARD" :key="index" @click="pay(index+2,'3',item.accountNo)">
<view class="box_left"> <view class="box_left">
<image :src="'http://bkaear.market.alicloudapi.com/banklogo/' + item.cardInfo.Icon" mode=""></image> <image :src="'http://bkaear.market.alicloudapi.com/banklogo/' + item.cardInfo.Icon" mode=""></image>
<view class="text"> <view class="text">
@ -84,7 +88,7 @@
<view class="box_right" :class="currentindex==index+2?'act1':''"> <view class="box_right" :class="currentindex==index+2?'act1':''">
<span v-if="currentindex==index+2"> </span> <span v-if="currentindex==index+2"> </span>
</view> </view>
</view> </view> -->
</view> </view>
<view class="btn" @click="sub()"> <view class="btn" @click="sub()">
确认提现 确认提现
@ -107,11 +111,15 @@
currentindex:0, currentindex:0,
payType:1, payType:1,
accountNo:'', accountNo:'',
userinfo:{} userinfo:{},
serviceType:'',
serviceRate:'',
serviceRates:'',
sjmeoey:''
} }
}, },
onShow() { onShow() {
this.getfuwu()
this.getinfo() this.getinfo()
this.getuserinfo() this.getuserinfo()
}, },
@ -132,6 +140,17 @@
} }
}, },
methods: { methods: {
change(){
if(this.serviceType == 2){
this.serviceRates = this.serviceRate
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}else{
let qian = this.money * this.serviceRate / 100
this.serviceRates = qian
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}
},
// //
btntxrecord(){ btntxrecord(){
uni.navigateTo({ uni.navigateTo({
@ -157,6 +176,28 @@
}, },
all(){ all(){
this.money=this.userinfo.balance this.money=this.userinfo.balance
if(this.serviceType == 2){
this.serviceRates = this.serviceRate
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}else{
let qian = this.money * this.serviceRate / 100
this.serviceRates = qian
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}
},
//
getfuwu(){
this.$u.get('/app/bill/getWithdrawService?channelId=1').then((res) => {
if (res.code == 200) {
this.serviceType = res.data.serviceType
this.serviceRate = res.data.serviceRate
if(this.serviceType == 2){
this.serviceRates = this.serviceRate
}else{
this.serviceRates = 0
}
}
})
}, },
sub(){ sub(){
if(this.money<20){ if(this.money<20){
@ -173,12 +214,12 @@
}); });
}else{ }else{
let data ={ let data ={
// payPassword:'123456',
money:this.money, money:this.money,
arrivalAmount:this.money, arrivalAmount:this.sjmeoey,
serviceCharge:0, serviceCharge:this.serviceRates,
channelId:this.payType, channelId:1,
accountNo:this.accountNo serviceRate:this.serviceRate , //
serviceType:this.serviceType //
} }
this.$u.post('/app/bill/withdraw',data).then((res) => { this.$u.post('/app/bill/withdraw',data).then((res) => {
if (res.code == 200) { if (res.code == 200) {
@ -288,10 +329,10 @@
} }
.ipt{ .ipt{
width: 60%; width: 60%;
.u-input::placeholder { // .u-input::placeholder {
font-size: 20px; // font-size: 20px;
color: red; // color: red;
} // }
} }
.altx{ .altx{
display: flex; display: flex;

View File

@ -98,6 +98,16 @@
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },
{
"path": "mapditu/withdraw_xq",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#3996FD",
"navigationBarTextStyle": "#FFFFFF",
"navigationStyle": "custom"
}
},
{ {
"path": "shouzhi", "path": "shouzhi",
"style": { "style": {

View File

@ -30,9 +30,9 @@
<view class="fd"> <view class="fd">
<!-- 刷新动画 --> <!-- 刷新动画 -->
<view class="shuaxin" v-if="shuaxin"> <view class="shuaxin" v-if="shuaxin">
<image src="https://api.ccttiot.com/smartmeter/img/static/uoJ3GHWs14BwXetAlZTW" mode=""></image> <image src="https://api.ccttiot.com/smartmeter/img/static/uO9UFjzbzS9YlabzL4HV" mode=""></image>
<!-- <view class="">努力刷新中</view> -->
</view> </view>
<view class="fd_top"> <view class="fd_top">
<view class="fd_da"> <view class="fd_da">
<view class="fd_lt" <view class="fd_lt"
@ -91,7 +91,7 @@
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">该店铺暂无设备...</view> <view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">该店铺暂无设备...</view>
</view> </view>
<view class="swiper_item"> <view class="swiper_item">
<view class="card_box" v-for="(item,index) in items.wateringList" :key="index"> <view class="card_box" v-for="(item,indexs) in items.wateringList" :key="indexs">
<view class="card"> <view class="card">
<view class="card_left"> <view class="card_left">
<view class="card_left_tit" @click="todetail(item.deviceId)"> <view class="card_left_tit" @click="todetail(item.deviceId)">
@ -219,6 +219,8 @@
touchStartX: 0, // x touchStartX: 0, // x
touchStartY: 0, // y touchStartY: 0, // y
xiaflag:true
} }
}, },
onLoad() { onLoad() {
@ -311,11 +313,14 @@
} else { } else {
console.log(deltaY) console.log(deltaY)
if (deltaY > 250) { if (deltaY > 250) {
this.shuaxin = true if(this.xiaflag){
this.pagenum = 1 this.xiaflag = false
setTimeout(() => { this.shuaxin = true
this.getlist() this.pagenum = 1
}, 1000) setTimeout(() => {
this.getlist()
}, 1000)
}
} }
} }
} }
@ -359,16 +364,10 @@
that.$u.put("/app/device/bind", data).then( that.$u.put("/app/device/bind", data).then(
res => { res => {
if (res.code == 200) { if (res.code == 200) {
that.$u.get( that.$u.get(`/app/device/${id}/bySn`).then((res) => {
`/app/device/${id}/bySn` if (res.code == 200) {
).then((res) => {
if (res.code ==
200) {
uni.navigateTo({ uni.navigateTo({
url: '/page_components/bindsz?id=' + url: '/page_components/bindsz?id=' + res.data.deviceId
res
.data
.deviceId
}) })
} }
}) })
@ -534,7 +533,7 @@
this.groupList = res.data.filter(item => { this.groupList = res.data.filter(item => {
return item.name === '全部' return item.name === '全部'
}) })
// console.log(this.groupLists); // console.log(this.groupLists,'');
this.storeId = this.groupList[0].storeId this.storeId = this.groupList[0].storeId
this.getlist() this.getlist()
} }
@ -545,6 +544,7 @@
// if (this.storeId == null) { // if (this.storeId == null) {
this.$u.get(`/app/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}`).then((res) => { this.$u.get(`/app/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}`).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.xiaflag = true
this.shuaxin = false this.shuaxin = false
this.total = res.total this.total = res.total
if (res.rows.length > 0) { if (res.rows.length > 0) {
@ -569,7 +569,7 @@
}) })
this.wateringList.forEach(wateringItem => { this.wateringList.forEach(wateringItem => {
this.groupLists.forEach(groupItem => { this.groupLists.forEach(groupItem => {
if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId === wateringItem.storeId) { if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId == wateringItem.storeId) {
if (!groupItem.wateringList.some(item => item.storeId === wateringItem.storeId)) { if (!groupItem.wateringList.some(item => item.storeId === wateringItem.storeId)) {
groupItem.wateringList.push(wateringItem); groupItem.wateringList.push(wateringItem);
} }
@ -594,18 +594,20 @@
this.wateringList.forEach(wateringItem => { this.wateringList.forEach(wateringItem => {
this.groupLists[0].wateringList.push(wateringItem); this.groupLists[0].wateringList.push(wateringItem);
}) })
// console.log(this.groupLists,'020202');
this.wateringList.forEach(wateringItem => { this.wateringList.forEach(wateringItem => {
this.groupLists.forEach(groupItem => { this.groupLists.forEach(groupItem => {
if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId === wateringItem.storeId) { if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId == wateringItem.storeId) {
groupItem.wateringList.push(wateringItem) groupItem.wateringList.push(wateringItem)
} }
}) })
}) })
// console.log(this.groupLists) console.log(this.groupLists)
} }
this.isLoading = false; this.isLoading = false;
} else { } else {
this.shuaxin = false this.shuaxin = false
this.xiaflag = true
} }
}) })
// } else { // } else {
@ -973,7 +975,9 @@
this.pagenum = 1 this.pagenum = 1
this.curtitidx = e.detail.current this.curtitidx = e.detail.current
this.storeId = this.groupLists[this.curtitidx].storeId this.storeId = this.groupLists[this.curtitidx].storeId
this.getlist() // if(this.curtitidx == 0){
// this.getlist()
// }
}, },
getdevice() { getdevice() {
@ -1008,6 +1012,7 @@
}) })
}, },
todetail(id) { todetail(id) {
console.log(id);
uni.navigateTo({ uni.navigateTo({
url: '/page_user/sbdetail?id=' + id url: '/page_user/sbdetail?id=' + id
}) })
@ -1023,18 +1028,19 @@
</script> </script>
<style lang="scss"> <style lang="scss">
.shuaxin { .shuaxin {
width: 100%; width: 100%;
height: 110rpx; height: 110rpx;
z-index: 99; z-index: 99;
animation: fadeIn 1s forwards; // animation: fadeIn 1s forwards;
text-align: center; text-align: center;
image { image {
width: 80rpx; width: 80rpx;
height: 80rpx; height: 80rpx;
transform: translateX(-50%); // transform: translateX(-50%);
animation: spin 1s linear infinite; // animation: spin 1s linear infinite;
} }
view { view {

View File

@ -272,7 +272,6 @@ page{
width: 750rpx; width: 750rpx;
height: 352rpx; height: 352rpx;
background-color: #8883F0; background-color: #8883F0;
} }
.bot_box{ .bot_box{
position: relative; position: relative;