Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
viitto
mallapp
Commits
fc9d502c
Commit
fc9d502c
authored
Aug 06, 2020
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改样式
parent
c5c85008
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
193 additions
and
35 deletions
+193
-35
coupons.vue
components/coupons/coupons.vue
+30
-3
list.vue
components/goods/list.vue
+1
-1
goods.vue
pages/goods/goods.vue
+40
-0
index.vue
pages/index/index.vue
+41
-2
billDetails.vue
pages/mySupplier/billDetails.vue
+10
-5
myBill.vue
pages/mySupplier/myBill.vue
+9
-4
mySupplierList.vue
pages/mySupplier/mySupplierList.vue
+6
-4
supplierOrder.vue
pages/mySupplier/supplierOrder.vue
+2
-7
order-submit.vue
pages/order-submit/order-submit.vue
+1
-1
pay-success.vue
pages/order-submit/pay-success.vue
+39
-0
api.js
plugin/api.js
+14
-8
No files found.
components/coupons/coupons.vue
View file @
fc9d502c
...
...
@@ -5,7 +5,12 @@
<img
src=
"../../static/images/couponsbg.png"
mode=
"widthFix"
/>
<view
class=
"coupons-box"
>
<text
style=
"font-size: 18px;color: #FFFFFF;"
>
恭喜获得优惠券
</text>
<text
style=
"font-size: 14px;color: #FFFFFF;margin-top: 20rpx;"
>
{{
couponMessage
}}
</text>
<view
class=
"btn"
@
click=
"goLook"
>
<text>
立即查看
</text>
</view>
</view>
<u-icon
name=
"close"
style=
'position: absolute;right: 0;top: 0;'
color=
"#FFFFFF"
size=
"60"
@
click=
'closeBtn'
></u-icon>
</view>
</u-popup>
</div>
...
...
@@ -13,10 +18,10 @@
<
script
>
export
default
{
props
:
[
'couponMessage'
],
data
()
{
return
{
pageinfo
:
{},
showDialog
:
true
};
},
...
...
@@ -26,7 +31,15 @@ export default {
},
methods
:
{
goLook
(){
this
.
showDialog
=
false
;
this
.
$emit
(
'goLook'
);
},
closeBtn
(){
this
.
showDialog
=
false
;
this
.
$emit
(
'closeBtn'
);
}
}
};
...
...
@@ -56,6 +69,20 @@ export default {
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
position
:
absolute
;
left
:
30
rpx
;
top
:
320
rpx
;
}
.coupons-page
.btn
{
width
:
330
rpx
;
height
:
66
rpx
;
border-radius
:
33
rpx
;
background
:
#FDE005
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
font-size
:
36
rpx
;
color
:
#1A1A1A
;
margin-top
:
70
rpx
;
}
</
style
>
components/goods/list.vue
View file @
fc9d502c
...
...
@@ -12,7 +12,7 @@
<view
class=
"shipping"
v-if=
" (cx.freeShippingFullMoneyPinkage>0 || cx.freeShippingFullNumPinkage>0)"
>
{{
cx
.
freeShippingName
!=
null
&&
cx
.
freeShippingName
!=
''
?
cx
.
freeShippingName
+
':'
:
''
}}
{{
cx
.
freeShippingFullMoneyPinkage
>
0
&&
cx
.
freeShippingFullNumPinkage
==
0
?
'满'
+
cx
.
freeShippingFullMoneyPinkage
+
'元包邮'
:
''
}}
{{
cx
.
freeShippingFullMoneyPinkage
==
0
&&
cx
.
freeShippingFullNumPinkage
>
0
?
'满'
+
cx
.
freeShippingFullNumPinkage
+
'
元
包邮'
:
''
}}
{{
cx
.
freeShippingFullMoneyPinkage
==
0
&&
cx
.
freeShippingFullNumPinkage
>
0
?
'满'
+
cx
.
freeShippingFullNumPinkage
+
'
件
包邮'
:
''
}}
</view>
</view>
<view
class=
"good-name"
v-if=
"setting.is_show_goods_name==1"
>
{{
cx
.
name
}}
</view>
...
...
pages/goods/goods.vue
View file @
fc9d502c
...
...
@@ -288,6 +288,12 @@
@
changeuserinfo=
"reloadUserinfo"
@
gbAuth=
"gbAuth"
></auth>
<coupon
v-if=
"showCoupons"
:couponMessage=
"couponMessage"
@
goLook=
"goLook"
@
closeBtn=
"closeBtn"
></coupon>
</view>
</template>
...
...
@@ -299,6 +305,7 @@ import goodlist from "@/components/goods/list";
import
goodsaction
from
"./components/goodsaction"
;
import
goodsku
from
"@/components/goods/goodsku"
;
import
auth
from
"@/components/auth/index"
;
import
coupon
from
"@/components/coupons/coupons"
;
import
share
from
"./components/share/share"
;
import
hParse
from
"@/components/u-parse/parse.vue"
;
export
default
{
...
...
@@ -332,6 +339,8 @@ export default {
CommentGrade
:
0
,
},
showAuth
:
false
,
showCoupons
:
false
,
couponMessage
:
'测试'
,
isAllowShare
:
1
,
u
:
{},
vipState
:{},
...
...
@@ -342,6 +351,7 @@ export default {
goodsaction
,
goodsku
,
auth
,
coupon
,
share
,
hParse
,
},
...
...
@@ -363,6 +373,7 @@ export default {
}
if
(
option
&&
option
.
user_id
)
{
uni
.
setStorageSync
(
"pid"
,
{
pid
:
option
.
user_id
});
this
.
getReceive
()
}
if
(
uni
.
getStorageSync
(
"AnchorName"
)){
//如果有主播名称了先清除
uni
.
removeStorageSync
(
'AnchorName'
);
...
...
@@ -664,6 +675,35 @@ export default {
openShare() {
this.showShare = true;
},
getReceive(){//分享进入调取领券接口
// 1-分享,2-购买并付款
this.request2(
{
url: "/api/AppletUser/ShareCoupon",
data: {
TriggerType: 1,
},
},
(res) => {
console.log(res,'
res
')
if(res.couponResultCode ==1){
this.couponMessage = res.couponMessage
this.showCoupons = true;
}
}
);
},
goLook(){
this.showCoupons = true;
uni.navigateTo({
url: "/pages/coupon/index/index",
});
},
closeBtn(){
this.showCoupons = false
}
},
};
</
script
>
...
...
pages/index/index.vue
View file @
fc9d502c
...
...
@@ -79,6 +79,12 @@
<Text
style=
'color: #fff;'
>
{{setting.add_app_text}}
</Text>
<view
class=
"triangle-up"
></view>
</view>
<coupon
v-if=
"showCoupons"
:couponMessage=
"couponMessage"
@
goLook=
"goLook"
@
closeBtn=
"closeBtn"
></coupon>
</view>
</template>
...
...
@@ -101,6 +107,7 @@ import mapi from "@/components/mapi/index";
import
checkform
from
"@/components/checkform/index"
;
import
addialog
from
"@/components/addialog/index"
;
import
quicknav
from
"@/components/quicknav/index"
;
import
coupon
from
"@/components/coupons/coupons"
;
export
default
{
data
()
{
return
{
...
...
@@ -114,6 +121,8 @@ export default {
setting
:{},
add_show
:
1
,
showtabs
:
true
,
showCoupons
:
false
,
couponMessage
:
''
,
};
},
components
:
{
...
...
@@ -134,7 +143,8 @@ export default {
mapi
,
checkform
,
addialog
,
quicknav
quicknav
,
coupon
},
onLoad
(
options
)
{
console
.
log
(
options
,
'option'
);
...
...
@@ -154,8 +164,9 @@ export default {
}
if
(
options
&&
options
.
user_id
){
uni
.
setStorageSync
(
"pid"
,
{
pid
:
options
.
user_id
});
this
.
getReceive
()
}
if
(
options
&&
options
.
scene
){
//兼容之前小程序的调转
this
.
getjump
(
options
.
scene
)
...
...
@@ -300,6 +311,34 @@ export default {
});
});
},
getReceive
(){
//分享进入调取领券接口
// 1-分享,2-购买并付款
this
.
request2
(
{
url
:
"/api/AppletUser/ShareCoupon"
,
data
:
{
TriggerType
:
1
,
},
},
(
res
)
=>
{
console
.
log
(
res
,
'res'
)
if
(
res
.
couponResultCode
==
1
){
this
.
couponMessage
=
res
.
couponMessage
this
.
showCoupons
=
true
;
}
}
);
},
goLook
(){
this
.
showCoupons
=
true
;
uni
.
navigateTo
({
url
:
"/pages/coupon/index/index"
,
});
},
closeBtn
(){
this
.
showCoupons
=
false
}
},
};
</
script
>
...
...
pages/mySupplier/billDetails.vue
View file @
fc9d502c
...
...
@@ -32,15 +32,20 @@
</view>
<view
class=
"box_r_b"
>
<text
style=
"font-size: 12px;color: #555555;"
>
X
{{
x
.
Number
}}
</text>
<view
style=
"padding: 5px 10px;background: #F8F6F5;font-size: 12px;color: #111111;"
>
<text>
已得佣金:
</text>
<text
style=
"color: #FF4048;font-size: 12px;"
>
{{
x
.
Final_Price
}}
</text>
<text>
元
</text>
</view>
</view>
</view>
</view>
<view
class=
"box_r_b"
>
<text
style=
"font-size: 12px;color: #555555;"
></text>
<view
style=
"padding: 5px 10px;background: #F8F6F5;font-size: 12px;color: #111111;"
>
<text>
已得佣金:
</text>
<text
style=
"color: #FF4048;font-size: 12px;"
>
{{
item
.
Commission
}}
</text>
<text>
元
</text>
</view>
</view>
<view
class=
"OrderNoStyle"
>
<text
style=
"margin-left: 15px;"
>
订单号:
{{
item
.
OrderNo
}}
</text>
</view>
...
...
pages/mySupplier/myBill.vue
View file @
fc9d502c
...
...
@@ -23,13 +23,18 @@
<view
class=
"box_b"
>
<view
class=
"box_b_t"
>
<text>
{{
item
.
Periods
}}
</text>
<text
:style=
"
{color:item.BillState==2?'#FF4048':'#111111','font-size':'16px'}">
{{
item
.
Money
}}
元
</text>
<view
style=
"display: flex;flex-direction: row;align-items:center ;"
>
<text
v-if=
"item.BillState == 1"
>
待打款:
</text>
<text
v-if=
"item.BillState == 2"
>
已打款:
</text>
<text
v-if=
"item.BillState == 3"
>
驳回:
</text>
<text
:style=
"
{color:item.BillState==2?'#FF4048':'#111111','font-size':'16px'}">
{{
item
.
Money
}}
元
</text>
</view>
</view>
<view
class=
"box_b_b"
>
<text>
{{
item
.
SupplierName
}}
</text>
<text
v-if=
"item.BillState == 1"
>
待打款
</text>
<text
v-if=
"item.BillState == 2"
>
已打款
</text>
<text
v-if=
"item.BillState == 3"
>
驳回
</text>
<text
style=
"font-size: 14px;"
>
查看详情 >>
</text>
</view>
</view>
</view>
...
...
pages/mySupplier/mySupplierList.vue
View file @
fc9d502c
...
...
@@ -42,7 +42,7 @@
<view
class=
"agreementbox"
v-if=
'isshowagreement==true'
></view>
<view
class=
"agreementbox_t"
v-if=
'isshowagreement==true'
>
<view
class=
"agreement_b"
>
<view
style=
"width: 100%;height: 45px;font-size: 14px;color: #000000;display: flex;flex-direction: row;border-bottom: 1px solid #E2E2E2;"
>
<view
style=
"width: 100%;height: 45px;font-size: 14px;color: #000000;display: flex;flex-direction: row;border-bottom: 1px solid #E2E2E2;
margin-top: -60px;
"
>
<view
class=
"popupstyle"
>
<text>
毛利率
</text>
</view>
...
...
@@ -63,11 +63,12 @@
</view>
</view>
<u-icon
name=
"close"
style=
'position: absolute;left: 50%;bottom: -60px;margin-left: -30rpx;'
color=
"#FFFFFF"
size=
"60"
@
click=
'read'
></u-icon>
<view
class=
"agreement_bottom"
:style=
"
{background:mainColor}" @click="read">
<
!--
<
view
class=
"agreement_bottom"
:style=
"
{background:mainColor}" @click="read">
<Text
style=
'color: #fff;'
>
确定
</Text>
</view>
</view>
-->
</view>
</view>
</
template
>
...
...
@@ -259,7 +260,8 @@
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
overflow
:
hidden
;
position
:
relative
;
}
.mySupplierList
.agreementbox_t
.agreement_bottom
{
width
:
100%
;
...
...
pages/mySupplier/supplierOrder.vue
View file @
fc9d502c
...
...
@@ -258,11 +258,6 @@
this
.
msg
.
EndTime
=
EndTime
}
}
},
getUserMemberSupplier
(){
...
...
@@ -273,9 +268,9 @@
},
(
res
)
=>
{
let
obj
=
{
ID
:
0
,
Name
:
'不限'
}
this
.
array
=
res
.
data
console
.
log
(
this
.
array
)
this
.
array
.
unshift
(
obj
)
}
);
...
...
pages/order-submit/order-submit.vue
View file @
fc9d502c
...
...
@@ -67,7 +67,7 @@
</view>
</
template
>
<
template
>
<view
class=
"goodboxmore"
style=
"font-size: 12px;color: #000000;display: flex;flex-direction: row;align-items: center;"
>
<view
class=
"goodboxmore"
style=
"font-size: 12px;color: #000000;display: flex;flex-direction: row;align-items: center;"
v-if=
"x.pinkageList.length>0"
>
已满足:
<view
style=
"height: 22px;line-height: 22px;font-size: 12px;color: #ff9900;background: #fdf6ec;padding: 0 5px;"
v-for=
"(y, yi) in x.pinkageList"
:key=
"yi"
>
<text
>
{{
y
.
Name
}}
</text>
...
...
pages/order-submit/pay-success.vue
View file @
fc9d502c
...
...
@@ -32,14 +32,22 @@
<view
style=
"padding: 12px;"
v-if=
"recommend.length > 0"
>
<goodlist
:list=
"recommend"
></goodlist>
</view>
<coupon
v-if=
"showCoupons"
:couponMessage=
"couponMessage"
@
goLook=
"goLook"
@
closeBtn=
"closeBtn"
></coupon>
</view>
</
template
>
<
script
>
import
goodlist
from
"@/components/goods/list"
;
import
coupon
from
"@/components/coupons/coupons"
;
export
default
{
components
:
{
goodlist
,
coupon
},
data
()
{
return
{
...
...
@@ -54,6 +62,8 @@ export default {
mainColor
:
""
,
recommend
:
[],
payInfo
:{},
showCoupons
:
false
,
couponMessage
:
''
,
};
},
onLoad
(
option
)
{
...
...
@@ -66,6 +76,7 @@ export default {
this
.
mainColor
=
this
.
$uiConfig
.
mainColor
;
this
.
themCustomStyle
.
color
=
this
.
mainColor
;
this
.
themCustomStyle
.
borderColor
=
this
.
mainColor
;
this
.
getReceive
()
this
.
initRecommend
();
},
methods
:
{
...
...
@@ -92,6 +103,34 @@ export default {
url
:
"/pages/index/index"
,
});
},
getReceive
(){
//分享进入调取领券接口
// 1-分享,2-购买并付款
this
.
request2
(
{
url
:
"/api/AppletUser/ShareCoupon"
,
data
:
{
TriggerType
:
2
,
},
},
(
res
)
=>
{
console
.
log
(
res
,
'res'
)
if
(
res
.
couponResultCode
==
1
){
this
.
couponMessage
=
res
.
couponMessage
this
.
showCoupons
=
true
;
}
}
);
},
goLook
(){
this
.
showCoupons
=
true
;
uni
.
navigateTo
({
url
:
"/pages/coupon/index/index"
,
});
},
closeBtn
(){
this
.
showCoupons
=
false
}
},
};
</
script
>
...
...
plugin/api.js
View file @
fc9d502c
...
...
@@ -2,9 +2,9 @@ export default {
install
(
Vue
,
options
)
{
Vue
.
prototype
.
host
=
"https://wx.weibaoge.cn/web/index.php?_mall_id=1285"
// Vue.prototype.host2 = "http://192.168.0.110:8200"
Vue
.
prototype
.
host2
=
"https://mallApi.oytour.com"
//
Vue.prototype.host2 = "https://mallApi.oytour.com"
// Vue.prototype.host2 = "http://192.168.2.16:8088"
//
Vue.prototype.host2 = "http://192.168.2.65"
Vue
.
prototype
.
host2
=
"http://192.168.2.65"
Vue
.
prototype
.
request
=
function
(
param
,
success
,
failed
)
{
//网络请求
uni
.
request
({
...
...
@@ -56,12 +56,18 @@ export default {
typeof
failed
==
"function"
&&
failed
(
res
.
data
);
}
}
else
if
(
res
.
data
.
resultCode
!=
1
)
{
uni
.
showToast
({
title
:
res
.
data
.
message
,
icon
:
"none"
,
});
typeof
failed
==
"function"
&&
failed
(
res
.
data
);
}
else
if
(
res
.
data
.
resultCode
!=
1
)
{
if
(
res
.
data
.
couponResultCode
==
0
){
}
else
{
uni
.
showToast
({
title
:
res
.
data
.
message
,
icon
:
"none"
,
});
}
typeof
failed
==
"function"
&&
failed
(
res
.
data
);
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment