Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
德宏大魔王
uni-starter
提交
32c7e51a
U
uni-starter
项目概览
德宏大魔王
/
uni-starter
与 Fork 源项目一致
Fork自
DCloud / uni-starter
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-starter
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
32c7e51a
编写于
4月 13, 2021
作者:
L
linju
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
21
上级
8061d7b8
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
68 addition
and
34 deletion
+68
-34
pages.json
pages.json
+11
-11
pages/test/test.vue
pages/test/test.vue
+31
-3
uni_modules/opendb-feedback/uniCloud/database/opendb-feedback.schema.json
...db-feedback/uniCloud/database/opendb-feedback.schema.json
+4
-4
uni_modules/uni-login-page/pages/index/index.vue
uni_modules/uni-login-page/pages/index/index.vue
+20
-14
uni_modules/uni-quick-login/components/uni-quick-login/uni-quick-login.vue
...uick-login/components/uni-quick-login/uni-quick-login.vue
+2
-2
未找到文件。
pages.json
浏览文件 @
32c7e51a
...
...
@@ -206,17 +206,17 @@
"navigationBarBackgroundColor"
:
"#FFFFFF"
,
"backgroundColor"
:
"#F8F8F8"
},
//
"condition"
:
{
//
"list"
:
[
//
{
//
"path"
:
"uni_modules/uni-login-page/pages/index/index"
//
},
//
{
//
"path"
:
"pages/test/test"
//
}
//
],
//
"current"
:
0
//
},
"condition"
:
{
"list"
:
[
{
"path"
:
"uni_modules/uni-login-page/pages/index/index"
},
{
"path"
:
"pages/test/test"
}
],
"current"
:
1
},
"tabBar"
:
{
"color"
:
"#7A7E83"
,
"selectedColor"
:
"#007AFF"
,
...
...
pages/test/test.vue
浏览文件 @
32c7e51a
<
template
>
<view>
test
<button
type=
"default"
@
click=
"fn1"
>
1
</button>
<button
type=
"default"
@
click=
"openMoblie"
>
打开移动网络
</button>
<!--
<button
type=
"default"
@
click=
"fn1"
>
1
</button>
<button
type=
"default"
@
click=
"fn2"
>
2
</button>
</view>
-->
</view>
</
template
>
<
script
>
...
...
@@ -14,9 +15,36 @@
}
},
onLoad
()
{
// 设备网络状态变化事件
uni
.
onNetworkStatusChange
(
function
(
res
)
{
console
.
log
(
res
.
isConnected
);
console
.
log
(
res
.
networkType
);
if
(
!
res
.
isConnected
){
uni
.
showModal
({
content
:
"
你未打开网络连接
"
,
confirmText
:
"
前往打开
"
,
complete
:
(
e
)
=>
{
console
.
log
(
e
);
if
(
uni
.
getSystemInfoSync
().
platform
==
"
ios
"
)
{
}
else
{
var
main
=
plus
.
android
.
runtimeMainActivity
();
var
Intent
=
plus
.
android
.
importClass
(
"
android.content.Intent
"
);
var
mIntent
=
new
Intent
(
'
android.settings.DATA_ROAMING_SETTINGS
'
);
main
.
startActivity
(
mIntent
);
}
}
});
}
});
},
methods
:
{
openWifi
(){
var
main
=
plus
.
android
.
runtimeMainActivity
();
var
Intent
=
plus
.
android
.
importClass
(
"
android.content.Intent
"
);
var
mIntent
=
new
Intent
(
'
android.settings.WIFI_SETTINGS
'
);
main
.
startActivity
(
mIntent
);
},
fn1
(){
let
res
=
this
.
request
(
'
user-center/login_by_
'
).
then
(
e
=>
{
console
.
log
(
'
then--1
'
,
e
);
...
...
uni_modules/opendb-feedback/uniCloud/database/opendb-feedback.schema.json
浏览文件 @
32c7e51a
{
"bsonType"
:
"object"
,
"permission"
:
{
"read"
:
"
!doc.is_reply
"
,
"read"
:
"
doc.is_reply == false
"
,
"create"
:
true
,
"update"
:
false
,
"delete"
:
false
...
...
@@ -17,9 +17,9 @@
"forceDefaultValue"
:
{
"$env"
:
"uid"
}
},
"title"
:
{
"description"
:
"反馈标题(用于列表展示)"
},
"title"
:
{
"description"
:
"反馈标题(用于列表展示)"
},
"ip"
:
{
"forceDefaultValue"
:
{
...
...
uni_modules/uni-login-page/pages/index/index.vue
浏览文件 @
32c7e51a
...
...
@@ -38,7 +38,8 @@
</view>
</template>
<
script
>
<
script
>
const
univerify_first
=
true
import
mixin
from
'
../../common/loginPage.mixin.js
'
;
var
currentPage
;
export
default
{
...
...
@@ -46,26 +47,31 @@
data
()
{
return
{
phoneArea
:
[
'
+86
'
],
currenPhoneArea
:
'
+86
'
,
currenPhoneArea
:
'
+86
'
,
}
},
onLoad
()
{
//#ifdef APP-PLUS
let
pages
=
getCurrentPages
();
currentPage
=
pages
[
pages
.
length
-
1
];
currentPage
.
$getAppWebview
().
setStyle
({
top
:
"
1000px
"
})
//#ifdef APP-PLUS
if
(
univerify_first
){
let
pages
=
getCurrentPages
();
currentPage
=
pages
[
pages
.
length
-
1
];
currentPage
.
$getAppWebview
().
setStyle
({
top
:
"
1000px
"
})
}
//#endif
},
onReady
()
{
this
.
$refs
.
uniQuickLogin
.
login
(
'
univerify
'
)
//#ifdef APP-PLUS
setTimeout
(()
=>
{
currentPage
.
$getAppWebview
().
setStyle
({
top
:
"
0
"
})
},
1500
);
if
(
univerify_first
){
this
.
$refs
.
uniQuickLogin
.
login
(
'
univerify
'
)
setTimeout
(()
=>
{
currentPage
.
$getAppWebview
().
setStyle
({
top
:
"
0
"
})
},
1500
);
}
//#endif
},
computed
:
{
...
...
uni_modules/uni-quick-login/components/uni-quick-login/uni-quick-login.vue
浏览文件 @
32c7e51a
...
...
@@ -59,11 +59,10 @@
mounted
()
{
//获取当前环境能用的快捷登陆方式
// #ifdef APP-PLUS
uni
.
showLoading
();
uni
.
showLoading
();
plus
.
oauth
.
getServices
(
oauthServices
=>
{
this
.
oauthServices
=
oauthServices
console
.
log
(
oauthServices
);
uni
.
hideLoading
()
},
err
=>
{
uni
.
hideLoading
()
uni
.
showModal
({
...
...
@@ -152,6 +151,7 @@
title
:
'
登陆成功
'
,
icon
:
'
none
'
});
uni
.
hideLoading
()
uni
.
navigateBack
()
}
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录