Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
hello_taobao
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
wildfirecode13
hello_taobao
Commits
9c9b815b
Commit
9c9b815b
authored
Sep 07, 2020
by
wildfirecode13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
e8f9cdbc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
3 deletions
+27
-3
config$.js
taobao/.tea/entryFiles-development/config$.js
+1
-1
index$.web.js
taobao/.tea/entryFiles-development/index$.web.js
+12
-1
index$.worker.js
taobao/.tea/entryFiles-development/index$.worker.js
+12
-1
app.js
taobao/app.js
+1
-0
app.json
taobao/app.json
+1
-0
No files found.
taobao/.tea/entryFiles-development/config$.js
View file @
9c9b815b
...
...
@@ -2,6 +2,6 @@
const
g
=
typeof
global
!==
'undefined'
?
global
:
self
;
g
.
appXAppJson
=
{
"app"
:
{
"$homepage"
:
"pages/
pagefrontpage/pagefrontpage
"
"$homepage"
:
"pages/
index/index
"
}
};
taobao/.tea/entryFiles-development/index$.web.js
View file @
9c9b815b
require
(
'@alipay/appx-compiler/lib/sjsEnvInit'
);
require
(
'./config$'
);
require
(
'../../pages/pagefrontpage/pagefrontpage?hash=32d7d2807ed4e666ef03b4b3fe8c38ecf2e34e68'
);
require
(
'../../components/ruleModal/ruleModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/commonModal/commonModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/endModal/endModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/logisticsModal/logisticsModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/prizeModal/prizeModal?hash=951cb6a7fcdd2a5332763295aa08b4f86b6fd2e1'
);
require
(
'../../components/countDownModal/countDownModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/goodsModal/goodsModal?hash=96e16713cabf2568fcec05d01c8320620028d753'
);
require
(
'../../pages/index/index?hash=75647a1ca05d716635459948f3761269d2180614'
);
require
(
'../../pages/testPage/testPage?hash=32d7d2807ed4e666ef03b4b3fe8c38ecf2e34e68'
);
require
(
'../../pages/tbccDemo/tbccDemo?hash=32d7d2807ed4e666ef03b4b3fe8c38ecf2e34e68'
);
require
(
'../../pages/myprize/myprize?hash=74b7edb09b315961bb13059a83b72836912bfd2c'
);
require
(
'../../pages/goodsPage/goodsPage?hash=c0b344ca1a847391fd4718c95c20dbe608f22e78'
);
taobao/.tea/entryFiles-development/index$.worker.js
View file @
9c9b815b
...
...
@@ -32,7 +32,18 @@ if(AFAppX.registerApp) {
function
success
()
{
require
(
'../../app'
);
require
(
'../../pages/pagefrontpage/pagefrontpage?hash=32d7d2807ed4e666ef03b4b3fe8c38ecf2e34e68'
);
require
(
'../../components/ruleModal/ruleModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/commonModal/commonModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/endModal/endModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/logisticsModal/logisticsModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/prizeModal/prizeModal?hash=951cb6a7fcdd2a5332763295aa08b4f86b6fd2e1'
);
require
(
'../../components/countDownModal/countDownModal?hash=05d2a9730dd6009bf9446182f9c985f40f8c0f43'
);
require
(
'../../components/goodsModal/goodsModal?hash=96e16713cabf2568fcec05d01c8320620028d753'
);
require
(
'../../pages/index/index?hash=75647a1ca05d716635459948f3761269d2180614'
);
require
(
'../../pages/testPage/testPage?hash=32d7d2807ed4e666ef03b4b3fe8c38ecf2e34e68'
);
require
(
'../../pages/tbccDemo/tbccDemo?hash=32d7d2807ed4e666ef03b4b3fe8c38ecf2e34e68'
);
require
(
'../../pages/myprize/myprize?hash=74b7edb09b315961bb13059a83b72836912bfd2c'
);
require
(
'../../pages/goodsPage/goodsPage?hash=c0b344ca1a847391fd4718c95c20dbe608f22e78'
);
}
self
.
bootstrapApp
?
self
.
bootstrapApp
({
success
})
:
success
();
}
\ No newline at end of file
taobao/app.js
View file @
9c9b815b
...
...
@@ -15,6 +15,7 @@ App({
},
onShow
(
options
)
{
// 从后台被 scheme 重新打开
console
.
log
(
'执行了app onshow'
)
},
/**
* 处理链接参数
...
...
taobao/app.json
View file @
9c9b815b
{
"pages"
:
[
"pages/index/index"
,
"pages/testPage/testPage"
,
"pages/tbccDemo/tbccDemo"
,
...
...
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