Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-starter
提交
5218159c
U
uni-starter
项目概览
DCloud
/
uni-starter
通知
4666
Star
228
Fork
210
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-starter
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
5218159c
编写于
1月 31, 2023
作者:
study夏羽
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
uni-id-pages分包
上级
b9b943ae
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
261 addition
and
182 deletion
+261
-182
components/cloud-image/cloud-image.vue
components/cloud-image/cloud-image.vue
+73
-0
manifest.json
manifest.json
+67
-67
pages.json
pages.json
+120
-114
pages/ucenter/ucenter.vue
pages/ucenter/ucenter.vue
+1
-1
未找到文件。
components/cloud-image/cloud-image.vue
0 → 100644
浏览文件 @
5218159c
<
template
>
<view
@
click=
"onClick"
:style=
"
{width,height}" style="justify-content: center;">
<image
v-if=
"cSrc"
:style=
"
{width,height}" :src="cSrc" :mode="mode">
</image>
</view>
</
template
>
<
script
>
/**
* cloud-image
* @description 兼容普通资源和unicloud图片资源渲染的组件
* @property {String} mode 图片裁剪、缩放的模式。默认为widthFix,支持所有image组件的mode值
* @property {String} src 资源完了链接或uniCloud云存储资源的fileid
* @property {String} width 图片的宽,默认为:100rpx
* @property {String} height 图片的高,默认为:100rpx
* @event {Function} click 点击 cloud-image 触发事件
*/
export
default
{
name
:
"
cloud-image
"
,
emits
:[
'
click
'
],
props
:
{
mode
:
{
type
:
String
,
default
()
{
return
'
widthFix
'
}
},
src
:
{
// type:String,
default
()
{
return
""
}
},
width
:
{
type
:
String
,
default
()
{
return
'
100rpx
'
}
},
height
:
{
type
:
String
,
default
()
{
return
'
100rpx
'
}
}
},
watch
:
{
src
:{
handler
(
src
)
{
if
(
src
&&
src
.
substring
(
0
,
8
)
==
"
cloud://
"
)
{
uniCloud
.
getTempFileURL
({
fileList
:
[
src
]
}).
then
(
res
=>
{
this
.
cSrc
=
res
.
fileList
[
0
].
tempFileURL
})
}
else
{
this
.
cSrc
=
src
}
},
immediate
:
true
}
},
methods
:{
onClick
(){
this
.
$emit
(
'
click
'
)
}
},
data
()
{
return
{
cSrc
:
false
};
}
}
</
script
>
\ No newline at end of file
manifest.json
浏览文件 @
5218159c
{
"name"
:
"
"
,
"appid"
:
""
,
"description"
:
"云端一体应用快速开发基本项目模版"
,
"versionName"
:
"
"
,
"versionCode"
:
"100"
,
"transformPx"
:
false
,
"app-plus"
:
{
"usingComponents"
:
true
,
"nvueStyleCompiler"
:
"uni-app"
,
"compilerVersion"
:
3
,
"splashscreen"
:
{
"alwaysShowBeforeRender"
:
true
,
"waiting"
:
true
,
"autoclose"
:
true
,
"delay"
:
0
"name"
:
"uni-starter
"
,
"appid"
:
""
,
"description"
:
"云端一体应用快速开发基本项目模版"
,
"versionName"
:
"1.0.0
"
,
"versionCode"
:
"100"
,
"transformPx"
:
false
,
"app-plus"
:
{
"usingComponents"
:
true
,
"nvueStyleCompiler"
:
"uni-app"
,
"compilerVersion"
:
3
,
"splashscreen"
:
{
"alwaysShowBeforeRender"
:
true
,
"waiting"
:
true
,
"autoclose"
:
true
,
"delay"
:
0
},
"modules"
:
{
},
"distribute"
:
{
"android"
:
{
"permissions"
:
[
"modules"
:
{},
"distribute"
:
{
"android"
:
{
"permissions"
:
[
"<uses-permission android:name=
\"
android.permission.CHANGE_NETWORK_STATE
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.MOUNT_UNMOUNT_FILESYSTEMS
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.VIBRATE
\"
/>"
,
...
...
@@ -37,35 +36,36 @@
"<uses-permission android:name=
\"
android.permission.WRITE_SETTINGS
\"
/>"
]
},
"ios"
:
{
},
"sdkConfigs"
:
{
"push"
:
{
"unipush"
:
null
"ios"
:
{},
"sdkConfigs"
:
{
"push"
:
{
"unipush"
:
null
}
}
}
},
"quickapp"
:
{
"quickapp"
:
{},
"mp-weixin"
:
{
"appid"
:
""
,
"setting"
:
{
"urlCheck"
:
false
},
"mp-weixin"
:
{
"appid"
:
""
,
"setting"
:
{
"urlCheck"
:
false
},
"usingComponents"
:
true
"usingComponents"
:
true
,
"optimization"
:
{
"subPackages"
:
true
}
},
"mp-alipay"
:
{
"usingComponents"
:
true
"mp-alipay"
:
{
"usingComponents"
:
true
},
"mp-baidu"
:
{
"usingComponents"
:
true
"mp-baidu"
:
{
"usingComponents"
:
true
},
"mp-toutiao"
:
{
"usingComponents"
:
true
"mp-toutiao"
:
{
"usingComponents"
:
true
},
"uniStatistics"
:
{
"enable"
:
false
"uniStatistics"
:
{
"enable"
:
false
},
"vueVersion"
:
"2"
"vueVersion"
:
"2"
}
pages.json
浏览文件 @
5218159c
...
...
@@ -45,8 +45,29 @@
"navigationStyle"
:
"custom"
}
},
//
#ifdef
APP-PLUS
{
"path"
:
"pages/uni-agree/uni-agree"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"app-plus"
:
{
"popGesture"
:
"none"
}
}
},
{
"path"
:
"pages/ucenter/settings/settings"
,
"style"
:
{
"navigationBarTitleText"
:
"设置"
}
},
{
"path"
:
"pages/ucenter/read-news-log/read-news-log"
,
"style"
:
{
"navigationBarTitleText"
:
"阅读记录"
,
"enablePullDownRefresh"
:
true
}
}
//
#ifdef
APP-PLUS
,
{
"path"
:
"pages/ucenter/about/about"
,
"style"
:
{
"navigationBarTitleText"
:
"关于"
,
...
...
@@ -81,123 +102,108 @@
"navigationStyle"
:
"custom"
,
"enablePullDownRefresh"
:
false
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/userinfo/deactivate/deactivate"
,
"style"
:
{
"navigationBarTitleText"
:
"注销账号"
}
},
//
#endif
//
#ifdef
H
5
{
"path"
:
"uni_modules/uni-id-pages/pages/userinfo/cropImage/cropImage"
,
],
"subPackages"
:
[{
"root"
:
"uni_modules/uni-feedback"
,
"pages"
:
[{
"path"
:
"pages/opendb-feedback/opendb-feedback"
,
"style"
:
{
"navigationBarTitleText"
:
""
"navigationBarTitleText"
:
"意见反馈"
,
"enablePullDownRefresh"
:
false
}
}]
},
{
"path"
:
"uni_modules/uni-id-pages/pages/register/register-admin"
,
"root"
:
"uni_modules/uni-id-pages"
,
"pages"
:
[{
"path"
:
"pages/userinfo/userinfo"
,
"style"
:
{
"enablePullDownRefresh"
:
false
,
"navigationBarTitleText"
:
"注册管理员账号"
"navigationBarTitleText"
:
"个人资料"
}
},
//
#endif
{
"path"
:
"pages/uni-agree/uni-agree"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"app-plus"
:
{
"popGesture"
:
"none"
}
}
},
{
"path"
:
"pages/ucenter/settings/settings"
,
"style"
:
{
"navigationBarTitleText"
:
"设置"
}
"path"
:
"pages/login/login-withoutpwd"
},
{
"path"
:
"pages/ucenter/read-news-log/read-news-log"
,
"style"
:
{
"navigationBarTitleText"
:
"阅读记录"
,
"enablePullDownRefresh"
:
true
}
"path"
:
"pages/login/login-withpwd"
},
{
"path"
:
"uni_modules/uni-feedback/pages/opendb-feedback/opendb-feedback
"
,
"path"
:
"pages/userinfo/deactivate/deactivate
"
,
"style"
:
{
"navigationBarTitleText"
:
"意见反馈"
,
"enablePullDownRefresh"
:
false
"navigationBarTitleText"
:
"注销账号"
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/userinfo/userinfo"
,
"style"
:
{
"navigationBarTitleText"
:
"个人资料"
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/userinfo/bind-mobile/bind-mobile"
,
"path"
:
"pages/userinfo/bind-mobile/bind-mobile"
,
"style"
:
{
"navigationBarTitleText"
:
"绑定手机号码"
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/login/login-withoutpwd"
,
"style"
:
{
"navigationBarTitleText"
:
""
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/login/login-withpwd"
,
"style"
:
{
"navigationBarTitleText"
:
""
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/login/login-smscode"
,
},
{
"path"
:
"pages/login/login-smscode"
,
"style"
:
{
"navigationBarTitleText"
:
"手机验证码登录"
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/register/register"
,
},
{
"path"
:
"pages/register/register"
,
"style"
:
{
"navigationBarTitleText"
:
"注册"
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/retrieve/retrieve"
,
},
{
"path"
:
"pages/retrieve/retrieve"
,
"style"
:
{
"navigationBarTitleText"
:
"重置密码"
}
},
{
"path"
:
"uni_modules/uni-id-pages/
pages/common/webview/webview"
,
"path"
:
"
pages/common/webview/webview"
,
"style"
:
{
"enablePullDownRefresh"
:
false
,
"navigationBarTitleText"
:
""
}
},
{
"path"
:
"uni_modules/uni-id-pages/
pages/userinfo/change_pwd/change_pwd"
,
"path"
:
"
pages/userinfo/change_pwd/change_pwd"
,
"style"
:
{
"enablePullDownRefresh"
:
false
,
"navigationBarTitleText"
:
"修改密码"
}
},
{
"path"
:
"uni_modules/uni-id-pages/
pages/register/register-by-email"
,
"path"
:
"
pages/register/register-by-email"
,
"style"
:
{
"navigationBarTitleText"
:
"邮箱验证码注册"
}
},
{
"path"
:
"uni_modules/uni-id-pages/
pages/retrieve/retrieve-by-email"
,
"path"
:
"
pages/retrieve/retrieve-by-email"
,
"style"
:
{
"navigationBarTitleText"
:
"通过邮箱重置密码"
}
},
{
"path"
:
"uni_modules/uni-id-pages/pages/userinfo/set-pwd/set-pwd"
,
"path"
:
"pages/userinfo/set-pwd/set-pwd"
,
"style"
:
{
"enablePullDownRefresh"
:
false
,
"navigationBarTitleText"
:
"设置密码"
}
}
],
//
#ifdef
H
5
,
{
"path"
:
"pages/userinfo/cropImage/cropImage"
},
{
"path"
:
"pages/register/register-admin"
,
"style"
:
{
"enablePullDownRefresh"
:
false
,
"navigationBarTitleText"
:
"注册管理员账号"
}
}
//
#endif
]
}
],
"globalStyle"
:
{
//
#ifdef
H
5
"h5"
:
{
...
...
pages/ucenter/ucenter.vue
浏览文件 @
5218159c
...
...
@@ -378,7 +378,7 @@
.defaultAvatarUrl
{
width
:
150rpx
;
height
:
150rpx
;
background-color
:
rgb
(
0
,
122
,
255
)
;
background-color
:
#007aff
;
border-radius
:
100%
;
justify-content
:
center
;
align-items
:
center
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录