Displaying error fixed

This commit is contained in:
Vion 2022-01-25 12:25:47 +08:00
parent a4e066d2db
commit ccae9db727
6 changed files with 14 additions and 9 deletions

View File

@ -328,7 +328,7 @@ picture {
height: auto; height: auto;
position: fixed; position: fixed;
right: 0; right: 0;
top: 40%; top: 56vh;
background: #FFFFFF; background: #FFFFFF;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.16); box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
border-radius: .25rem; border-radius: .25rem;

View File

@ -341,6 +341,7 @@ border-radius: 100px;
font-size: 18px; font-size: 18px;
color: #333333; color: #333333;
font-weight: bold; font-weight: bold;
margin-top:1rem;
} }
.ts-scrollable{ .ts-scrollable{
margin-top: 1rem; margin-top: 1rem;

View File

@ -34,7 +34,7 @@
</i> </i>
<span> <span>
{{item.couponTypeId=='4'?parseInt(((item.discount)*10))+'折':item.couponAmount}} {{ item.couponAmount?item.couponAmount:(parseInt((item.discount)*10)+'折') }}
</span> </span>
</div> </div>
<strong>{{ item.couponName }}</strong> <strong>{{ item.couponName }}</strong>

View File

@ -167,7 +167,7 @@
</i> </i>
<span> <span>
{{item.couponTypeId=='4'?parseInt(((item.discount)*10))+'折':item.couponAmount}} {{ item.couponAmount?item.couponAmount:(parseInt((item.discount)*10)+'折') }}
</span> </span>
</div> </div>
<strong>{{ item.couponName }}</strong> <strong>{{ item.couponName }}</strong>

View File

@ -64,7 +64,9 @@
<p>您的商品我们正在抓紧打包请耐心等候</p> <p>您的商品我们正在抓紧打包请耐心等候</p>
<div class="line_dashed"></div> <div class="line_dashed"></div>
<div class="userer"> <div class="userer">
<div class="qrcode"><vue-qr :text="qrtext" :size="260"></vue-qr></div> <div class="qrcode">
<img src="/images/qrcode-aichong.jpg">
</div>
<p>微信扫一扫识别二维码</p> <p>微信扫一扫识别二维码</p>
<p class="tips">加入社群0元试用商品随单发放</p> <p class="tips">加入社群0元试用商品随单发放</p>
</div> </div>
@ -94,7 +96,7 @@ export default {
activeIndex: 0, activeIndex: 0,
paymentTimer:undefined, paymentTimer:undefined,
isSucess: false, isSucess: false,
dialogSuccess: false, dialogSuccess: true,
paytype: "微信", paytype: "微信",
userpaystype: [ userpaystype: [
{ {

View File

@ -4,7 +4,7 @@
<Myheader></Myheader> <Myheader></Myheader>
<div class="rc-top"></div> <div class="rc-top"></div>
<tabs :crumbs="crumbs"></tabs> <tabs :crumbs="crumbs"></tabs>
<div class="online" id="fixed-catbar-seperator rc-margin--none"></div> <div class="online rc-margin--none" id="fixed-catbar-seperator"></div>
<div class="rc-top"></div> <div class="rc-top"></div>
<div <div
class=" class="
@ -187,7 +187,7 @@
<li> <li>
<span <span
><i class="ts-row-title">商品编号</i ><i class="ts-row-title">商品编号</i
><i>{{ curItem.brandCode }}</i></span ><i>{{ curItem.productCode }}</i></span
> >
</li> </li>
</ul> </ul>
@ -224,7 +224,7 @@
</i> </i>
<span> <span>
{{item.couponTypeId=='4'?parseInt(((item.discount)*10))+'折':item.couponAmount}} {{ item.couponAmount?item.couponAmount:(parseInt((item.discount)*10)+'折') }}
</span> </span>
</div> </div>
<strong>{{ item.couponName }}</strong> <strong>{{ item.couponName }}</strong>
@ -593,6 +593,8 @@ export default {
// let userid=JSON.parse(location.getItem('userInfo')); // let userid=JSON.parse(location.getItem('userInfo'));
// let mobile=JSON.parse(location.getItem('userInfo')); // let mobile=JSON.parse(location.getItem('userInfo'));
// console.log(userid,mobile); // console.log(userid,mobile);
let basePoint = item.basePoint;
basePoint = basePoint?basePoint:0;
let data = await postCourseId( let data = await postCourseId(
item.productCode, item.productCode,
this.sales_num, this.sales_num,
@ -603,7 +605,7 @@ export default {
item.ecPrice, item.ecPrice,
item.specifications, item.specifications,
item.leftAllotment, item.leftAllotment,
item.basePoint basePoint
); );
if (data) { if (data) {
this.productlist = data; this.productlist = data;