Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
01b16b8e
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
01b16b8e
编写于
12月 04, 2023
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev' of
https://gitcode.net/dcloud/hello-uni-app-x
into dev
上级
0acb2f23
35bc03bd
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
18 addition
and
9 deletion
+18
-9
pages/API/element-takesnapshot/element-takesnapshot.uvue
pages/API/element-takesnapshot/element-takesnapshot.uvue
+3
-1
pages/API/save-image-to-photos-album/save-image-to-photos-album.uvue
...ave-image-to-photos-album/save-image-to-photos-album.uvue
+2
-2
pages/tabBar/API.uvue
pages/tabBar/API.uvue
+10
-3
pages/template/list-news/list-news.uvue
pages/template/list-news/list-news.uvue
+3
-3
static/uni.png
static/uni.png
+0
-0
未找到文件。
pages/API/element-takesnapshot/element-takesnapshot.uvue
浏览文件 @
01b16b8e
...
...
@@ -7,7 +7,7 @@
<button class="uni-btn btn-TakeSnapshot" type="primary" @tap="takeSnapshotClick">
点击截图并替换显示下方图片
</button>
<image style="margin-
top: 20px;" :src="snapImage" mode="aspectFit
" @longpress="saveToAlbum"></image>
<image style="margin-
left:auto;margin-right:auto;margin-top:20px;width:90%;" :src="snapImage" :mode="mode
" @longpress="saveToAlbum"></image>
</view>
</template>
...
...
@@ -15,6 +15,7 @@
export default {
data() {
return {
mode: "center",//aspectFit
snapImage: "/static/uni.png"
}
},
...
...
@@ -25,6 +26,7 @@
success: function (res) {
console.log(res.tempFilePath)
this.snapImage = res.tempFilePath
this.mode = 'widthFix'
uni.showToast({
title: '截图成功,路径:' + res.tempFilePath,
icon: "none"
...
...
pages/API/save-image-to-photos-album/save-image-to-photos-album.uvue
浏览文件 @
01b16b8e
...
...
@@ -2,7 +2,7 @@
<!-- #ifdef APP -->
<scroll-view style="flex:1">
<!-- #endif -->
<image src="/static/uni.png" style="margin: 30rpx 200rpx;height:
350rpx;width: 350r
px;"></image>
<image src="/static/uni.png" style="margin: 30rpx 200rpx;height:
196px;width:196
px;"></image>
<button style="margin: 30rpx;" @click="saveImage">将图片保存到手机相册</button>
<!-- #ifdef APP -->
</scroll-view>
...
...
@@ -39,4 +39,4 @@
</script>
<style>
</style>
\ No newline at end of file
</style>
pages/tabBar/API.uvue
浏览文件 @
01b16b8e
...
...
@@ -397,9 +397,14 @@
name: 'storage(key-value存储)',
url: 'storage',
api: ["getStorageInfo", "getStorageInfoSync", "getStorage", "getStorageSync", "setStorage", "setStorageSync", "removeStorage", "removeStorageSync", "clearStorage", "clearStorageSync"]
},
}
] as Page[],
},{
id: 'file',
name: '文件',
pages: [
{
name: '沙盒文件管理',
name: '
fileSystemManager
沙盒文件管理',
url: 'filemanager'
},
] as Page[],
...
...
@@ -426,6 +431,7 @@
},
] as Page[],
},
// #ifdef APP
{
id: 'login',
name: '登录与认证',
...
...
@@ -439,7 +445,8 @@
url: 'facial-recognition-verify',
}
] as Page[],
},
},
// #endif
/* {
id: "rewarded-video-ad",
url: "rewarded-video-ad",
...
...
pages/template/list-news/list-news.uvue
浏览文件 @
01b16b8e
<template>
<list-view style="flex: 1;" refresher-enabled=true @refresherrefresh="onRefresherrefresh"
:refresher-triggered="refresherTriggered">
<list-item class="banner" @click="bannerClick(banner)">
<list-item class="banner" @click="bannerClick(banner)"
type=1
>
<image class="banner-img" :src="banner.cover"></image>
<text class="banner-title">{{ banner.title }}</text>
</list-item>
...
...
@@ -13,7 +13,7 @@
</text>
</view>
</sticky-header>
<list-item v-for="(value, index) in listData" :key="index">
<list-item v-for="(value, index) in listData" :key="index"
type=2
>
<view class="uni-list-cell" hover-class="uni-list-cell-hover" @click="goDetail(value)">
<view class="uni-media-list">
<image class="uni-media-list-logo" :src="value.cover"></image>
...
...
@@ -207,4 +207,4 @@
color: #9D9D9F;
font-size: 25rpx;
}
</style>
\ No newline at end of file
</style>
static/uni.png
查看替换文件 @
0acb2f23
浏览文件 @
01b16b8e
4.1 KB
|
W:
|
H:
4.2 KB
|
W:
|
H:
2-up
Swipe
Onion skin
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录