Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
sheng du
ghpay
Commits
88ca2d9c
Commit
88ca2d9c
authored
1 year ago
by
sheng du
Browse files
Options
Download
Email Patches
Plain Diff
支付宝支付调试
parent
13777da5
Changes
74
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
91 additions
and
11 deletions
+91
-11
config/index.js
config/index.js
+5
-3
manifest.json
manifest.json
+4
-5
pages/pay/pay.vue
pages/pay/pay.vue
+13
-3
unpackage/dist/build/.automator/mp-alipay/.automator.json
unpackage/dist/build/.automator/mp-alipay/.automator.json
+0
-0
unpackage/dist/build/mp-alipay/.mini-ide/compileMode.json
unpackage/dist/build/mp-alipay/.mini-ide/compileMode.json
+10
-0
unpackage/dist/build/mp-alipay/app.acss
unpackage/dist/build/mp-alipay/app.acss
+2
-0
unpackage/dist/build/mp-alipay/app.js
unpackage/dist/build/mp-alipay/app.js
+4
-0
unpackage/dist/build/mp-alipay/app.json
unpackage/dist/build/mp-alipay/app.json
+16
-0
unpackage/dist/build/mp-alipay/common/main.acss
unpackage/dist/build/mp-alipay/common/main.acss
+1
-0
unpackage/dist/build/mp-alipay/common/main.js
unpackage/dist/build/mp-alipay/common/main.js
+1
-0
unpackage/dist/build/mp-alipay/common/runtime.js
unpackage/dist/build/mp-alipay/common/runtime.js
+4
-0
unpackage/dist/build/mp-alipay/common/vendor.js
unpackage/dist/build/mp-alipay/common/vendor.js
+14
-0
unpackage/dist/build/mp-alipay/mini.project.json
unpackage/dist/build/mp-alipay/mini.project.json
+6
-0
unpackage/dist/build/mp-alipay/pages/content/content.acss
unpackage/dist/build/mp-alipay/pages/content/content.acss
+1
-0
unpackage/dist/build/mp-alipay/pages/content/content.axml
unpackage/dist/build/mp-alipay/pages/content/content.axml
+1
-0
unpackage/dist/build/mp-alipay/pages/content/content.js
unpackage/dist/build/mp-alipay/pages/content/content.js
+1
-0
unpackage/dist/build/mp-alipay/pages/content/content.json
unpackage/dist/build/mp-alipay/pages/content/content.json
+5
-0
unpackage/dist/build/mp-alipay/pages/index/index.acss
unpackage/dist/build/mp-alipay/pages/index/index.acss
+1
-0
unpackage/dist/build/mp-alipay/pages/index/index.axml
unpackage/dist/build/mp-alipay/pages/index/index.axml
+1
-0
unpackage/dist/build/mp-alipay/pages/index/index.js
unpackage/dist/build/mp-alipay/pages/index/index.js
+1
-0
No files found.
config/index.js
View file @
88ca2d9c
export
default
{
//
url: 'https://testmomp.
hklcn.com', // 测试
url
:
'
https://momp.
hklcn
.com
'
,
// 正式用 (上线时需要替换的)
url
:
'
https://testmomp.
cqringpark.com
'
,
// 正式用 (上线时需要替换的)
//
url: 'https://momp.
cqringpark
.com', // 正式用 (上线时需要替换的)
// url: 'http://172.16.0.6:81',
// url: 'http://172.16.0.124',
grayUrl
:
'
https://grmomp.hklcn.com
'
// 灰度服务器
// grayUrl: 'https://grmomp.hklcn.com' ,// 灰度服务器
// grayUrl: 'https://grmomp.cqringpark.com' ,// 灰度服务器
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
manifest.json
View file @
88ca2d9c
{
"name"
:
"hudong_pay"
,
"appid"
:
"__UNI__
E
AA
F5CD
"
,
"appid"
:
"__UNI__AA
379D3
"
,
"description"
:
""
,
"versionName"
:
"1.0.0"
,
"versionCode"
:
"100"
,
...
...
@@ -49,9 +49,7 @@
/*
快应用特有相关
*/
"quickapp"
:
{},
/*
小程序特有相关
*/
"mp-weixin"
:
{
//
wx
58
c
8
d
1
c
0
a
08
a
9
ba
0
//
wxf
90
d
41
c
9
ac
009050
"mp-weixin"
:
{
"appid"
:
"wx58c8d1c0a08a9ba0"
,
"setting"
:
{
"urlCheck"
:
true
,
...
...
@@ -61,7 +59,8 @@
"usingComponents"
:
true
},
"mp-alipay"
:
{
"usingComponents"
:
true
"usingComponents"
:
true
,
"appid"
:
"2021004131620799"
},
"mp-baidu"
:
{
"usingComponents"
:
true
...
...
This diff is collapsed.
Click to expand it.
pages/pay/pay.vue
View file @
88ca2d9c
...
...
@@ -43,19 +43,29 @@
},
methods
:
{
pay
()
{
let
pay_mode
=
9
//#ifdef MP-WEIXIN
pay_mode
=
9
//#endif
//#ifdef MP-ALIPAY
pay_mode
=
10
//#endif
let
that
=
this
wx
.
login
({
uni
.
login
({
success
(
res
)
{
if
(
res
.
code
)
{
console
.
log
(
res
);
http
.
post
(
'
/api/icbcpay/mini
'
,
{
code
:
res
.
code
,
pay_order_id
:
that
.
pay_order_id
,
pay_mode
:
pay_mode
}).
then
(
payInfo
=>
{
console
.
log
(
payInfo
.
data
.
timeStamp
,
payInfo
.
data
.
nonceStr
,
payInfo
.
data
.
package
,
payInfo
.
data
.
signType
,
payInfo
.
data
.
sign
);
if
(
payInfo
.
data
?.
sign
)
{
.
package
,
payInfo
.
data
.
signType
,
payInfo
.
data
.
sign
,
payInfo
.
data
.
zfb_data_package
);
if
(
payInfo
.
data
)
{
uni
.
requestPayment
({
orderInfo
:
payInfo
.
data
.
zfb_data_package
,
timeStamp
:
payInfo
.
data
.
timestamp
,
nonceStr
:
payInfo
.
data
.
noncestr
,
package
:
payInfo
.
data
.
package
,
...
...
This diff is collapsed.
Click to expand it.
unpackage/dist/build/.automator/mp-alipay/.automator.json
0 → 100644
View file @
88ca2d9c
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/.mini-ide/compileMode.json
0 → 100644
View file @
88ca2d9c
{
"modes"
:
[
{
"title"
:
"怡动"
,
"page"
:
"pages/pay/pay"
,
"launchMode"
:
"common"
,
"pageQuery"
:
"url=https://testmomp.cqringpark.com&pay_order_id=SQ17062555377462&token=253ca6d9e1165db718dbbe1a7a2bec1c"
}
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/app.acss
0 → 100644
View file @
88ca2d9c
@import './common/main.acss';
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/app.js
0 → 100644
View file @
88ca2d9c
require
(
'
./common/runtime.js
'
)
require
(
'
./common/vendor.js
'
)
require
(
'
./common/main.js
'
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/app.json
0 → 100644
View file @
88ca2d9c
{
"pages"
:
[
"pages/index/index"
,
"pages/pay/pay"
,
"pages/content/content"
],
"subPackages"
:
[],
"window"
:
{
"defaultTitle"
:
"怡动"
,
"titleBarColor"
:
"#F8F8F8"
,
"backgroundColor"
:
"#F8F8F8"
},
"usingComponents"
:
{
"plugin-wrapper"
:
"/plugin-wrapper"
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/common/main.acss
0 → 100644
View file @
88ca2d9c
page::after{position:fixed;content:'';left:-1000px;top:-1000px;-webkit-animation:shadow-preload .1s;-webkit-animation-delay:3s;animation:shadow-preload .1s;animation-delay:3s}@-webkit-keyframes shadow-preload{0%{background-image:url(https://cdn2.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn2.dcloud.net.cn/img/shadow-grey.png)}}@keyframes shadow-preload{0%{background-image:url(https://cdn2.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn2.dcloud.net.cn/img/shadow-grey.png)}}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/common/main.js
0 → 100644
View file @
88ca2d9c
(
my
[
"
webpackJsonp
"
]
=
my
[
"
webpackJsonp
"
]
||
[]).
push
([[
"
common/main
"
],{
"
1fc7
"
:
function
(
e
,
t
,
n
){
"
use strict
"
;(
function
(
e
){
var
t
=
n
(
"
4ea4
"
),
o
=
t
(
n
(
"
9523
"
));
n
(
"
3201
"
);
var
r
=
t
(
n
(
"
4d13
"
)),
c
=
t
(
n
(
"
66fd
"
));
function
u
(
e
,
t
){
var
n
=
Object
.
keys
(
e
);
if
(
Object
.
getOwnPropertySymbols
){
var
o
=
Object
.
getOwnPropertySymbols
(
e
);
t
&&
(
o
=
o
.
filter
((
function
(
t
){
return
Object
.
getOwnPropertyDescriptor
(
e
,
t
).
enumerable
}))),
n
.
push
.
apply
(
n
,
o
)}
return
n
}
n
(
"
71ce
"
),
my
.
__webpack_require_UNI_MP_PLUGIN__
=
n
,
c
.
default
.
config
.
productionTip
=!
1
,
r
.
default
.
mpType
=
"
app
"
;
var
f
=
new
c
.
default
(
function
(
e
){
for
(
var
t
=
1
;
t
<
arguments
.
length
;
t
++
){
var
n
=
null
!=
arguments
[
t
]?
arguments
[
t
]:{};
t
%
2
?
u
(
Object
(
n
),
!
0
).
forEach
((
function
(
t
){(
0
,
o
.
default
)(
e
,
t
,
n
[
t
])})):
Object
.
getOwnPropertyDescriptors
?
Object
.
defineProperties
(
e
,
Object
.
getOwnPropertyDescriptors
(
n
)):
u
(
Object
(
n
)).
forEach
((
function
(
t
){
Object
.
defineProperty
(
e
,
t
,
Object
.
getOwnPropertyDescriptor
(
n
,
t
))}))}
return
e
}({},
r
.
default
));
e
(
f
).
$mount
()}).
call
(
this
,
n
(
"
c11b
"
)[
"
createApp
"
])},
"
3e9f
"
:
function
(
e
,
t
,
n
){
"
use strict
"
;
Object
.
defineProperty
(
t
,
"
__esModule
"
,{
value
:
!
0
}),
t
.
default
=
void
0
;
var
o
=
{
onLaunch
:
function
(){
console
.
log
(
"
App Launch
"
)},
onShow
:
function
(){
console
.
log
(
"
App Show
"
)},
onHide
:
function
(){
console
.
log
(
"
App Hide
"
)}};
t
.
default
=
o
},
"
4d13
"
:
function
(
e
,
t
,
n
){
"
use strict
"
;
n
.
r
(
t
);
var
o
=
n
(
"
5560
"
);
for
(
var
r
in
o
)[
"
default
"
].
indexOf
(
r
)
<
0
&&
function
(
e
){
n
.
d
(
t
,
e
,(
function
(){
return
o
[
e
]}))}(
r
);
n
(
"
f16d
"
);
var
c
=
n
(
"
f0c5
"
),
u
=
Object
(
c
[
"
a
"
])(
o
[
"
default
"
],
void
0
,
void
0
,
!
1
,
null
,
null
,
null
,
!
1
,
void
0
,
void
0
);
t
[
"
default
"
]
=
u
.
exports
},
5560
:
function
(
e
,
t
,
n
){
"
use strict
"
;
n
.
r
(
t
);
var
o
=
n
(
"
3e9f
"
),
r
=
n
.
n
(
o
);
for
(
var
c
in
o
)[
"
default
"
].
indexOf
(
c
)
<
0
&&
function
(
e
){
n
.
d
(
t
,
e
,(
function
(){
return
o
[
e
]}))}(
c
);
t
[
"
default
"
]
=
r
.
a
},
f16d
:
function
(
e
,
t
,
n
){
"
use strict
"
;
var
o
=
n
(
"
fe95
"
),
r
=
n
.
n
(
o
);
r
.
a
},
fe95
:
function
(
e
,
t
,
n
){}},[[
"
1fc7
"
,
"
common/runtime
"
,
"
common/vendor
"
]]]);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/common/runtime.js
0 → 100644
View file @
88ca2d9c
!
function
(){
try
{
var
a
=
Function
(
"
return this
"
)();
a
&&!
a
.
Math
&&
(
Object
.
assign
(
a
,{
isFinite
:
isFinite
,
Array
:
Array
,
Date
:
Date
,
Error
:
Error
,
Function
:
Function
,
Math
:
Math
,
Object
:
Object
,
RegExp
:
RegExp
,
String
:
String
,
TypeError
:
TypeError
,
setTimeout
:
setTimeout
,
clearTimeout
:
clearTimeout
,
setInterval
:
setInterval
,
clearInterval
:
clearInterval
}),
"
undefined
"
!=
typeof
Reflect
&&
(
a
.
Reflect
=
Reflect
))}
catch
(
a
){}}();
(
function
(
e
){
function
r
(
r
){
for
(
var
n
,
l
,
i
=
r
[
0
],
a
=
r
[
1
],
f
=
r
[
2
],
c
=
0
,
s
=
[];
c
<
i
.
length
;
c
++
)
l
=
i
[
c
],
Object
.
prototype
.
hasOwnProperty
.
call
(
o
,
l
)
&&
o
[
l
]
&&
s
.
push
(
o
[
l
][
0
]),
o
[
l
]
=
0
;
for
(
n
in
a
)
Object
.
prototype
.
hasOwnProperty
.
call
(
a
,
n
)
&&
(
e
[
n
]
=
a
[
n
]);
p
&&
p
(
r
);
while
(
s
.
length
)
s
.
shift
()();
return
u
.
push
.
apply
(
u
,
f
||
[]),
t
()}
function
t
(){
for
(
var
e
,
r
=
0
;
r
<
u
.
length
;
r
++
){
for
(
var
t
=
u
[
r
],
n
=!
0
,
i
=
1
;
i
<
t
.
length
;
i
++
){
var
a
=
t
[
i
];
0
!==
o
[
a
]
&&
(
n
=!
1
)}
n
&&
(
u
.
splice
(
r
--
,
1
),
e
=
l
(
l
.
s
=
t
[
0
]))}
return
e
}
var
n
=
{},
o
=
{
"
common/runtime
"
:
0
},
u
=
[];
function
l
(
r
){
if
(
n
[
r
])
return
n
[
r
].
exports
;
var
t
=
n
[
r
]
=
{
i
:
r
,
l
:
!
1
,
exports
:{}};
return
e
[
r
].
call
(
t
.
exports
,
t
,
t
.
exports
,
l
),
t
.
l
=!
0
,
t
.
exports
}
l
.
m
=
e
,
l
.
c
=
n
,
l
.
d
=
function
(
e
,
r
,
t
){
l
.
o
(
e
,
r
)
||
Object
.
defineProperty
(
e
,
r
,{
enumerable
:
!
0
,
get
:
t
})},
l
.
r
=
function
(
e
){
"
undefined
"
!==
typeof
Symbol
&&
Symbol
.
toStringTag
&&
Object
.
defineProperty
(
e
,
Symbol
.
toStringTag
,{
value
:
"
Module
"
}),
Object
.
defineProperty
(
e
,
"
__esModule
"
,{
value
:
!
0
})},
l
.
t
=
function
(
e
,
r
){
if
(
1
&
r
&&
(
e
=
l
(
e
)),
8
&
r
)
return
e
;
if
(
4
&
r
&&
"
object
"
===
typeof
e
&&
e
&&
e
.
__esModule
)
return
e
;
var
t
=
Object
.
create
(
null
);
if
(
l
.
r
(
t
),
Object
.
defineProperty
(
t
,
"
default
"
,{
enumerable
:
!
0
,
value
:
e
}),
2
&
r
&&
"
string
"
!=
typeof
e
)
for
(
var
n
in
e
)
l
.
d
(
t
,
n
,
function
(
r
){
return
e
[
r
]}.
bind
(
null
,
n
));
return
t
},
l
.
n
=
function
(
e
){
var
r
=
e
&&
e
.
__esModule
?
function
(){
return
e
[
"
default
"
]}:
function
(){
return
e
};
return
l
.
d
(
r
,
"
a
"
,
r
),
r
},
l
.
o
=
function
(
e
,
r
){
return
Object
.
prototype
.
hasOwnProperty
.
call
(
e
,
r
)},
l
.
p
=
"
/
"
;
var
i
=
my
[
"
webpackJsonp
"
]
=
my
[
"
webpackJsonp
"
]
||
[],
a
=
i
.
push
.
bind
(
i
);
i
.
push
=
r
,
i
=
i
.
slice
();
for
(
var
f
=
0
;
f
<
i
.
length
;
f
++
)
r
(
i
[
f
]);
var
p
=
a
;
t
()})([]);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/common/vendor.js
0 → 100644
View file @
88ca2d9c
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/mini.project.json
0 → 100644
View file @
88ca2d9c
{
"format"
:
2
,
"compileOptions"
:
{
"component2"
:
true
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/pages/content/content.acss
0 → 100644
View file @
88ca2d9c
.padding.data-v-4da76a1e{width:100%;padding:56rpx 30rpx;box-sizing:border-box}.logo.data-v-4da76a1e{width:100%;height:190rpx;display:flex;align-items:center;justify-content:center;background-color:#19907c}.content.data-v-4da76a1e{width:100%;font-size:24rpx;color:#444;line-height:52rpx}.content ._img.data-v-4da76a1e{width:100%;margin-top:15px}.content .dec.data-v-4da76a1e{padding-top:48rpx}.content .big.data-v-4da76a1e{font-size:36rpx;font-weight:700}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/pages/content/content.axml
0 → 100644
View file @
88ca2d9c
<view class="padding data-v-4da76a1e"><view class="logo data-v-4da76a1e"></view><view class="content data-v-4da76a1e"><image src="{{$root.m0}}" alt class="_img data-v-4da76a1e"></image><view class="dec data-v-4da76a1e"><text class="big data-v-4da76a1e">光环</text>,充满生机,孕育着新的可能,它是一座城市的灵感栖息地,将城市的全新面貌展现在世人面前。</view><view class="dec data-v-4da76a1e">光环,是宇宙中的星际光辉,是对未知的无尽探索,用光的画笔,勾勒出未来城市生活的无限可能。</view><image src="{{$root.m1}}" alt class="_img data-v-4da76a1e"></image><view class="dec data-v-4da76a1e" style="color:#19907C;">光环,是围绕在发光体周围明亮的环状轨道,它以璀璨之姿,层层影响着周边人群,商业和区域环境的发展与变化,引领了全新的城市生活方式。</view><view class="dec data-v-4da76a1e">光环,源于自然,在这里发现城市与生态和谐交融,激发人们探寻生活的本真。</view><image src="{{$root.m2}}" alt class="_img data-v-4da76a1e"></image><view class="dec data-v-4da76a1e">光环,是闪耀的,也是温暖的,它悄然入心,知你所想,与你共同感受城市的温度,也带你享受专属于你的丰富独特体验。</view><view class="dec data-v-4da76a1e">光环,它自由延伸,无限变化,它超越地域的限制,将热情,温度和想象力渗透进人们的生活。光环,与“中环”一起,缔造了一个又一个伟大的城市地标,将香港置地的光环效应辐射到更大的半径。</view></view></view>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/pages/content/content.js
0 → 100644
View file @
88ca2d9c
(
my
[
"
webpackJsonp
"
]
=
my
[
"
webpackJsonp
"
]
||
[]).
push
([[
"
pages/content/content
"
],{
"
0131
"
:
function
(
t
,
n
,
e
){
"
use strict
"
;(
function
(
t
){
var
n
=
e
(
"
4ea4
"
);
e
(
"
3201
"
);
n
(
e
(
"
66fd
"
));
var
c
=
n
(
e
(
"
0d49
"
));
my
.
__webpack_require_UNI_MP_PLUGIN__
=
e
,
t
(
c
.
default
)}).
call
(
this
,
e
(
"
c11b
"
)[
"
createPage
"
])},
"
0d49
"
:
function
(
t
,
n
,
e
){
"
use strict
"
;
e
.
r
(
n
);
var
c
=
e
(
"
ab95
"
),
u
=
e
(
"
db0e
"
);
for
(
var
a
in
u
)[
"
default
"
].
indexOf
(
a
)
<
0
&&
function
(
t
){
e
.
d
(
n
,
t
,(
function
(){
return
u
[
t
]}))}(
a
);
e
(
"
defe
"
);
var
r
=
e
(
"
f0c5
"
),
i
=
Object
(
r
[
"
a
"
])(
u
[
"
default
"
],
c
[
"
b
"
],
c
[
"
c
"
],
!
1
,
null
,
"
4da76a1e
"
,
null
,
!
1
,
c
[
"
a
"
],
void
0
);
n
[
"
default
"
]
=
i
.
exports
},
7920
:
function
(
t
,
n
,
e
){},
ab95
:
function
(
t
,
n
,
e
){
"
use strict
"
;
e
.
d
(
n
,
"
b
"
,(
function
(){
return
c
})),
e
.
d
(
n
,
"
c
"
,(
function
(){
return
u
})),
e
.
d
(
n
,
"
a
"
,(
function
(){}));
var
c
=
function
(){
var
t
=
this
.
$createElement
,
n
=
(
this
.
_self
.
_c
,
e
(
"
dc44
"
)),
c
=
e
(
"
cc85
"
),
u
=
e
(
"
5d63
"
);
this
.
$mp
.
data
=
Object
.
assign
({},{
$root
:{
m0
:
n
,
m1
:
c
,
m2
:
u
}})},
u
=
[]},
d233
:
function
(
t
,
n
,
e
){
"
use strict
"
;
Object
.
defineProperty
(
n
,
"
__esModule
"
,{
value
:
!
0
}),
n
.
default
=
void
0
;
n
.
default
=
{
data
:
function
(){
return
{}},
methods
:{}}},
db0e
:
function
(
t
,
n
,
e
){
"
use strict
"
;
e
.
r
(
n
);
var
c
=
e
(
"
d233
"
),
u
=
e
.
n
(
c
);
for
(
var
a
in
c
)[
"
default
"
].
indexOf
(
a
)
<
0
&&
function
(
t
){
e
.
d
(
n
,
t
,(
function
(){
return
c
[
t
]}))}(
a
);
n
[
"
default
"
]
=
u
.
a
},
defe
:
function
(
t
,
n
,
e
){
"
use strict
"
;
var
c
=
e
(
"
7920
"
),
u
=
e
.
n
(
c
);
u
.
a
}},[[
"
0131
"
,
"
common/runtime
"
,
"
common/vendor
"
]]]);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/pages/content/content.json
0 → 100644
View file @
88ca2d9c
{
"defaultTitle"
:
""
,
"pullRefresh"
:
false
,
"usingComponents"
:
{}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/pages/index/index.acss
0 → 100644
View file @
88ca2d9c
.back.data-v-69296e95{width:100%;height:100vh;background-color:#19907c;box-sizing:border-box;display:flex;align-items:center;justify-content:center;flex-flow:column}.btn.data-v-69296e95{width:360rpx;height:88rpx;border-radius:44rpx;background:#fff;font-size:28rpx;color:#19907c;display:flex;align-items:center;justify-content:center;margin-top:882rpx}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/pages/index/index.axml
0 → 100644
View file @
88ca2d9c
<view class="back data-v-69296e95"><button data-event-opts="{{[['tap',[['toContent',['$event']]]]]}}" class="btn data-v-69296e95" onTap="__e">查看简介</button></view>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unpackage/dist/build/mp-alipay/pages/index/index.js
0 → 100644
View file @
88ca2d9c
(
my
[
"
webpackJsonp
"
]
=
my
[
"
webpackJsonp
"
]
||
[]).
push
([[
"
pages/index/index
"
],{
"
06c8
"
:
function
(
n
,
t
,
e
){},
"
31e6
"
:
function
(
n
,
t
,
e
){
"
use strict
"
;
e
.
r
(
t
);
var
c
=
e
(
"
ae20
"
),
u
=
e
(
"
826b
"
);
for
(
var
a
in
u
)[
"
default
"
].
indexOf
(
a
)
<
0
&&
function
(
n
){
e
.
d
(
t
,
n
,(
function
(){
return
u
[
n
]}))}(
a
);
e
(
"
9c7c
"
);
var
i
=
e
(
"
f0c5
"
),
o
=
Object
(
i
[
"
a
"
])(
u
[
"
default
"
],
c
[
"
b
"
],
c
[
"
c
"
],
!
1
,
null
,
"
69296e95
"
,
null
,
!
1
,
c
[
"
a
"
],
void
0
);
t
[
"
default
"
]
=
o
.
exports
},
6494
:
function
(
n
,
t
,
e
){
"
use strict
"
;(
function
(
n
){
var
t
=
e
(
"
4ea4
"
);
e
(
"
3201
"
);
t
(
e
(
"
66fd
"
));
var
c
=
t
(
e
(
"
31e6
"
));
my
.
__webpack_require_UNI_MP_PLUGIN__
=
e
,
n
(
c
.
default
)}).
call
(
this
,
e
(
"
c11b
"
)[
"
createPage
"
])},
"
826b
"
:
function
(
n
,
t
,
e
){
"
use strict
"
;
e
.
r
(
t
);
var
c
=
e
(
"
c304
"
),
u
=
e
.
n
(
c
);
for
(
var
a
in
c
)[
"
default
"
].
indexOf
(
a
)
<
0
&&
function
(
n
){
e
.
d
(
t
,
n
,(
function
(){
return
c
[
n
]}))}(
a
);
t
[
"
default
"
]
=
u
.
a
},
"
9c7c
"
:
function
(
n
,
t
,
e
){
"
use strict
"
;
var
c
=
e
(
"
06c8
"
),
u
=
e
.
n
(
c
);
u
.
a
},
ae20
:
function
(
n
,
t
,
e
){
"
use strict
"
;
e
.
d
(
t
,
"
b
"
,(
function
(){
return
c
})),
e
.
d
(
t
,
"
c
"
,(
function
(){
return
u
})),
e
.
d
(
t
,
"
a
"
,(
function
(){}));
var
c
=
function
(){
var
n
=
this
.
$createElement
;
this
.
_self
.
_c
},
u
=
[]},
c304
:
function
(
n
,
t
,
e
){
"
use strict
"
;(
function
(
n
){
Object
.
defineProperty
(
t
,
"
__esModule
"
,{
value
:
!
0
}),
t
.
default
=
void
0
;
var
e
=
{
data
:
function
(){
return
{
title
:
"
Hello
"
}},
onLoad
:
function
(){},
methods
:{
toContent
:
function
(){
n
.
navigateTo
({
url
:
"
/pages/content/content
"
})}}};
t
.
default
=
e
}).
call
(
this
,
e
(
"
c11b
"
)[
"
default
"
])}},[[
"
6494
"
,
"
common/runtime
"
,
"
common/vendor
"
]]]);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Prev
1
2
3
4
Next
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