Commit 0d2ca29b authored by caimeng's avatar caimeng

修改BUG

parent ce7bdd86
......@@ -39,7 +39,7 @@ export default {
// plus.navigator.closeSplashscreen()
// }
// })
} else {
uni.redirectTo({
url: "/pages/starPage/index",
......@@ -48,7 +48,7 @@ export default {
}
})
}
// 强制竖屏
plus.screen.lockOrientation("portrait-primary")
......
......@@ -38,7 +38,7 @@ let env = process.env.VUE_APP_BASE_NODE_ENV
*/
// #ifdef APP-PLUS
env = "development";
env = "stest";
// #endif
const api = {
......
......@@ -15,7 +15,7 @@
/* 安全区域配置,仅iOS平台生效 */
"bottom" : {
/* 底部安全区域配置 */
"offset" : "none" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none"
"offset" : "auto" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none"
}
},
/* 应用发布信息 */
......
......@@ -194,7 +194,7 @@ export default {
uni.setStorageSync('token', token)
uni.setStorageSync('clientNo', clientNo)
uni.setStorageSync('l-mobile', self.mobile)
// self.loginNocheck()
self.loginNocheck()
// 设置
switchShowTabbar();
......
......@@ -14,17 +14,17 @@
.a-item {
width: 690rpx;
height: 251rpx;
min-height: 251rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(232, 232, 232, 0.49);
border-radius: 10rpx;
margin-bottom: 24rpx;
box-sizing: border-box;
padding: 32rpx 20rpx 0;
padding: 32rpx 20rpx 20rpx;
.a-item-name {
height: 40rpx;
min-height: 40rpx;
padding-left: 47rpx;
font-size: 28rpx;
color: #333333;
......@@ -33,7 +33,7 @@
}
.a-item-detail {
height: 40rpx;
min-height: 40rpx;
padding-left: 47rpx;
font-size: 28rpx;
color: #999999;
......
<template>
<view class="page-address">
<view v-if="list" class="a-list">
<view v-if="list && list.length" class="a-list">
<view v-for="(item, index) in list" :key="index" @click="handleSelect(item)" class="a-item">
<view class="a-item-name">
......@@ -10,8 +10,8 @@
<text>{{ item.province }} {{ item.city }} {{ item.region }} {{ item.address }}</text>
</view>
<view class="a-item-btn">
<text @click="handleEdit(item)">编辑</text>
<text @click="handleDel(item.id)">删除</text>
<text @click.stop="handleEdit(item)">编辑</text>
<text @click.stop="handleDel(item.id)">删除</text>
</view>
</view>
</view>
......@@ -72,9 +72,8 @@ export default {
const res = await API.addressDelete({ id })
if (res.success) {
uni.showToast({
icon: 'none',
title: '删除成功',
duration: 1200
duration: 1500
});
// 更新列表
self.init()
......
......@@ -115,14 +115,13 @@ export default {
//调用成功的回调
success(res) {
console.log('success:' + res);
uni.showToast({
icon: 'none',
title: '支付成功,即将返回,请耐心等待!',
duration: 3000
uni.showToast({
title: '支付成功!',
duration: 2000
});
setTimeout(() => {
uni.navigateBack();
}, 3000)
that.Go('uni:/subPackage/detailResult/detailResult', 'redirect')
}, 2000)
},
//调用失败的回调
fail(err) {
......
......@@ -56,8 +56,7 @@
}
&.o-address-detail {
height: 42rpx;
min-height: 42rpx;
font-size: 30rpx;
color: #333333;
line-height: 42rpx;
......
......@@ -135,16 +135,9 @@ export default {
const res = await API.orderSubmit({ ...params })
if (res.success) {
const { id } = res.result;
uni.showToast({
icon:'none',
title: '订单提交成功',
duration: 1200
});
TimeOut = setTimeout(() => {
uni.redirectTo({
url: '/subPackage/cashier/cashier?id=' + id
})
}, 1500)
uni.redirectTo({
url: '/subPackage/cashier/cashier?id=' + id
})
}
} catch (err) {
......
.product-page {
width: 100%;
background: #F7FAFF;
box-sizing: border-box;
padding-bottom: 150rpx;
// padding-bottom: calc(constant(safe-area-inset-bottom) + 150rpx);
// padding-bottom: calc(env(safe-area-inset-bottom) + 150rpx);
.p-banner {
......@@ -10,7 +13,8 @@
min-height: 450rpx;
margin-bottom: 20rpx;
box-sizing: border-box;
padding: 0 30rpx;
padding: 50rpx 30rpx;
background: #fff;
.banner-item {
display: block;
......@@ -145,7 +149,7 @@
align-items: center;
.img-f {
display: block;
display: block;
}
}
......@@ -261,11 +265,15 @@
.header-l {
margin-top: 21rpx;
width: 333rpx;
height: 272rpx;
display: flex;
align-items: center;
justify-content: center;
image {
width: 333rpx;
height: 272rpx;
background-size: 333rpx 272rpx;
display: block;
background: #9CA5B9;
}
}
......
......@@ -42,7 +42,7 @@
<view-modal :show="showback" @cancel="cancel" :showCancel="true" class='infrom-modal' :title="title">
<view class='modal-header'>
<view class='header-l'>
<image :src='goodsImage'></image>
<image mode="widthFix" :src='goodsImage'></image>
</view>
<view class="header-r">
<view class='r-prise'>
......@@ -103,7 +103,7 @@ export default {
this.initTel()
}
},
onHide(){
onHide() {
this.showback = false
},
methods: {
......@@ -170,6 +170,14 @@ export default {
},
addCount() {
console.log(this.quantity, '8888')
return uni.showToast({
title: '最多买一件',
icon: "none",
duration: 2000
})
if (this.quantity >= this.stock) {
uni.showToast({
title: '超过库存量了',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment