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
d945921a
Commit
d945921a
authored
Aug 28, 2023
by
盖献康
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug(66537) - 检查管理
parent
1d8a9ffc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
check-item.vue
...rvice-management/medical-record-management/check-item.vue
+13
-4
No files found.
src/views/service-management/medical-record-management/check-item.vue
View file @
d945921a
...
...
@@ -45,7 +45,7 @@
>
<el-input
v-model
.
trim=
"item.name"
:disabled=
"item.isUpdate === '1'"
:disabled=
"item.isUpdate === '1'
|| (currentUser.userType !== '00' && item.itemType === '2')
"
placeholder=
"请输入项目名称"
maxlength=
"10"
/>
...
...
@@ -137,6 +137,7 @@
v-model=
"item.supportInsure"
style=
"width: 100%"
placeholder=
"请选择是否支持保险支付"
:disabled=
"currentUser.userType !== '00' && item.itemType === '2'"
>
<el-option
v-for=
"items in insuranceOptions"
...
...
@@ -161,7 +162,7 @@
v-model=
"item.sort"
:min=
"0"
:max=
"9999"
:disabled=
"item.itemType === '2'"
:disabled=
"
currentUser.userType !== '00' &&
item.itemType === '2'"
controls-position=
"right"
style=
"width: 100%;"
@
keydown
.
native=
"handleKeyDownSort"
...
...
@@ -180,6 +181,7 @@
>
<el-select
v-model=
"item.status"
:disabled=
"currentUser.userType !== '00' && item.itemType === '2'"
style=
"width: 100%"
placeholder=
"请选择状态"
>
...
...
@@ -208,7 +210,7 @@
v-model
.
trim=
"item.content"
type=
"textarea"
:rows=
"2"
:disabled=
"item.isUpdate === '1'"
:disabled=
"item.isUpdate === '1'
|| (currentUser.userType !== '00' && item.itemType === '2')
"
placeholder=
"请输入检查项目描述"
maxlength=
"60"
show-word-limit
...
...
@@ -285,10 +287,15 @@ export default {
fullscreenLoading
:
false
,
isPlatRole
:
false
,
// 临时数组(用于预约外部服务, 权重为0)
temporaryArray
:
[]
temporaryArray
:
[],
// 当前用户信息
currentUser
:
{
userType
:
null
}
}
},
created
()
{
this
.
currentUser
.
userType
=
this
.
$store
.
state
.
user
.
userType
if
(
this
.
$store
.
state
.
user
.
userType
!==
'00'
)
{
this
.
getList
()
}
else
{
...
...
@@ -353,6 +360,8 @@ export default {
if
(
keyCode
===
32
||
(
keyCode
<
90
&&
keyCode
>
65
)
||
keyCode
===
229
)
{
event
.
preventDefault
()
}
// const prop = 'settingList.' + index + '.price'
// this.$refs['form'].validateField(prop)
},
// 权重的
handleKeyDownSort
(
event
)
{
...
...
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