mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-02 10:16:38 +08:00
Displaying error fixed
This commit is contained in:
parent
a4e066d2db
commit
ccae9db727
@ -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;
|
||||||
|
@ -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;
|
||||||
|
@ -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>
|
||||||
|
@ -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>
|
||||||
|
@ -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: [
|
||||||
{
|
{
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user