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
513dc9e6
Commit
513dc9e6
authored
Aug 22, 2023
by
盖献康
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
6b5968c2
919fa78b
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
28 additions
and
21 deletions
+28
-21
article-detail.vue
src/views/article-management/article-detail.vue
+1
-1
article-edit.vue
src/views/article-management/article-edit.vue
+1
-1
article-insert.vue
src/views/article-management/article-insert.vue
+1
-1
use-details.vue
...views/equipment-management/use-management/use-details.vue
+1
-1
use-management.vue
...ws/equipment-management/use-management/use-management.vue
+8
-6
log.vue
src/views/monitor/job/log.vue
+1
-1
index.vue
src/views/monitor/operlog/index.vue
+2
-2
index.vue
src/views/monitor/server/index.vue
+1
-1
hospitalization-management.vue
...hospitalization-management/hospitalization-management.vue
+11
-6
medical-record-management.vue
...t/medical-record-management/medical-record-management.vue
+1
-1
No files found.
src/views/article-management/article-detail.vue
View file @
513dc9e6
...
...
@@ -25,7 +25,7 @@
:model=
"form"
:rules=
"rules"
label-width=
"80px"
label-position=
"
lef
t"
label-position=
"
righ
t"
style=
"padding-left: 13px"
>
<el-form-item
label=
"文章标题"
prop=
"articleTitle"
style=
"padding-top: 32px"
>
...
...
src/views/article-management/article-edit.vue
View file @
513dc9e6
...
...
@@ -18,7 +18,7 @@
<!-- 0-- 文章信息的页面--修改文章信息 -->
<div
class=
"base-msg"
>
<div
style=
"display:flex;"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
label-position=
"
lef
t"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
label-position=
"
righ
t"
>
<el-form-item
label=
"文章标题"
prop=
"articleTitle"
>
<el-input
v-model=
"form.articleTitle"
maxlength=
"60"
placeholder=
"请输入文章标题"
/>
</el-form-item>
...
...
src/views/article-management/article-insert.vue
View file @
513dc9e6
...
...
@@ -18,7 +18,7 @@
<!-- 0-- 文章信息的页面--新增文章信息 -->
<div
class=
"base-msg"
>
<div
style=
"display:flex;"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
label-position=
"
lef
t"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
label-position=
"
righ
t"
>
<el-form-item
label=
"文章标题"
prop=
"articleTitle"
>
<el-input
v-model
.
trim=
"form.articleTitle"
maxlength=
"60"
placeholder=
"请输入文章标题"
/>
</el-form-item>
...
...
src/views/equipment-management/use-management/use-details.vue
View file @
513dc9e6
...
...
@@ -286,7 +286,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"支付金额"
>
<el-input
v-model=
"form.payAmount"
:disabled=
"true"
placeholder=
"-"
style=
" width:
190px
"
/>
<el-input
v-model=
"form.payAmount"
:disabled=
"true"
placeholder=
"-"
style=
" width:
90%
"
/>
<span
style=
"margin-left: 5px"
>
元
</span>
</el-form-item>
</el-col>
...
...
src/views/equipment-management/use-management/use-management.vue
View file @
513dc9e6
...
...
@@ -136,11 +136,11 @@
<
span
>
{{
parseTime
(
scope
.
row
.
reportTime
,
'{h
}
:{m
}
'
)
||
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"支付金额"
align
=
"left"
prop
=
"payAmount"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
formatPrice
(
scope
.
row
.
payAmount
)
||
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"支付金额"
align
=
"left"
prop
=
"payAmount"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
formatPrice
(
scope
.
row
.
payAmount
)
||
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"设备当前状态"
align
=
"left"
prop
=
"status"
>
<
template
slot
-
scope
=
"scope"
>
<
span
...
...
@@ -186,6 +186,7 @@
import
{
listUseManagement
,
listUseManagementAll
}
from
'@/api/business/use'
import
{
listItemByType
}
from
'@/api/business/item'
import
{
getInfo
}
from
'@/api/login'
import
{
parseStrEmpty
}
from
'@/utils/ruoyi'
export
default
{
name
:
'UseManagement'
,
...
...
@@ -285,7 +286,7 @@ export default {
methods
:
{
// 表格显示病房单价保留两位小数
formatPrice
(
cellValue
)
{
return
cellValue
.
toFixed
(
2
)
+
'元'
if
(
parseStrEmpty
(
cellValue
)
!==
''
)
{
return
cellValue
.
toFixed
(
2
)
+
'元'
}
}
,
// 表单选择框对齐
cellClass
(
row
)
{
...
...
@@ -387,6 +388,7 @@ export default {
listUseManagement
(
this
.
queryParams
).
then
(
res
=>
{
this
.
total
=
res
.
total
this
.
userList
=
res
.
rows
console
.
log
(
'this.userList'
,
this
.
userList
)
this
.
loading
=
false
console
.
log
(
'列表'
,
res
)
}
)
...
...
src/views/monitor/job/log.vue
View file @
513dc9e6
...
...
@@ -268,7 +268,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
jobLogIds
=
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除调度日志编号为"'
+
jobLogIds
+
'"的数据项
?
'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除调度日志编号为"'
+
jobLogIds
+
'"的数据项'
).
then
(
function
()
{
return
delJobLog
(
jobLogIds
)
}).
then
(()
=>
{
this
.
getList
()
...
...
src/views/monitor/operlog/index.vue
View file @
513dc9e6
...
...
@@ -285,7 +285,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
operIds
=
row
.
operId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除日志编号为"'
+
operIds
+
'"的数据项
?
'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除日志编号为"'
+
operIds
+
'"的数据项'
).
then
(
function
()
{
return
delOperlog
(
operIds
)
}).
then
(()
=>
{
this
.
getList
()
...
...
@@ -294,7 +294,7 @@ export default {
},
/** 清空按钮操作 */
handleClean
()
{
this
.
$modal
.
confirm
(
'是否确认清空所有操作日志数据项
?
'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认清空所有操作日志数据项'
).
then
(
function
()
{
return
cleanOperlog
()
}).
then
(()
=>
{
this
.
getList
()
...
...
src/views/monitor/server/index.vue
View file @
513dc9e6
...
...
@@ -200,7 +200,7 @@ export default {
},
// 打开加载层
openLoading
()
{
this
.
$modal
.
loading
(
'正在加载服务监控数据,请稍候
!
'
)
this
.
$modal
.
loading
(
'正在加载服务监控数据,请稍候'
)
}
}
}
...
...
src/views/service-management/hospitalization-management/hospitalization-management.vue
View file @
513dc9e6
...
...
@@ -345,7 +345,7 @@ export default {
moneyFormat
,
highlightRow
(
scope
)
{
if
(
scope
.
row
.
diseaseLevel
===
'1'
)
{
return
'
height-line
'
return
'
expenditure-highlight-row
'
}
}
,
// 病房下拉框
...
...
@@ -492,14 +492,19 @@ export default {
}
}
<
/script
>
<
style
>
.
height
-
line
{
background
-
color
:
rgba
(
85
,
163
,
67
,
0.2
)
!
important
;
}
<
/style
>
<
!--
<
style
>--
>
<!--
/*.height-line{*/
-->
<!--
/* background: #F6FCF5;*/
-->
<!--
//
}
-->
<
!--
<
/style>--
>
<
style
scoped
lang
=
"scss"
>
.
app
-
container
{
background
-
color
:
#
FFFFFF
;
}
.
el
-
table
{
.
expenditure
-
highlight
-
row
{
background
:
#
F6FCF5
;
}
}
<
/style
>
src/views/service-management/medical-record-management/medical-record-management.vue
View file @
513dc9e6
...
...
@@ -867,7 +867,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
ids
=
row
.
id
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除业务管理-检查管理编号为"'
+
ids
+
'"的数据项
?
'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除业务管理-检查管理编号为"'
+
ids
+
'"的数据项'
).
then
(
function
()
{
return
delManage
(
ids
)
}
).
then
(()
=>
{
this
.
getList
()
...
...
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