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
bead0c7c
Commit
bead0c7c
authored
May 22, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
dfb3736c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
8 deletions
+19
-8
Article.vue
src/components/StoreDesign/Article.vue
+7
-3
ProjectClassific.vue
src/components/StoreDesign/ProjectClassific.vue
+7
-4
special.vue
src/components/StoreDesign/special.vue
+5
-1
No files found.
src/components/StoreDesign/Article.vue
View file @
bead0c7c
...
...
@@ -3,7 +3,7 @@
<template
v-if=
"ArticleIsShowAdd"
>
<div
class=
"head-title"
>
文章列表
<el-button
@
click=
"ArticleIsShowAdd=false"
style=
"float:right;margin-top: -5px;"
size=
"small"
type=
"primary"
>
<el-button
@
click=
"ArticleIsShowAdd=false
,clearMsg()
"
style=
"float:right;margin-top: -5px;"
size=
"small"
type=
"primary"
>
添加文章
</el-button>
</div>
...
...
@@ -51,8 +51,8 @@
<div
class=
"content"
>
<div
class=
"Article_condiv"
>
<el-form
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
label-width=
"100px"
style=
"padding:0 20px;"
>
<el-form-item
label=
"标题"
prop=
"
t
itle"
>
<el-input
v-model=
"addMsg.Title"
size=
"small"
placeholder=
"请输入名称"
maxlength=
"
10
0"
/>
<el-form-item
label=
"标题"
prop=
"
T
itle"
>
<el-input
v-model=
"addMsg.Title"
size=
"small"
placeholder=
"请输入名称"
maxlength=
"
5
0"
/>
</el-form-item>
<el-form-item
label=
"排序"
>
<el-input
type=
"text"
v-model=
"addMsg.SortNum"
@
keyup
.
native=
"checkInteger(addMsg,'SortNum')"
size=
"small"
...
...
@@ -156,6 +156,9 @@
},
//保存
saveMsg
()
{
if
(
this
.
addMsg
.
SortNum
==
''
){
this
.
addMsg
.
SortNum
=
0
;
}
this
.
apipost
(
"/api/MContent/SetArticle"
,
this
.
addMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
ArticleIsShowAdd
=
true
;
...
...
@@ -169,6 +172,7 @@
},
//修改
EditArticle
(
item
)
{
this
.
ArticleIsShowAdd
=
false
;
this
.
apipost
(
"/api/MContent/GetArticle"
,
{
Id
:
item
.
Id
},
res
=>
{
...
...
src/components/StoreDesign/ProjectClassific.vue
View file @
bead0c7c
...
...
@@ -3,7 +3,7 @@
<template
v-if=
"projectClassIsShowAdd"
>
<div
class=
"head-title"
>
专题分类
<el-button
@
click=
"projectClassIsShowAdd=false"
style=
"float:right;margin-top: -5px;"
size=
"small"
<el-button
@
click=
"projectClassIsShowAdd=false
,clearMsg()
"
style=
"float:right;margin-top: -5px;"
size=
"small"
type=
"primary"
>
添加分类
</el-button>
...
...
@@ -53,9 +53,9 @@
</div>
<div
class=
"content"
>
<div
class=
"projectClass_condiv"
>
<el-form
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
label-width=
"1
0
0px"
style=
"padding:0 20px;"
>
<el-form-item
label=
"专题分类名称"
prop=
"
titl
e"
>
<el-input
v-model=
"addMsg.TopicName"
size=
"small"
placeholder=
"请输入名称"
maxlength=
"
2
0"
/>
<el-form
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
label-width=
"1
2
0px"
style=
"padding:0 20px;"
>
<el-form-item
label=
"专题分类名称"
prop=
"
TopicNam
e"
>
<el-input
v-model=
"addMsg.TopicName"
size=
"small"
placeholder=
"请输入名称"
maxlength=
"
5
0"
/>
</el-form-item>
<el-form-item
label=
"排序"
>
<el-input
type=
"text"
v-model=
"addMsg.SortNum"
size=
"small"
@
keyup
.
native=
"checkInteger(addMsg,'SortNum')"
...
...
@@ -139,6 +139,9 @@
},
//保存
saveMsg
()
{
if
(
this
.
addMsg
.
SortNum
==
''
){
this
.
addMsg
.
SortNum
=
0
;
}
this
.
apipost
(
"/api/MContent/SetTopicType"
,
this
.
addMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
projectClassIsShowAdd
=
true
;
...
...
src/components/StoreDesign/special.vue
View file @
bead0c7c
...
...
@@ -322,10 +322,15 @@
this
.
addMsg
.
TopicTypeId
=
0
;
this
.
addMsg
.
ReadNum
=
0
;
this
.
addMsg
.
SortNum
=
0
;
this
.
activeName
=
'first'
;
this
.
addMsg
.
ComponentDataList
=
[];
this
.
pluginData
=
[];
},
//修改
EditRole
(
item
)
{
console
.
log
(
item
,
'itemmm'
);
this
.
speciaIsShowAdd
=
false
;
this
.
activeName
=
'first'
;
this
.
apipost
(
"/api/MContent/GetTopic"
,
{
Id
:
item
.
Id
},
res
=>
{
...
...
@@ -346,7 +351,6 @@
this
.
addMsg
.
ComponentDataList
=
jsonData
.
ComponentDataList
;
this
.
pluginData
=
jsonData
.
ComponentDataList
;
}
this
.
speciaIsShowAdd
=
false
;
}
else
{
this
.
Info
(
res
.
data
.
message
);
}
...
...
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