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
d10786c0
Commit
d10786c0
authored
Oct 17, 2024
by
ly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pv
parent
84d291ed
Changes
17
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
50 additions
and
30 deletions
+50
-30
Ineed.vue
pages/Ineed/Ineed.vue
+1
-0
application.vue
pages/application/application.vue
+1
-0
category.vue
pages/category/category.vue
+1
-0
detailResult.vue
pages/detailResult/detailResult.vue
+3
-0
index.vue
pages/index/index.vue
+2
-1
login.vue
pages/login/login.vue
+1
-0
lookGoods.vue
pages/lookGoods/lookGoods.vue
+1
-1
index.vue
pages/my/index.vue
+1
-0
myneed.vue
pages/myneed/myneed.vue
+1
-1
productDetails.vue
pages/productDetails/productDetails.vue
+1
-0
prolist.vue
pages/prolist/prolist.vue
+1
-1
index.vue
pages/recruit/index.vue
+3
-1
index.vue
pages/recruitResult/index.vue
+3
-0
setting.vue
pages/setting/setting.vue
+1
-0
index.vue
pages/sort/index.vue
+1
-0
useFeed.vue
pages/useFeed/useFeed.vue
+3
-0
app-service.js
unpackage/dist/dev/app-plus/app-service.js
+25
-25
No files found.
pages/Ineed/Ineed.vue
View file @
d10786c0
...
...
@@ -35,6 +35,7 @@
}
},
onLoad
()
{
this
.
buryingPoint
(
'app:Ineed_pageView'
)
this
.
init
()
},
methods
:
{
...
...
pages/application/application.vue
View file @
d10786c0
...
...
@@ -40,6 +40,7 @@
},
onLoad
()
{
this
.
init
()
this
.
buryingPoint
(
'app:application_pageView'
)
},
methods
:
{
init
(){
...
...
pages/category/category.vue
View file @
d10786c0
...
...
@@ -69,6 +69,7 @@
},
onLoad
()
{
this
.
init
()
this
.
buryingPoint
(
'app:category_pageView'
)
},
methods
:
{
init
(){
...
...
pages/detailResult/detailResult.vue
View file @
d10786c0
...
...
@@ -18,6 +18,9 @@
}
},
onLoad
()
{
this
.
buryingPoint
(
'app:detailResult_pageView'
)
},
methods
:
{
goBtn
(){
this
.
Go
(
'uni:/pages/index/index'
,
'tab'
)
...
...
pages/index/index.vue
View file @
d10786c0
...
...
@@ -146,6 +146,7 @@ export default {
// 首页流量埋点
this
.
buryingPoint
(
'app:index_page_view'
)
this
.
buryingPoint
(
'app:index_pageView'
)
await
this
.
initAjax
();
initSettings
()
...
...
pages/login/login.vue
View file @
d10786c0
...
...
@@ -50,6 +50,7 @@ export default {
},
onLoad
()
{
this
.
init
()
this
.
buryingPoint
(
'app:login_pageView'
)
},
methods
:
{
init
()
{
...
...
pages/lookGoods/lookGoods.vue
View file @
d10786c0
...
...
@@ -71,7 +71,7 @@
this
.
titleText
=
options
.
loanStatus
this
.
goodType
=
2
}
this
.
buryingPoint
(
'app:lookGoods_pageView'
)
this
.
init
()
},
methods
:
{
...
...
pages/my/index.vue
View file @
d10786c0
...
...
@@ -72,6 +72,7 @@ export default {
this
.
initPawn
()
},
onShow
()
{
this
.
buryingPoint
(
'app:my_pageView'
)
this
.
init
();
this
.
initPawn
()
},
...
...
pages/myneed/myneed.vue
View file @
d10786c0
...
...
@@ -33,7 +33,7 @@
}
},
onLoad
()
{
this
.
buryingPoint
(
'app:myneed_pageView'
)
},
methods
:
{
needSubmit
(){
...
...
pages/productDetails/productDetails.vue
View file @
d10786c0
...
...
@@ -91,6 +91,7 @@
},
onLoad
(
options
)
{
const
token
=
uni
.
getStorageSync
(
'token'
)
this
.
buryingPoint
(
'app:productDetails_pageView'
)
this
.
token
=
token
if
(
options
){
const
{
goodId
,
}
=
JSON
.
parse
(
options
.
mydata
)
...
...
pages/prolist/prolist.vue
View file @
d10786c0
...
...
@@ -21,7 +21,7 @@
if
(
options
){
this
.
proList
=
JSON
.
parse
(
options
.
mydata
)
}
this
.
buryingPoint
(
'app:prolist_pageView'
)
},
methods
:
{
...
...
pages/recruit/index.vue
View file @
d10786c0
...
...
@@ -31,7 +31,8 @@
}
},
onLoad
()
{
console
.
log
(
'onLoad'
)
this
.
buryingPoint
(
'app:recruit_pageView'
)
},
methods
:
{
goSubmit
(){
...
...
@@ -99,6 +100,7 @@
}
},
onShow
()
{
console
.
log
(
'onshow'
)
}
}
...
...
pages/recruitResult/index.vue
View file @
d10786c0
...
...
@@ -18,6 +18,9 @@
}
},
onLoad
(){
this
.
buryingPoint
(
'app:recruitResult_pageView'
)
},
methods
:
{
goBtn
(){
this
.
Go
(
'uni:/pages/index/index'
,
'tab'
)
...
...
pages/setting/setting.vue
View file @
d10786c0
...
...
@@ -80,6 +80,7 @@
onLoad
()
{
let
self
=
this
;
self
.
init
()
self
.
buryingPoint
(
'app:setting_pageView'
)
self
.
token
=
uni
.
getStorageSync
(
'token'
)
plus
.
cache
.
calculate
(
size
=>
{
if
(
size
<
1024
)
{
...
...
pages/sort/index.vue
View file @
d10786c0
...
...
@@ -139,6 +139,7 @@
}
},
onShow
()
{
this
.
buryingPoint
(
'app:sort_pageView'
)
this
.
init
()
this
.
initSearch
()
initSettings
()
...
...
pages/useFeed/useFeed.vue
View file @
d10786c0
...
...
@@ -27,6 +27,9 @@ export default {
desQuest
:
''
}
},
onLoad
()
{
this
.
buryingPoint
(
'app:useFeed_pageView'
)
},
methods
:
{
needSubmit
()
{
const
content
=
this
.
desQuest
;
...
...
unpackage/dist/dev/app-plus/app-service.js
View file @
d10786c0
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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