Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
言程序plus
uni-starter
提交
03b128f7
U
uni-starter
项目概览
言程序plus
/
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看板
提交
03b128f7
编写于
2月 06, 2023
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
删除多余的组件
上级
19d91730
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
75 deletion
+4
-75
changelog.md
changelog.md
+2
-0
manifest.json
manifest.json
+2
-2
uni_modules/uni-id-pages/components/cloud-image/cloud-image.vue
...dules/uni-id-pages/components/cloud-image/cloud-image.vue
+0
-73
未找到文件。
changelog.md
浏览文件 @
03b128f7
## 2.1.2(2023-02-06)
-
## 2.1.1(2023-02-02)
-
重要 分包加载uni-id-pages 优化后 运行时主包大小为:637KB 分包为:78KB,发布后主包大小为:585KB 分包为:75KB
-
新增 微信小程序端 支持选择使用微信资料的“头像”和“昵称” 设置用户资料
[
详情参考
](
https://wdoc-76491.picgzc.qpic.cn/MTY4ODg1MDUyNzQyMDUxNw_21263_rTNhg68FTngQGdvQ_1647431233?w=1280&h=695.7176470588236
)
...
...
manifest.json
浏览文件 @
03b128f7
{
"name"
:
"uni-starter"
,
"appid"
:
""
,
"appid"
:
"
__UNI__07F7150
"
,
"description"
:
"云端一体应用快速开发基本项目模版"
,
"versionName"
:
"1.0.0"
,
"versionCode"
:
"100"
,
...
...
@@ -46,7 +46,7 @@
},
"quickapp"
:
{},
"mp-weixin"
:
{
"appid"
:
""
,
"appid"
:
"
wx999bf02c8e05dfc9
"
,
"setting"
:
{
"urlCheck"
:
false
},
...
...
uni_modules/uni-id-pages/components/cloud-image/cloud-image.vue
已删除
100644 → 0
浏览文件 @
19d91730
<
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
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录