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
b52303bd
Commit
b52303bd
authored
Apr 19, 2021
by
李俊赕
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增-file文件
parent
8d601a36
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
119 additions
and
47 deletions
+119
-47
classify.data.js
src/common/classify.data.js
+3
-1
XhFiles.vue
src/components/createCom/XhFiles.vue
+110
-0
XhRadio - 副本.vue
src/components/createCom/XhRadio - 副本.vue
+0
-45
complete.vue
src/pages/order/complete.vue
+6
-1
No files found.
src/common/classify.data.js
View file @
b52303bd
...
@@ -38,7 +38,9 @@ export default [{
...
@@ -38,7 +38,9 @@ export default [{
"cat"
:
10
"cat"
:
10
},
},
{
{
"fieldsTitle"
:
"短裙"
,
"fieldsTitle"
:
"文件选择"
,
"fieldsName"
:
"file"
,
"fieldsType"
:
"file"
,
"key"
:
"短裙"
,
"key"
:
"短裙"
,
"icon"
:
"https://cdn.uviewui.com/uview/common/classify/1/5.jpg"
,
"icon"
:
"https://cdn.uviewui.com/uview/common/classify/1/5.jpg"
,
"cat"
:
10
"cat"
:
10
...
...
src/components/createCom/XhFiles.vue
0 → 100644
View file @
b52303bd
<
template
>
<view
class=
"file-box"
>
<view
class=
"u-flex"
@
click=
"selectUpload"
>
<view
class=
"txt u-flex-1"
>
{{
item
.
fieldsTitle
}}
</view>
<u-icon
name=
"arrow-right"
color=
"#666"
size=
"28"
></u-icon>
</view>
<view
class=
"pics u-flex u-flex-wrap"
>
<u-image
class=
"pic"
v-for=
"item in 6"
width=
"170rpx"
height=
"170"
src=
"'https://cdn.uviewui.com/uview/example/fade.jpg"
></u-image>
</view>
<u-popup
v-model=
"maskShow"
mode=
"center"
width=
"500"
>
<view
class=
"upload-box u-p-30"
>
<view
class=
"title"
>
请选择图片
</view>
<view
class=
"u-flex u-row-between"
>
<view
class=
"upload-item u-text-center"
@
click=
"uploadFile('photo')"
>
<u-image
class=
"pic"
width=
"170rpx"
height=
"170"
src=
"'https://cdn.uviewui.com/uview/example/fade.jpg"
></u-image>
相册
</view>
<view
class=
"upload-item u-text-center"
@
click=
"uploadFile"
>
<u-image
class=
"pic"
width=
"170rpx"
height=
"170"
src=
"'https://cdn.uviewui.com/uview/example/fade.jpg"
></u-image>
拍摄
</view>
</view>
</view>
</u-popup>
</view>
</
template
>
<
script
>
import
objMixin
from
'./objMixin'
import
baseFile
from
'@/components/upload/index'
;
export
default
{
name
:
'XhFiles'
,
components
:
{},
mixins
:
[
objMixin
,
baseFile
],
props
:
{},
filters
:{},
data
()
{
return
{
maskShow
:
false
}
},
computed
:
{
settings
()
{
return
this
.
item
.
settings
||
[]
}
},
watch
:
{},
mounted
()
{},
methods
:
{
selectUpload
(){
// 弹窗展示
this
.
maskShow
=
true
},
chooseImage
(){
},
uploadFile
(
type
){
if
(
type
&&
type
===
'photo'
){
// 直接打开相册
this
.
chooseImage
()
return
}
// 使用拍照工具拍摄
},
checkStatus
(
item
){
if
(
!
item
){
return
false
}
const
dataValue
=
this
.
dataValue
let
flag
=
Array
.
isArray
(
dataValue
)
&&
dataValue
.
indexOf
(
item
)
>-
1
console
.
log
(
flag
,
'flag'
)
return
flag
},
setValue
(
txt
)
{
const
dataValue
=
this
.
dataValue
||
[]
let
idx
=
dataValue
.
indexOf
(
txt
)
if
(
idx
>
-
1
)
{
dataValue
.
splice
(
idx
,
1
)
}
else
{
dataValue
.
push
(
txt
)
}
this
.
dataValue
=
dataValue
this
.
valueChange
(
this
.
dataValue
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.pic
{
margin-right
:
15rpx
;
margin-bottom
:
15rpx
;
&
:nth-child
(
3n
)
{
margin-right
:
0
;
}
}
// .list {
// display: flex;
// .txt {
// color: #666;
// padding: 10rpx;
// &.active {
// background-color: red;
// color: #fff;
// }
// }
// }
</
style
>
src/components/createCom/XhRadio - 副本.vue
deleted
100644 → 0
View file @
8d601a36
<
template
>
<view
class=
"list"
>
<view
v-for=
"(item,index) in settings"
:key=
"index"
:class=
"
{'txt':true,'active':item===dataValue}"
@click="setValue(item)">
{{
item
}}
</view>
</view>
</
template
>
<
script
>
import
stringMixin
from
'./stringMixin'
export
default
{
name
:
'XhRadio'
,
components
:
{},
mixins
:
[
stringMixin
],
props
:
{},
data
()
{
return
{}
},
computed
:
{
settings
(){
return
this
.
item
.
settings
||
[]
}
},
watch
:
{},
mounted
()
{},
methods
:
{
setValue
(
txt
){
this
.
dataValue
=
txt
this
.
valueChange
(
txt
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.list
{
display
:
flex
;
.txt
{
color
:
#666
;
padding
:
10rpx
;
&
.active
{
background-color
:
red
;
color
:
#fff
;
}
}
}
</
style
>
src/pages/order/complete.vue
View file @
b52303bd
...
@@ -41,6 +41,9 @@
...
@@ -41,6 +41,9 @@
<xh-select
v-if=
"item.fieldsType==='select'"
:groupIndex=
"groupIndex"
<xh-select
v-if=
"item.fieldsType==='select'"
:groupIndex=
"groupIndex"
:itemIndex=
"itemIndex"
:item=
"item"
@
value-change=
"fieldValueChange"
>
:itemIndex=
"itemIndex"
:item=
"item"
@
value-change=
"fieldValueChange"
>
</xh-select>
</xh-select>
<xh-files
v-if=
"item.fieldsType==='file'"
:groupIndex=
"groupIndex"
:itemIndex=
"itemIndex"
:item=
"item"
@
value-change=
"fieldValueChange"
>
</xh-files>
</
template
>
</
template
>
</u-form-item>
</u-form-item>
</view>
</view>
...
@@ -58,6 +61,7 @@
...
@@ -58,6 +61,7 @@
import
XhRadio
from
'@/components/createCom/XhRadio.vue'
import
XhRadio
from
'@/components/createCom/XhRadio.vue'
import
XhCheckbox
from
'@/components/createCom/XhCheckbox.vue'
import
XhCheckbox
from
'@/components/createCom/XhCheckbox.vue'
import
XhSelect
from
'@/components/createCom/XhSelect.vue'
import
XhSelect
from
'@/components/createCom/XhSelect.vue'
import
XhFiles
from
'@/components/createCom/XhFiles.vue'
// import XhRadio from '@/components/createCom/XhRadio.vue'
// import XhRadio from '@/components/createCom/XhRadio.vue'
export
default
{
export
default
{
data
()
{
data
()
{
...
@@ -109,7 +113,8 @@
...
@@ -109,7 +113,8 @@
XhInput
,
XhInput
,
XhRadio
,
XhRadio
,
XhCheckbox
,
XhCheckbox
,
XhSelect
XhSelect
,
XhFiles
// formCom
// formCom
},
},
created
()
{
created
()
{
...
...
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