Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
674c9338
Commit
674c9338
authored
Aug 30, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a466d932
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
0 deletions
+81
-0
multilinetext.vue
src/components/tradePavilion/plugin/multilinetext.vue
+78
-0
registrationAdd.vue
src/components/tradePavilion/registrationAdd.vue
+3
-0
No files found.
src/components/tradePavilion/plugin/multilinetext.vue
0 → 100644
View file @
674c9338
<
style
>
.multilineText_Input
{
width
:
500px
;
height
:
120px
;
border
:
1px
solid
#DCDFE6
;
border-radius
:
4px
;
margin-left
:
20px
;
background
:
#fff
;
font-size
:
25px
;
color
:
#c0c4d6
;
line-height
:
60px
;
padding-left
:
20px
;
}
.diy-multiple
>
div
{
padding
:
24px
;
font-size
:
28px
;
}
</
style
>
<
template
>
<div
:class=
"
{'active':searchData.isCked}">
<div
class=
"diy-component-options"
v-if=
"searchData.isCked"
>
<el-button
type=
"primary"
icon=
"el-icon-delete"
style=
"left: -25px; top: 0px;"
@
click=
"delPlugin()"
></el-button>
<el-button
type=
"primary"
icon=
"el-icon-document-copy"
style=
"left: -25px; top: 30px;"
></el-button>
<el-button
type=
"primary"
icon=
"el-icon-arrow-up"
v-if=
"index>0"
@
click=
"resetSord(0)"
style=
"right: -25px; top: 0;"
></el-button>
<el-button
type=
"primary"
icon=
"el-icon-arrow-down"
v-if=
"index!=dataLeng-1"
@
click=
"resetSord(1)"
style=
"right: -25px; top: 30px;"
></el-button>
</div>
<div
class=
"diy-component-preview"
>
<div
class=
"diy-multiple"
>
<div
style=
"display:flex;align-items:center;"
>
<div
style=
"color:red;"
v-show=
"searchData.CompData.IsRequire"
>
*
</div>
<div>
{{
searchData
.
CompData
.
Name
}}
</div>
<div
class=
"multilineText_Input"
>
<span
v-if=
"searchData.CompData.WordsLength>0"
>
最多输入
{{
searchData
.
CompData
.
WordsLength
}}
个字
</span>
</div>
</div>
</div>
</div>
<div
class=
"diy-component-edit"
v-if=
"searchData.isCked"
>
<el-form
label-width=
"100px"
>
<el-form-item
label=
"名称"
>
<el-input
v-model=
"searchData.CompData.Name"
size=
"small"
></el-input>
</el-form-item>
<el-form-item
label=
"字数"
>
<el-input
type=
"text"
v-model=
"searchData.CompData.WordsLength"
@
keyup
.
native=
"checkInteger(searchData.CompData,'WordsLength')"
size=
"small"
></el-input>
</el-form-item>
<el-form-item
label=
"是否必填"
>
<el-switch
v-model=
"searchData.CompData.IsRequire"
>
</el-switch>
</el-form-item>
</el-form>
</div>
</div>
</
template
>
<
script
>
export
default
{
props
:
[
"searchData"
,
"index"
,
"dataLeng"
],
data
()
{
return
{
};
},
created
()
{},
methods
:
{
//向父组件传值 并调用排序
resetSord
(
IsUp
)
{
this
.
$emit
(
'getSord'
,
this
.
index
,
IsUp
);
},
//点击触发父组件删除
delPlugin
()
{
this
.
$emit
(
'comDelPlugin'
,
this
.
index
);
}
},
mounted
()
{}
};
</
script
>
src/components/tradePavilion/registrationAdd.vue
View file @
674c9338
...
...
@@ -317,6 +317,9 @@
<div
v-for=
"(item,index) in addMsg.FormData"
:key=
"index"
@
click=
"getItem(item)"
>
<singletextbox
v-if=
"item.CompKey=='SingleLineText'"
:searchData=
"item"
@
getSord=
"getSord"
@
comDelPlugin=
"comDelPlugin"
:index=
"index"
:dataLeng=
"addMsg.FormData.length"
></singletextbox>
<multilinetext
v-if=
"item.CompKey=='MultiLineText'"
:searchData=
"item"
@
getSord=
"getSord"
@
comDelPlugin=
"comDelPlugin"
:index=
"index"
:dataLeng=
"addMsg.FormData.length"
></multilinetext>
</div>
</div>
</div>
...
...
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