Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pet-business-web
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
刘怀志
pet-business-web
Commits
cb5f578e
Commit
cb5f578e
authored
Jun 13, 2023
by
小费同学阿
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
进度信息模块封装ui代码优化
parent
9ddfc97d
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
118 additions
and
45 deletions
+118
-45
article-detail.vue
src/views/article-management/article-detail.vue
+4
-6
article-edit.vue
src/views/article-management/article-edit.vue
+2
-6
article-insert.vue
src/views/article-management/article-insert.vue
+4
-4
medical-edit.vue
src/views/medical-record-management/medical-edit.vue
+108
-29
No files found.
src/views/article-management/article-detail.vue
View file @
cb5f578e
...
@@ -55,8 +55,8 @@ color: #333333;"
...
@@ -55,8 +55,8 @@ color: #333333;"
/>
/>
</el-select>
</el-select>
</div>
</div>
<!--
<div
v-if=
"form.articleStatus==='0'"
style=
"padding-top: 1px;"
>
已上架
</div>
-->
<!--
<div
v-if=
"form.articleStatus==='0'"
style=
"padding-top: 1px;"
>
已上架
</div>
-->
<!--
<div
v-else-if=
"form.articleStatus==='1'"
style=
"padding-top: 1px;"
>
已下架
</div>
-->
<!--
<div
v-else-if=
"form.articleStatus==='1'"
style=
"padding-top: 1px;"
>
已下架
</div>
-->
</div>
</div>
</el-form-item>
</el-form-item>
<!-- 2-- 文章信息--文章内容 -->
<!-- 2-- 文章信息--文章内容 -->
...
@@ -110,18 +110,16 @@ export default {
...
@@ -110,18 +110,16 @@ export default {
baseURL
:
process
.
env
.
VUE_APP_TEST_API
,
baseURL
:
process
.
env
.
VUE_APP_TEST_API
,
// 状态下拉框
// 状态下拉框
statusList
:
[{
statusList
:
[{
label
:
'已
启用
'
,
label
:
'已
上架
'
,
value
:
'0'
value
:
'0'
},
{
},
{
label
:
'已
禁用
'
,
label
:
'已
下架
'
,
value
:
'1'
value
:
'1'
}],
}],
// 弹出层标题
// 弹出层标题
title
:
''
,
title
:
''
,
// 是否显示弹出层
// 是否显示弹出层
open
:
false
,
open
:
false
,
// 状态位
value
:
true
,
// 表单参数
// 表单参数
form
:
{},
form
:
{},
// 表单校验
// 表单校验
...
...
src/views/article-management/article-edit.vue
View file @
cb5f578e
...
@@ -47,8 +47,6 @@ color: #333333;"
...
@@ -47,8 +47,6 @@ color: #333333;"
/>
/>
</el-select>
</el-select>
</div>
</div>
<!--
<div
v-if=
"form.articleStatus==='0'"
style=
"padding-top: 1px;"
>
已上架
</div>
-->
<!--
<div
v-else-if=
"form.articleStatus==='1'"
style=
"padding-top: 1px;"
>
已下架
</div>
-->
</div>
</div>
</el-form-item>
</el-form-item>
<el-form-item
label=
"文章内容"
prop=
"articleContent"
>
<el-form-item
label=
"文章内容"
prop=
"articleContent"
>
...
@@ -91,10 +89,10 @@ export default {
...
@@ -91,10 +89,10 @@ export default {
return
{
return
{
// 状态下拉框
// 状态下拉框
statusList
:
[{
statusList
:
[{
label
:
'已
启用
'
,
label
:
'已
上架
'
,
value
:
'0'
value
:
'0'
},
{
},
{
label
:
'已
禁用
'
,
label
:
'已
下架
'
,
value
:
'1'
value
:
'1'
}],
}],
user
:
{},
user
:
{},
...
@@ -104,8 +102,6 @@ export default {
...
@@ -104,8 +102,6 @@ export default {
title
:
''
,
title
:
''
,
// 是否显示弹出层
// 是否显示弹出层
open
:
false
,
open
:
false
,
// 状态位
value
:
true
,
// 表单参数
// 表单参数
form
:
{},
form
:
{},
// 表单校验
// 表单校验
...
...
src/views/article-management/article-insert.vue
View file @
cb5f578e
...
@@ -42,8 +42,8 @@ color: #333333;"
...
@@ -42,8 +42,8 @@ color: #333333;"
/>
/>
</el-select>
</el-select>
</div>
</div>
<!--
<div
v-if=
"form.articleStatus==='0'"
style=
"padding-top: 1px;"
>
已上架
</div>
-->
<!--
<div
v-if=
"form.articleStatus==='0'"
style=
"padding-top: 1px;"
>
已上架
</div>
-->
<!--
<div
v-else-if=
"form.articleStatus==='1'"
style=
"padding-top: 1px;"
>
已下架
</div>
-->
<!--
<div
v-else-if=
"form.articleStatus==='1'"
style=
"padding-top: 1px;"
>
已下架
</div>
-->
</div>
</div>
</el-form-item>
</el-form-item>
<el-form-item
label=
"文章内容"
prop=
"articleContent"
>
<el-form-item
label=
"文章内容"
prop=
"articleContent"
>
...
@@ -86,10 +86,10 @@ export default {
...
@@ -86,10 +86,10 @@ export default {
return
{
return
{
// 状态下拉框
// 状态下拉框
statusList
:
[{
statusList
:
[{
label
:
'已
启用
'
,
label
:
'已
上架
'
,
value
:
'0'
value
:
'0'
},
{
},
{
label
:
'已
禁用
'
,
label
:
'已
下架
'
,
value
:
'1'
value
:
'1'
}],
}],
// 弹出层标题
// 弹出层标题
...
...
src/views/medical-record-management/medical-edit.vue
View file @
cb5f578e
This diff is collapsed.
Click to expand it.
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