Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
self-support
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李俊赕
self-support
Commits
4bf3746d
Commit
4bf3746d
authored
May 18, 2021
by
Damon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
拍照组件-增加拍照数量参数
parent
513d2c35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
index.vue
src/components/take/index.vue
+9
-1
readme.md
src/components/take/readme.md
+1
-0
No files found.
src/components/take/index.vue
View file @
4bf3746d
...
...
@@ -71,6 +71,12 @@
default
()
{
return
true
}
},
num
:
{
type
:
Number
,
default
()
{
return
10
}
}
},
components
:
{
...
...
@@ -116,7 +122,9 @@
const
photo
=
getApp
().
globalData
.
photo
getApp
().
trackPage
(
'拍照页'
)
photo
.
allImages
=
[]
photo
.
currentItemLength
=
0
const
length
=
(
this
.
num
>
10
||
this
.
num
<
0
||
typeof
this
.
num
!==
'number'
)
?
0
:
10
-
this
.
num
photo
.
currentItemLength
=
length
// this.ctx = uni.createCameraContext();
this
.
updateTime
()
...
...
src/components/take/readme.md
View file @
4bf3746d
...
...
@@ -18,6 +18,7 @@ uni.hideTabBar()
| 属性名 | 类型 | 默认值 | 可选值 | 说明 |
| :-: | :-: | :-: | :-: | :-: |
| update | Boolean | true | true/false | 是否默认上传 true:会自动上传好图片并返回绝对路径 false: 只返回临时路径,需要在父组件做上传动作 |
| num | Number | 10 | 1-10 | 拍照数量,只能传1-10的正整数 |
| currentItem | Object | - | - | 对应的规范数据,用于获取示意图和水印,以及保存图片所需的ID
**格式见下文**
|
### currentItem 格式
...
...
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