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
77cc3e6f
Commit
77cc3e6f
authored
Jun 13, 2023
by
盖献康
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
检查管理-bug
parent
dc1af00c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
33 additions
and
17 deletions
+33
-17
element-ui.scss
src/assets/styles/element-ui.scss
+12
-0
about-us.vue
src/views/document-management/about-us/about-us.vue
+5
-5
privacy-policy.vue
...ews/document-management/privacy-policy/privacy-policy.vue
+5
-5
rich-text.vue
src/views/document-management/rich-text.vue
+5
-1
user-protocol.vue
...views/document-management/user-protocol/user-protocol.vue
+5
-5
medical-record-management.vue
...t/medical-record-management/medical-record-management.vue
+1
-1
No files found.
src/assets/styles/element-ui.scss
View file @
77cc3e6f
...
...
@@ -419,3 +419,15 @@ input::-webkit-input-placeholder {
outline
:
none
;
border-color
:
#5FB54B
;
}
.el-tabs__active-bar
{
background-color
:
#5FB54B
;
}
.el-tabs__item.is-active
{
color
:
#5FB54B
;
}
.el-tabs__item
:hover
{
color
:
#5FB54B
;
cursor
:
pointer
;
}
src/views/document-management/about-us/about-us.vue
View file @
77cc3e6f
...
...
@@ -8,15 +8,15 @@
<span>
关于我们:
</span>
</el-col>
<el-col
v-if=
"isEdit===true"
:span=
"19"
>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
/>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:content=
"'请输入关于我们'"
/>
</el-col>
<el-col
v-if=
"isEdit===false"
:span=
"19"
>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:read-only=
"true"
/>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:read-only=
"true"
:content=
"'请输入关于我们'"
/>
</el-col>
</el-row>
<el-row
v-show=
"isEdit"
>
<el-col
style=
"display: flex;justify-content: left;margin: 20px 0 0 135px"
>
<el-button
type=
"primary
"
@
click=
"submit"
>
提 交
</el-button>
<el-button
class=
"queryBtn
"
@
click=
"submit"
>
提 交
</el-button>
</el-col>
</el-row>
</div>
...
...
@@ -64,14 +64,14 @@ export default {
// 新增
addManagement
(
this
.
privacyPolicy
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
$modal
.
msgSuccess
(
'
修改
成功'
)
this
.
$modal
.
msgSuccess
(
'
编辑
成功'
)
}
})
}
else
{
// 修改
updateManagement
(
this
.
privacyPolicy
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
$modal
.
msgSuccess
(
'
修改
成功'
)
this
.
$modal
.
msgSuccess
(
'
编辑
成功'
)
}
})
}
...
...
src/views/document-management/privacy-policy/privacy-policy.vue
View file @
77cc3e6f
...
...
@@ -8,15 +8,15 @@
<span>
用户协议:
</span>
</el-col>
<el-col
v-if=
"isEdit===true"
:span=
"19"
>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
/>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:content=
"'请输入隐私政策'"
/>
</el-col>
<el-col
v-if=
"isEdit===false"
:span=
"19"
>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:read-only=
"true"
/>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:read-only=
"true"
:content=
"'请输入隐私政策'"
/>
</el-col>
</el-row>
<el-row
v-show=
"isEdit"
>
<el-col
style=
"display: flex;justify-content: left;margin: 20px 0 0 135px"
>
<el-button
type=
"primary
"
@
click=
"submit"
>
提 交
</el-button>
<el-button
class=
"queryBtn
"
@
click=
"submit"
>
提 交
</el-button>
</el-col>
</el-row>
</div>
...
...
@@ -64,14 +64,14 @@ export default {
// 新增
addManagement
(
this
.
privacyPolicy
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
$modal
.
msgSuccess
(
'
修改
成功'
)
this
.
$modal
.
msgSuccess
(
'
编辑
成功'
)
}
})
}
else
{
// 修改
updateManagement
(
this
.
privacyPolicy
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
$modal
.
msgSuccess
(
'
修改
成功'
)
this
.
$modal
.
msgSuccess
(
'
编辑
成功'
)
}
})
}
...
...
src/views/document-management/rich-text.vue
View file @
77cc3e6f
...
...
@@ -55,6 +55,10 @@ export default {
type
:
{
type
:
String
,
default
:
'url'
},
content
:
{
type
:
String
,
default
:
'请输入内容'
}
},
data
()
{
...
...
@@ -84,7 +88,7 @@ export default {
// ["link", "image", "video"] // 链接、图片、视频
]
},
placeholder
:
'请输入内容'
,
placeholder
:
this
.
content
,
readOnly
:
this
.
readOnly
}
}
...
...
src/views/document-management/user-protocol/user-protocol.vue
View file @
77cc3e6f
...
...
@@ -8,15 +8,15 @@
<span>
用户协议:
</span>
</el-col>
<el-col
v-if=
"isEdit===true"
:span=
"19"
>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
/>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:content=
"'请输入用户协议'"
/>
</el-col>
<el-col
v-if=
"isEdit===false"
:span=
"19"
>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:read-only=
"true"
/>
<rich-text
v-model=
"privacyPolicy.content"
:height=
"500"
:
content=
"'请输入用户协议'"
:
read-only=
"true"
/>
</el-col>
</el-row>
<el-row
v-show=
"isEdit"
>
<el-col
style=
"display: flex;justify-content: left;margin: 20px 0 0 135px"
>
<el-button
type=
"primary
"
@
click=
"submit"
>
提 交
</el-button>
<el-button
class=
"queryBtn
"
@
click=
"submit"
>
提 交
</el-button>
</el-col>
</el-row>
</div>
...
...
@@ -64,14 +64,14 @@ export default {
// 新增
addManagement
(
this
.
privacyPolicy
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
$modal
.
msgSuccess
(
'
修改
成功'
)
this
.
$modal
.
msgSuccess
(
'
编辑
成功'
)
}
})
}
else
{
// 修改
updateManagement
(
this
.
privacyPolicy
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
$modal
.
msgSuccess
(
'
修改
成功'
)
this
.
$modal
.
msgSuccess
(
'
编辑
成功'
)
}
})
}
...
...
src/views/service-management/medical-record-management/medical-record-management.vue
View file @
77cc3e6f
...
...
@@ -84,7 +84,7 @@
<el-table
v-loading=
"loading"
:data=
"manageList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"序号"
align=
"center"
prop=
"petOwnersId"
/>
<el-table-column
label=
"序号"
type=
"index"
align=
"center"
prop=
"petOwnersId"
/>
<el-table-column
label=
"检查类型"
align=
"center"
prop=
"petNickname"
/>
<el-table-column
label=
"检查项目"
align=
"center"
prop=
"petBreed"
/>
<el-table-column
label=
"宠物昵称"
align=
"center"
prop=
"petSex"
/>
...
...
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