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
0d3e91f4
Commit
0d3e91f4
authored
Apr 22, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
d1dfad50
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
13 deletions
+60
-13
Index.vue
src/components/Index.vue
+41
-10
zanIndex.vue
src/components/zanIndex.vue
+19
-3
No files found.
src/components/Index.vue
View file @
0d3e91f4
...
...
@@ -221,17 +221,17 @@
<!-- 创建商城 -->
<el-dialog
title=
"创建商城"
:visible
.
sync=
"creatDig"
width=
"440px"
>
<el-form
:model=
"creatMsg"
:rules=
"creatMsgrules"
ref=
"creatMsg"
label-width=
"100px"
>
<el-form-item
label=
"商城名称"
prop=
"
n
ame"
>
<el-input
size=
"small"
v-model=
"
addMsg.n
ame"
></el-input>
<el-form-item
label=
"商城名称"
prop=
"
MallN
ame"
>
<el-input
size=
"small"
v-model=
"
creatMsg.MallN
ame"
></el-input>
</el-form-item>
<el-form-item
label=
"商城有效期"
prop=
"
nam
e"
>
<el-
input
style=
"width:220px;margin-right:8px"
size=
"small"
v-model=
"addMsg.name"
></el-input
>
<el-checkbox
v-model=
"
val
"
>
永久
</el-checkbox>
<el-form-item
label=
"商城有效期"
prop=
"
MallValidat
e"
>
<el-
date-picker
v-model=
"creatMsg.MallValidate"
:disabled=
"creatMsg.isChecked"
value-format=
"yyyy-MM-dd"
style=
"width:220px;margin-right:8px"
type=
"date"
placeholder=
"选择日期时间"
></el-date-picker
>
<el-checkbox
v-model=
"
creatMsg.isChecked
"
>
永久
</el-checkbox>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
size=
"small"
@
click=
"
dialogVisible
= false"
>
取 消
</el-button>
<el-button
size=
"small"
type=
"primary"
@
click=
"
dialogVisible = false
"
>
确 定
</el-button>
<el-button
size=
"small"
@
click=
"
creatDig
= false"
>
取 消
</el-button>
<el-button
size=
"small"
type=
"primary"
@
click=
"
submitForm('creatMsg')
"
>
确 定
</el-button>
</span>
</el-dialog>
<!-- 存储位置编辑 -->
...
...
@@ -305,9 +305,23 @@
export
default
{
name
:
'homeIndex'
,
data
()
{
let
validataMala
=
(
rule
,
value
,
callback
)
=>
{
if
(
!
this
.
creatMsg
.
isChecked
&&
this
.
creatMsg
.
MallValidate
==
''
)
{
return
callback
(
new
Error
(
'请选择商城有效期'
));
}
else
{
callback
();
}
}
return
{
currentUserMsg
:{},
creatMsg
:
{},
creatMsg
:
{
MallBaseId
:
0
,
MallName
:
''
,
MallValidate
:
''
,
IsEffective
:
0
,
isChecked
:
false
},
creatDig
:
false
,
editMsg
:
{
type
:
''
,
...
...
@@ -339,11 +353,13 @@
}],
},
creatMsgrules
:
{
n
ame
:
[{
MallN
ame
:
[{
required
:
true
,
message
:
'
不能为空
'
,
message
:
'
请填写商城名称。
'
,
trigger
:
'blur'
}],
MallValidate
:
[{
validator
:
validataMala
,
trigger
:
"blur"
,
required
:
true
}],
},
}
...
...
@@ -402,6 +418,21 @@
],
)
]
)
},
//创建商城
submitForm
(
addMsg
){
this
.
$refs
[
addMsg
].
validate
(
valid
=>
{
if
(
valid
)
{
this
.
createShop
();
}
else
{
return
false
;
}
});
},
createShop
(){
if
(
this
.
creatMsg
.
isChecked
){
this
.
creatMsg
.
MallValidate
=
""
}
}
},
mounted
()
...
...
src/components/zanIndex.vue
View file @
0d3e91f4
<
style
>
.zanTotalTop
{
padding
:
18px
20px
;
background
:
#fff
;
border-bottom
:
1px
solid
#EBEEF5
;
}
.zanIndex_Second
{
background-color
:
#fff
;
position
:
relative
;
padding-bottom
:
50px
;
margin
:
10px
0
;
border
:
1px
solid
#EBEEF5
;
}
</
style
>
<
template
>
<div>
123
<div
class=
"zanIndex"
>
<div
class=
"zanTotalTop"
>
数据概况
</div>
<div
class=
"zanIndex_Second"
>
<div
class=
"selectDiv"
>
</div>
</div>
</div>
</
template
>
\ No newline at end of file
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