Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
uni-app-ddh-shop
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
zhanhai
uni-app-ddh-shop
Commits
d107982b
Commit
d107982b
authored
Oct 11, 2024
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增首页和我的页面的埋点
parent
041cfa7f
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
1564 additions
and
1804 deletions
+1564
-1804
App.vue
App.vue
+15
-1
api.js
config/api.js
+8
-9
main.js
main.js
+2
-0
index.js
mixin/index.js
+59
-7
index.css
pages/index/index.css
+0
-339
index.vue
pages/index/index.vue
+351
-391
login.vue
pages/login/login.vue
+1
-1
index.vue
pages/my/index.vue
+55
-0
useFeed.vue
pages/useFeed/useFeed.vue
+34
-34
app-service.js
unpackage/dist/dev/app-plus/app-service.js
+892
-898
app-view.js
unpackage/dist/dev/app-plus/app-view.js
+93
-92
index.js
utils/index.js
+41
-0
request.js
utils/request.js
+12
-29
route.js
utils/route.js
+1
-3
No files found.
App.vue
View file @
d107982b
<
script
>
import
{
switchShowTabbar
,
loadDevice
,
loadLocation
,
loadNetwork
,
loadUuid
}
from
'@/utils/index.js'
import
{
switchShowTabbar
,
loadDevice
,
loadLocation
,
loadNetwork
,
loadUuid
}
from
'@/utils/index.js'
export
default
{
onLaunch
:
function
()
{
// 手机型号
...
...
@@ -26,6 +26,20 @@ export default {
}
}
// 当前版本号
plus
.
runtime
.
getProperty
(
plus
.
runtime
.
appid
,
function
(
wgtinfo
)
{
let
versionNumber
if
(
wgtinfo
.
version
)
{
versionNumber
=
wgtinfo
.
version
;
}
else
{
versionNumber
=
plus
.
runtime
.
version
;
}
// 存储所有请求的头部信息
uni
.
setStorage
({
key
:
'm-header-version'
,
data
:
versionNumber
});
})
/*** tabbar*/
switchShowTabbar
()
},
...
...
config/api.js
View file @
d107982b
...
...
@@ -6,23 +6,23 @@
const
BASE
=
{
development
:
{
common
:
"http://portal.cloudsmake.cn"
,
event
:
'http://118.31.124.88:21111'
,
h5
:
'http://192.168.0.23:8080/index.html#/loan'
},
stest
:
{
common
:
"http://portal.cloudsmake.cn"
,
event
:
'http://118.31.124.88:21111'
,
h5
:
'http://ddang-h5-s.rockstect.cn/index.html#/'
},
ltest
:
{
common
:
"https://dell-common-l.meimeiyouxin.com"
,
h5
:
''
},
gray
:
{
common
:
"https://dell-common.meimeiyouxin.com"
,
h5
:
'https://mmyx-h5-g.rockstect.com/index.html#/'
common
:
"https://api.yyhock.com"
,
event
:
'https://event.jqtianxia.com'
,
h5
:
'https://ddang-h5-g.rockstect.cn/index.html#/'
},
prod
:
{
common
:
"https://api.yyhock.com"
,
h5
:
'https://mmyx-h5.rockstect.com/index.html#/'
event
:
'https://event.jqtianxia.com'
,
h5
:
'https://ddang.rockstect.com/index.html#/'
}
}
let
env
=
process
.
env
.
VUE_APP_BASE_NODE_ENV
...
...
@@ -32,7 +32,6 @@ let env = process.env.VUE_APP_BASE_NODE_ENV
* APP打包运行需自定义环境env *
* development 开发环境 *
* stest S测试环境 *
* ltest L测试环境
* gray 灰度环境 *
* prod 生产环境 *
* ==========================
...
...
@@ -44,7 +43,7 @@ env = "stest";
const
api
=
{
common
:
BASE
[
env
].
common
,
buyer
:
BASE
[
env
].
buyer
,
event
:
BASE
[
env
].
event
,
h5
:
BASE
[
env
].
h5
}
...
...
main.js
View file @
d107982b
...
...
@@ -9,7 +9,9 @@ import Modal from './components/modal/modal'
import
goodsItem
from
'./components/goodsItem/index'
import
upgradePopup
from
'./components/showModal/upgradePopup'
import
request
from
'./utils/request.js'
import
*
as
utils
from
"./utils/index.js"
;
uni
.
$util
=
utils
;
Vue
.
component
(
'view-modal'
,
Modal
);
Vue
.
component
(
'view-goods'
,
goodsItem
);
Vue
.
component
(
'upgrade-Popup'
,
upgradePopup
);
...
...
mixin/index.js
View file @
d107982b
import
{
Jump
}
from
"../utils/route.js"
;
import
{
Jump
}
from
"@/utils/route.js"
;
import
api
from
'@/config/api.js'
export
default
{
data
()
{
return
{
isInitOk
:
false
,
isInitOk
:
false
,
// 如果页面开启了下拉刷新,用来判断关闭下拉刷新的
isPullDownRefresh
:
false
isPullDownRefresh
:
false
}
},
onTabItemTap
(
e
)
{
const
{
text
}
=
e
;
switch
(
text
)
{
case
"贷款"
:
this
.
buryingPoint
(
'app:loan_index_tab_click'
)
break
;
case
"首页"
:
this
.
buryingPoint
(
'app:index_tab_click'
)
break
;
case
"分类"
:
this
.
buryingPoint
(
'app:category_tab_click'
)
break
;
case
"我的"
:
this
.
buryingPoint
(
'app:my_tab_click'
)
break
;
}
},
methods
:
{
/** 埋点 */
buryingPoint
(
des
,
val
)
{
const
mobile
=
uni
.
getStorageSync
(
'd-mobile'
)
const
BaseUrl
=
api
.
event
try
{
const
data
=
{
id
:
mobile
?
mobile
:
val
,
event
:
des
,
type
:
"DDH-APP"
,
};
uni
.
request
({
url
:
`
${
BaseUrl
}
/event`
,
method
:
'POST'
,
data
:
{
...
data
},
success
:
(
res
)
=>
{
console
.
log
(
res
,
'埋点返回'
)
},
fail
:
(
err
)
=>
{
console
.
log
(
err
,
'埋点报错'
)
}
})
}
catch
(
err
)
{
console
.
log
(
err
,
"埋点请求报错"
);
}
},
// 检查是否开启了下拉刷新
checkPullDownRefresh
(){
if
(
this
.
isPullDownRefresh
)
{
checkPullDownRefresh
()
{
if
(
this
.
isPullDownRefresh
)
{
uni
.
stopPullDownRefresh
()
}
},
...
...
@@ -32,6 +79,11 @@ export default {
}
return
t
.
split
(
''
).
reverse
().
join
(
''
)
+
'.'
+
r
},
// 跳转到登录页面
JumpToLogin
()
{
console
.
log
(
'调到登录页面'
)
return
this
.
Go
(
'uni:/pages/login/login'
)
},
// 页面跳转
...
...
@@ -39,7 +91,7 @@ export default {
Jump
(
url
,
type
)
},
// 返回
Back
(
num
=
1
)
{
Back
(
num
=
1
)
{
uni
.
navigateBack
({
delta
:
num
})
...
...
pages/index/index.css
deleted
100644 → 0
View file @
041cfa7f
.i-page
{
width
:
100%
;
height
:
100vh
;
min-height
:
1624
rpx
;
background
:
#F7FAFF
;
}
.i-page
.i-header
{
position
:
sticky
;
top
:
0
;
z-index
:
9988
;
padding-top
:
98
rpx
;
width
:
100%
;
height
:
88
rpx
;
background
:
#FFFFFF
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
500
;
font-size
:
36
rpx
;
color
:
#333333
;
line-height
:
88
rpx
;
text-align
:
center
;
font-style
:
normal
;
}
.i-page
.i-boxs
.i-banner
{
margin
:
20
rpx
22
rpx
32
rpx
;
width
:
706
rpx
;
height
:
359
rpx
;
}
.i-page
.i-boxs
.i-banner
.swiper-item-i
{
width
:
706
rpx
;
height
:
359
rpx
;
}
.i-page
.i-boxs
.i-banner
.swiper-item-i
.banner-item
{
width
:
706
rpx
;
height
:
359
rpx
;
background-size
:
690
rpx
359
rpx
;
}
.i-page
.i-boxs
.i-list
{
margin
:
0
50
rpx
;
display
:
flex
;
flex-wrap
:
wrap
;
}
.i-page
.i-boxs
.i-list
.mian-item
{
margin-right
:
67
rpx
;
}
.i-page
.i-boxs
.i-list
.mian-item
.item-img
{
margin
:
0
16
rpx
;
width
:
80
rpx
;
height
:
80
rpx
;
background-size
:
100%
;
}
.i-page
.i-boxs
.i-list
.mian-item
.item-text
{
height
:
40
rpx
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
400
;
font-size
:
28
rpx
;
color
:
#333333
;
line-height
:
40
rpx
;
text-align
:
center
;
font-style
:
normal
;
}
.i-page
.i-boxs
.i-list
.mian-item
:nth-of-type
(
4n
)
{
margin-right
:
0
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
{
margin
:
50
rpx
36
rpx
16
rpx
;
height
:
86
rpx
;
display
:
flex
;
align-items
:
center
;
font-size
:
28
rpx
;
line-height
:
40
rpx
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
.hot-header-text
{
width
:
160
rpx
;
display
:
flex
;
font-family
:
PingFangSC-Regular
,
PingFang
SC
;
color
:
#999999
;
text-align
:
center
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
.hot-header-text
.hot-ative
{
position
:
relative
;
z-index
:
1
;
font-family
:
PingFangSC-Medium
,
PingFang
SC
;
font-weight
:
500
;
font-size
:
30
rpx
;
color
:
#333333
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
.hot-header-text
.hot-ative
::after
{
content
:
''
;
position
:
absolute
;
top
:
30%
;
left
:
0
;
width
:
100%
;
height
:
6px
;
/* 背景色的高度 */
background-color
:
#CDE0FE
;
/* 背景色 */
z-index
:
-1
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
.hot-header-text
.hot-icon-show
{
margin-top
:
10
rpx
;
margin-left
:
10
rpx
;
width
:
22
rpx
;
height
:
22
rpx
;
background
:
url('https://ddh.yyhock.com/ddhMall/hot-active-show.png')
0
0
no-repeat
;
background-size
:
100%
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
.hot-header-text
.hot-icon-show-down
{
margin-top
:
10
rpx
;
margin-left
:
10
rpx
;
width
:
22
rpx
;
height
:
22
rpx
;
background
:
url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png')
0
0
no-repeat
;
background-size
:
100%
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
.hot-icon
{
margin-top
:
36
rpx
;
margin-left
:
10
rpx
;
width
:
22
rpx
;
height
:
22
rpx
;
background
:
url('https://ddh.yyhock.com/ddhMall/hot-active.png')
0
0
no-repeat
;
background-size
:
100%
;
}
.i-page
.i-boxs
.i-malll
.hot-tab
.hot-show
{
width
:
160
rpx
;
display
:
flex
;
color
:
#999999
;
line-height
:
90
rpx
;
text-align
:
center
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
{
position
:
sticky
;
top
:
0
;
left
:
0
;
width
:
100%
;
z-index
:
99
;
height
:
86
rpx
;
background
:
#FFFFFF
;
font-size
:
28
rpx
;
line-height
:
40
rpx
;
margin-bottom
:
220
rpx
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-text
{
padding-top
:
108
rpx
;
width
:
100%
;
height
:
98
rpx
;
background
:
#FFFFFF
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
500
;
font-size
:
36
rpx
;
color
:
#333333
;
line-height
:
50
rpx
;
text-align
:
center
;
font-style
:
normal
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
{
height
:
86
rpx
;
display
:
flex
;
align-items
:
center
;
background
:
#FFFFFF
;
font-size
:
28
rpx
;
line-height
:
40
rpx
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-text
{
width
:
100%
;
height
:
98
rpx
;
background
:
#FFFFFF
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
500
;
font-size
:
36
rpx
;
color
:
#333333
;
line-height
:
50
rpx
;
text-align
:
center
;
font-style
:
normal
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-header-text
{
margin-left
:
30
rpx
;
width
:
160
rpx
;
display
:
flex
;
font-family
:
PingFangSC-Regular
,
PingFang
SC
;
color
:
#999999
;
text-align
:
center
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-header-text
.hot-ative
{
position
:
relative
;
z-index
:
1
;
font-family
:
PingFangSC-Medium
,
PingFang
SC
;
font-weight
:
500
;
font-size
:
30
rpx
;
color
:
#333333
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-header-text
.hot-ative
::after
{
content
:
''
;
position
:
absolute
;
top
:
30%
;
left
:
0
;
width
:
100%
;
height
:
6px
;
/* 背景色的高度 */
background-color
:
#CDE0FE
;
/* 背景色 */
z-index
:
-1
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-header-text
.hot-icon-show
{
margin-top
:
10
rpx
;
margin-left
:
10
rpx
;
width
:
22
rpx
;
height
:
22
rpx
;
background
:
url('https://ddh.yyhock.com/ddhMall/hot-active-show.png')
0
0
no-repeat
;
background-size
:
100%
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-header-text
.hot-icon-show-down
{
margin-top
:
10
rpx
;
margin-left
:
10
rpx
;
width
:
22
rpx
;
height
:
22
rpx
;
background
:
url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png')
0
0
no-repeat
;
background-size
:
100%
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-icon
{
margin-top
:
36
rpx
;
margin-left
:
10
rpx
;
width
:
22
rpx
;
height
:
22
rpx
;
background
:
url('https://ddh.yyhock.com/ddhMall/hot-active.png')
0
0
no-repeat
;
background-size
:
100%
;
}
.i-page
.i-boxs
.i-malll
.hot-fixed-show
.hot-tab-fixed
.hot-show
{
margin-left
:
36
rpx
;
width
:
160
rpx
;
display
:
flex
;
color
:
#999999
;
line-height
:
90
rpx
;
text-align
:
center
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
{
display
:
flex
;
flex-wrap
:
wrap
;
align-items
:
center
;
margin
:
0
30
rpx
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
{
margin-bottom
:
24
rpx
;
width
:
333
rpx
;
height
:
426
rpx
;
background
:
#FFFFFF
;
box-shadow
:
0
rpx
0
rpx
10
rpx
0
rpx
rgba
(
232
,
232
,
232
,
0.49
);
border-radius
:
10
rpx
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-top
{
display
:
flex
;
width
:
333
rpx
;
height
:
272
rpx
;
position
:
relative
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-top
.top-img
{
width
:
333
rpx
;
height
:
272
rpx
;
background-size
:
333
rpx
272
rpx
;
border-radius
:
10
rpx
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-top
.top-icon
{
position
:
absolute
;
top
:
0
;
margin-left
:
215
rpx
;
display
:
inline-block
;
width
:
118
rpx
;
height
:
110
rpx
;
background
:
url('https://ddh.yyhock.com/ddhMall/goods-sale.png')
0
0
no-repeat
;
background-size
:
118
rpx
110
rpx
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
{
padding
:
9
rpx
16
rpx
21
rpx
0
rpx
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
.footer-des
{
width
:
160
rpx
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
400
;
font-size
:
26
rpx
;
color
:
#333333
;
line-height
:
37
rpx
;
text-align
:
left
;
font-style
:
normal
;
white-space
:
nowrap
;
/* 确保文本在一行内显示 */
overflow
:
hidden
;
/* 隐藏超出容器的内容 */
text-overflow
:
ellipsis
;
/* 使用省略号表示被截断的文本 */
word-break
:
break-all
;
/* 允许在单词内换行 */
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
.footer-box
{
display
:
flex
;
margin
:
9
rpx
0
16
rpx
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
.footer-box
.box-num
{
display
:
flex
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
400
;
font-size
:
28
rpx
;
color
:
#FC4D3E
;
line-height
:
28
rpx
;
text-align
:
left
;
font-style
:
normal
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
.footer-box
.box-num
.num-icon
{
margin-top
:
4
rpx
;
font-size
:
20
rpx
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
.footer-line
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
.footer-line
.box-btn
{
width
:
76
rpx
;
height
:
38
rpx
;
border-radius
:
5
rpx
;
border
:
1
rpx
solid
#2263E6
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
400
;
font-size
:
20
rpx
;
color
:
#2263E6
;
line-height
:
38
rpx
;
text-align
:
center
;
font-style
:
normal
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
.box-item
.item-footer
.footer-line
.box-last
{
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
400
;
font-size
:
20
rpx
;
color
:
#999999
;
line-height
:
38
rpx
;
text-align
:
right
;
font-style
:
normal
;
}
.i-page
.i-boxs
.i-malll
.box-at-home
.main-box
:nth-child
(
2n
)
{
margin-left
:
24
rpx
;
}
pages/index/index.vue
View file @
d107982b
This diff is collapsed.
Click to expand it.
pages/login/login.vue
View file @
d107982b
...
...
@@ -169,13 +169,13 @@ export default {
"verifyCode"
:
self
.
sendcode
}
self
.
$request
(
'/pawn/client/login'
,
'POST'
,
params
).
then
(
res
=>
{
console
.
log
(
res
,
'login'
);
const
{
userInfo
,
token
}
=
res
.
result
if
(
userInfo
)
{
const
{
deviceId
}
=
userInfo
uni
.
setStorageSync
(
'deviceId'
,
deviceId
)
}
uni
.
setStorageSync
(
'token'
,
token
)
uni
.
setStorageSync
(
'd-mobile'
,
self
.
mobile
)
self
.
loginNocheck
()
// 设置
...
...
pages/my/index.vue
View file @
d107982b
...
...
@@ -72,6 +72,16 @@ export default {
onShow
()
{
this
.
init
();
},
// 页面下拉刷新
async
onPullDownRefresh
()
{
// 初始化设备
await
this
.
init
()
setTimeout
(()
=>
{
uni
.
stopPullDownRefresh
();
},
1000
);
},
methods
:
{
// 初始化
init
()
{
...
...
@@ -149,12 +159,41 @@ export default {
})
},
goPage
(
item
)
{
switch
(
item
.
title
)
{
case
"我的浏览"
:
this
.
buryingPoint
(
'app:my_browsing_history_click'
)
break
;
case
"我的需求"
:
this
.
buryingPoint
(
'app:my_requests_click'
)
break
;
case
"我的关注"
:
this
.
buryingPoint
(
'app:my_favorites_click'
)
break
;
case
"用户反馈"
:
this
.
buryingPoint
(
'app:my_user_feedback_click'
)
break
;
default
:
break
;
}
this
.
Go
(
item
.
linkUrl
)
},
goLogin
()
{
this
.
Go
(
'uni:/pages/login/login'
)
},
goBar
(
item
)
{
switch
(
item
.
title
)
{
case
"我的还款"
:
this
.
buryingPoint
(
'app:my_repayment_click'
)
break
;
case
"申请记录"
:
this
.
buryingPoint
(
'app:my_application_record_click'
)
break
;
default
:
break
;
}
const
self
=
this
const
token
=
uni
.
getStorageSync
(
'token'
)
if
(
token
!=
''
)
{
...
...
@@ -166,11 +205,27 @@ export default {
}
},
goTel
()
{
this
.
buryingPoint
(
'app:my_contact_us_click'
)
uni
.
makePhoneCall
({
phoneNumber
:
this
.
serviceCall
//仅为示例
});
},
goItem
(
item
)
{
switch
(
item
.
title
)
{
case
"设置"
:
this
.
buryingPoint
(
'app:my_settings_click'
)
break
;
case
"帮助中心"
:
this
.
buryingPoint
(
'app:my_help_center_click'
)
break
;
default
:
break
;
}
if
(
item
.
linkUrl
!=
''
)
{
console
.
log
(
'66'
,
item
)
this
.
Go
(
item
.
linkUrl
)
...
...
pages/useFeed/useFeed.vue
View file @
d107982b
...
...
@@ -7,8 +7,9 @@
<view
class=
'label-text'
>
描述
</view>
</view>
<view
class=
'box-tarea'
>
<textarea
class=
'box-con'
placeholder=
"请详细描述您的问题或建议,我们将及时跟进"
maxlength=
"100"
@
input=
"sufontnum($event)"
></textarea>
<text
class=
'contain-length'
>
{{
fountNum
}}
/
<text
class=
"length-total"
>
100
</text>
字
</text>
<textarea
class=
'box-con'
placeholder=
"请详细描述您的问题或建议,我们将及时跟进"
maxlength=
"100"
@
input=
"sufontnum($event)"
></textarea>
<text
class=
'contain-length'
>
{{
fountNum
}}
/
<text
class=
"length-total"
>
100
</text>
字
</text>
</view>
</view>
</view>
...
...
@@ -19,41 +20,40 @@
</
template
>
<
script
>
export
default
{
data
()
{
return
{
fountNum
:
0
,
desQuest
:
''
export
default
{
data
()
{
return
{
fountNum
:
0
,
desQuest
:
''
}
},
methods
:
{
needSubmit
()
{
const
content
=
this
.
desQuest
;
if
(
!
content
)
{
return
this
.
toast
(
'描述不能为空'
)
}
},
methods
:
{
needSubmit
(){
const
self
=
this
if
(
self
.
desQuest
==
''
){
self
.
toast
(
'描述不能为空'
)
return
false
}
const
params
=
{
content
:
self
.
desQuest
}
self
.
$request
(
'/pawn/feed/addFeed'
,
'POST'
,
params
).
then
(
res
=>
{
console
.
log
(
res
.
result
,
'followGood'
);
self
.
toast
(
'提交成功'
)
self
.
Go
(
'uni:/pages/index/index'
,
'tab'
)
}).
catch
(
err
=>
{
console
.
log
(
err
,
'请求出错'
)
})
},
sufontnum
(
e
){
if
(
e
.
detail
.
value
.
length
>
100
){
self
.
toast
(
'不可超过100字'
)
return
false
this
.
$request
(
'/pawn/feed/addFeed'
,
'POST'
,
{
content
}).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
toast
(
'提交成功'
,
'success'
)
setTimeout
(()
=>
{
this
.
Back
()
},
500
)
}
this
.
desQuest
=
e
.
detail
.
value
this
.
fountNum
=
e
.
detail
.
value
.
length
},
}
}).
catch
(
err
=>
{
console
.
log
(
err
,
'请求出错'
)
})
},
sufontnum
(
e
)
{
if
(
e
.
detail
.
value
.
length
>
100
)
{
self
.
toast
(
'不可超过100字'
)
return
false
}
this
.
desQuest
=
e
.
detail
.
value
this
.
fountNum
=
e
.
detail
.
value
.
length
},
}
}
</
script
>
<
style
src=
'./index.less'
lang=
"less"
scoped
></
style
>
unpackage/dist/dev/app-plus/app-service.js
View file @
d107982b
This diff is collapsed.
Click to expand it.
unpackage/dist/dev/app-plus/app-view.js
View file @
d107982b
This diff is collapsed.
Click to expand it.
utils/index.js
View file @
d107982b
...
...
@@ -4,6 +4,47 @@ import Permission from '@/js_sdk/wa-permission/permission'
import
{
SelectLocation
}
from
"./authPerission"
;
import
API
from
'@/server/common'
// 异步请求
export
function
getNetworkException
(
requestList
)
{
return
Promise
.
all
(
requestList
)
.
then
((
res
)
=>
{
// console.log('getNetworkException-res----------', res)
})
.
catch
((
err
)
=>
{
if
(
err
.
code
!=
"20001"
)
return
;
uni
.
$util
.
showToast
(
"网络有点忙, 请刷新试试~"
);
})
.
finally
(()
=>
{
// uni.hideLoading()
// complete()
});
}
// toast 提示框
export
function
showToast
(
title
=
""
,
duration
=
2000
,
icon
=
"none"
)
{
return
new
Promise
((
resolve
,
reject
)
=>
uni
.
showToast
({
title
,
duration
,
icon
,
success
:
()
=>
setTimeout
(()
=>
resolve
(),
duration
),
fail
:
()
=>
reject
(),
})
);
}
// 切换tabBar的显示和隐藏
export
const
isLogin
=
()
=>
{
let
flag
=
false
const
token
=
uni
.
getStorageSync
(
'token'
)
token
?
flag
=
true
:
flag
=
false
return
flag
}
// 切换tabBar的显示和隐藏
export
const
switchShowTabbar
=
async
()
=>
{
const
token
=
uni
.
getStorageSync
(
'token'
)
...
...
utils/request.js
View file @
d107982b
...
...
@@ -39,45 +39,28 @@ const request = async (url, type, data) => {
Author
:
token
,
//多典花
},
success
:
(
res
)
=>
{
// console.log(res,'333')
const
{
data
,
statusCode
}
=
res
;
// #ifdef APP
// console.log(res, 'response')
// #endif
const
{
data
,
statusCode
}
=
res
;
if
(
statusCode
===
200
)
{
if
(
data
.
success
==
true
)
{
return
resolve
(
data
)
}
else
{
if
(
data
.
code
==
'403'
)
{
console
.
log
(
res
,
'402'
);
uni
.
showToast
({
title
:
data
.
message
,
icon
:
"none"
,
duration
:
2000
})
uni
.
removeStorageSync
(
'token'
)
}
else
{
uni
.
showToast
({
title
:
data
.
message
,
icon
:
"none"
,
duration
:
2000
})
return
false
}
if
(
data
.
code
==
'403'
)
uni
.
removeStorageSync
(
'token'
)
return
reject
(
data
)
}
}
else
{
console
.
log
(
res
.
errMsg
,
'!200'
);
return
reject
({
data
,
message
:
res
.
errMsg
})
return
reject
({
...
data
,
message
:
res
.
errMsg
})
}
},
fail
:
(
err
)
=>
{
console
.
log
(
err
,
"AJAX请求报错"
)
uni
.
showToast
({
title
:
err
.
message
?
err
.
message
:
'服务器开小差了~'
,
icon
:
"none"
,
duration
:
2000
})
reject
(
err
)
}
});
...
...
utils/route.js
View file @
d107982b
...
...
@@ -7,7 +7,6 @@
export
const
Jump
=
function
(
url
,
type
=
'navigate'
)
{
console
.
log
(
url
,
type
,
'路径1'
)
if
(
!
url
)
return
;
const
index
=
url
.
indexOf
(
":"
);
...
...
@@ -28,8 +27,7 @@ export const Jump = function (url, type='navigate') {
console
.
log
(
"跳转到其它APP 或者 小程序 或者其它的内容"
)
break
;
}
console
.
log
(
targetPath
,
'路径'
)
switch
(
type
)
{
case
'redirect'
:
uni
.
redirectTo
({
...
...
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