Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
H5_2.0
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
83306b5e
authored
May 24, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
js
parent
f9ce10cc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
11 deletions
App.vue
components/drag-button-follow/drag-button-follow.vue
main.js
pages/mine/shoporder.vue
pages/mine/user.vue
App.vue
View file @
83306b5e
...
...
@@ -19,8 +19,8 @@ export default {
uni-page-head
{
display
:
none
;
}
body
{
background
:
#f5f5f5
;
body
{
background
:
#f5f5f5
;
}
/* #endif */
</
style
>
components/drag-button-follow/drag-button-follow.vue
View file @
83306b5e
This diff is collapsed.
Click to expand it.
main.js
View file @
83306b5e
import
App
from
'./App'
import
{
request
}
from
'@/util/util.js'
import
{
request
}
from
'@/util/util.js'
import
filters
from
'@/filters'
import
router
from
'@/router/index.js'
import
{
RouterMount
}
from
'uni-simple-router'
import
directive
from
'@/directive'
import
{
Ichunt_Api
}
from
'@/util/api.js'
;
// #ifndef VUE3
import
Vue
from
'vue'
...
...
@@ -18,16 +20,23 @@ Object.keys(filters).forEach(key => Vue.filter(key, filters[key]));
//自定义指令
Vue
.
use
(
directive
);
//定义全局变量
var
globalData
=
{
kefu
:
''
//客服
};
//读取全局变量配置
request
(
Ichunt_Api
+
'/api/common/data'
,
'GET'
,
{},
true
,
true
).
then
(
res
=>
{
if
(
res
.
err_code
===
0
)
{
globalData
.
kefu
=
res
.
data
.
kfqq_xk
.
data
;
Vue
.
prototype
.
$globalData
=
globalData
;
}
});
try
{
function
isPromise
(
obj
)
{
return
(
!!
obj
&&
(
typeof
obj
===
"object"
||
typeof
obj
===
"function"
)
&&
typeof
obj
.
then
===
"function"
);
return
(
!!
obj
&&
(
typeof
obj
===
"object"
||
typeof
obj
===
"function"
)
&&
typeof
obj
.
then
===
"function"
);
}
// 统一 vue2 API Promise 化返回格式与 vue3 保持一致
...
...
pages/mine/shoporder.vue
View file @
83306b5e
<
template
>
<view
class=
"page-userOrder"
>
<drag-button-follow
follow=
"left,right"
className=
"drag-button"
class=
"drag-button"
:url=
"kfurl"
></drag-button-follow>
<drag-button-follow
follow=
"left,right"
className=
"drag-button"
class=
"drag-button"
></drag-button-follow>
<view
class=
"top"
>
<view
class=
"head row bothSide verCenter"
>
<view
class=
"left row verCenter"
>
...
...
@@ -154,7 +154,6 @@ export default {
});
return
{
time
:
currentDate
,
kfurl
:
'https://url.cn/uia2no5Z?_type=wpa&qidian=true'
,
arr
:
[
'全部'
,
'待付款'
,
'待收货'
,
'已完结订单'
],
curr
:
0
,
list
:
[],
...
...
pages/mine/user.vue
View file @
83306b5e
...
...
@@ -25,7 +25,7 @@
<text
class=
"tt"
>
我的优惠券
</text>
<text
class=
"tip"
></text>
</navigator>
<a
class=
"box column rowCenter verCenter"
:href=
"
userInfo.kefu_url
"
>
<a
class=
"box column rowCenter verCenter"
:href=
"
kfqq_xk
"
>
<image
src=
"../../static/qq.png"
></image>
<text
class=
"tt"
>
我的客服
</text>
</a>
...
...
@@ -120,12 +120,14 @@ export default {
},
data
()
{
return
{
kfqq_xk
:
''
,
userInfo
:
{},
activity_list
:
[]
};
},
onShow
()
{
this
.
getData
();
this
.
kfqq_xk
=
this
.
$globalData
.
kefu
;
},
methods
:
{
/**
...
...
@@ -315,6 +317,7 @@ export default {
this
.
request
(
Api_Url
+
'/user/getUserType'
,
'POST'
,
{},
true
,
true
).
then
(
res
=>
{
if
(
res
.
err_code
===
0
)
{
this
.
userInfo
=
res
.
data
;
this
.
$globalData
.
kefu
=
res
.
data
.
kefu_url
;
}
else
if
(
res
.
err_code
===
11012
)
{
uni
.
navigateTo
({
url
:
'/login'
...
...
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