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
d959365d
Commit
d959365d
authored
Jun 13, 2023
by
王飞龙
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
ba2921c8
cb5f578e
Changes
12
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
1611 additions
and
470 deletions
+1611
-470
pre-commit
.husky/pre-commit
+1
-1
index.js
src/router/index.js
+11
-0
article-detail.vue
src/views/article-management/article-detail.vue
+17
-13
article-edit.vue
src/views/article-management/article-edit.vue
+15
-11
article-insert.vue
src/views/article-management/article-insert.vue
+17
-9
article-management.vue
src/views/article-management/article-management.vue
+0
-1
medical-detail.vue
src/views/medical-record-management/medical-detail.vue
+558
-331
medical-edit.vue
src/views/medical-record-management/medical-edit.vue
+743
-0
medical-record-management.vue
...s/medical-record-management/medical-record-management.vue
+1
-1
medical-record-management.vue
...t/medical-record-management/medical-record-management.vue
+0
-1
prescribing-modle.vue
...ement/registration-queue/components/prescribing-modle.vue
+248
-101
schedule-info.vue
...anagement/registration-queue/components/schedule-info.vue
+0
-1
No files found.
.husky/pre-commit
View file @
d959365d
#!/usr/bin/env sh
.
"
$(
dirname
--
"
$0
"
)
/_/husky.sh"
npm run lint
src/router/index.js
View file @
d959365d
...
...
@@ -171,6 +171,16 @@ export const constantRoutes = [
meta
:
{
title
:
'病历详情'
,
icon
:
'component'
}
},
// 病历编辑
{
path
:
'medical-edit/:id'
,
component
:
()
=>
import
(
'@/views/medical-record-management/medical-edit'
),
name
:
'MedicalEdit'
,
props
:
true
,
meta
:
{
title
:
'病历编辑'
,
icon
:
'component'
}
}
]
},
...
...
@@ -423,6 +433,7 @@ export const dynamicRoutes = [
}
]
},
// 数据字典
{
path
:
'/system/dict-data'
,
component
:
Layout
,
...
...
src/views/article-management/article-detail.vue
View file @
d959365d
...
...
@@ -47,17 +47,16 @@ color: #333333;"
<el-form-item
label=
"状态"
prop=
"articleStatus"
>
<div
style=
"display: flex; "
>
<div
style=
"padding-right: 15px;"
>
<el-switch
v-model=
"form.articleStatus"
active-color=
"#13ce66"
active-value=
"0"
disabled
inactive-color=
"#ff4949"
inactive-value=
"1"
/>
<el-select
v-model=
"form.articleStatus"
disabled
>
<el-option
v-for=
"(
{value, label}) in statusList"
:label="label"
:value="value"
/>
</el-select>
</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-if=
"form.articleStatus==='0'"
style=
"padding-top: 1px;"
>
已上架
</div>
--
>
<
!--
<div
v-else-if=
"form.articleStatus==='1'"
style=
"padding-top: 1px;"
>
已下架
</div>
--
>
</div>
</el-form-item>
<!-- 2-- 文章信息--文章内容 -->
...
...
@@ -109,13 +108,18 @@ export default {
return
{
// 图片访问
baseURL
:
process
.
env
.
VUE_APP_TEST_API
,
// 状态下拉框
statusList
:
[{
label
:
'已上架'
,
value
:
'0'
},
{
label
:
'已下架'
,
value
:
'1'
}],
// 弹出层标题
title
:
''
,
// 是否显示弹出层
open
:
false
,
// 状态位
value
:
true
,
// 表单参数
form
:
{},
// 表单校验
...
...
src/views/article-management/article-edit.vue
View file @
d959365d
...
...
@@ -39,16 +39,14 @@ color: #333333;"
<el-form-item
label=
"状态"
prop=
"articleStatus"
>
<div
style=
"display: flex;"
>
<div
style=
"padding-right: 15px;"
>
<el-s
witch
v-model=
"form.articleStatus"
active-color=
"#13ce66
"
active-value=
"0
"
inactive-color=
"#ff4949
"
inactive-value=
"1"
/
>
<el-s
elect
v-model=
"form.articleStatus"
>
<el-option
v-for=
"(
{value, label}) in statusList
"
:label="label
"
:value="value
"
/>
</el-select
>
</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>
</el-form-item>
<el-form-item
label=
"文章内容"
prop=
"articleContent"
>
...
...
@@ -89,6 +87,14 @@ export default {
},
data
()
{
return
{
// 状态下拉框
statusList
:
[{
label
:
'已上架'
,
value
:
'0'
},
{
label
:
'已下架'
,
value
:
'1'
}],
user
:
{},
isShow
:
true
,
...
...
@@ -96,8 +102,6 @@ export default {
title
:
''
,
// 是否显示弹出层
open
:
false
,
// 状态位
value
:
true
,
// 表单参数
form
:
{},
// 表单校验
...
...
src/views/article-management/article-insert.vue
View file @
d959365d
...
...
@@ -34,16 +34,16 @@ color: #333333;"
<el-form-item
label=
"状态"
prop=
"articleStatus"
>
<div
style=
"display: flex;"
>
<div
style=
"padding-right: 15px;"
>
<el-s
witch
v-model=
"form.articleStatus"
active-color=
"#13ce66
"
active-value=
"0
"
inactive-color=
"#ff4949
"
inactive-value=
"1"
/
>
<el-s
elect
v-model=
"form.articleStatus"
>
<el-option
v-for=
"(
{value, label}) in statusList
"
:label="label
"
:value="value
"
/>
</el-select
>
</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-if=
"form.articleStatus==='0'"
style=
"padding-top: 1px;"
>
已上架
</div>
--
>
<
!--
<div
v-else-if=
"form.articleStatus==='1'"
style=
"padding-top: 1px;"
>
已下架
</div>
--
>
</div>
</el-form-item>
<el-form-item
label=
"文章内容"
prop=
"articleContent"
>
...
...
@@ -84,6 +84,14 @@ export default {
},
data
()
{
return
{
// 状态下拉框
statusList
:
[{
label
:
'已上架'
,
value
:
'0'
},
{
label
:
'已下架'
,
value
:
'1'
}],
// 弹出层标题
title
:
''
,
// 是否显示弹出层
...
...
src/views/article-management/article-management.vue
View file @
d959365d
...
...
@@ -111,7 +111,6 @@
border
row-key="id"
@selection-change="handleSelectionChange"
@select-all="selectAll($event, false)"
>
<el-table-column
align=
"center"
reserve-selection
type=
"selection"
width=
"55"
/>
<el-table-column
align=
"center"
label=
"序号"
min-width=
"80"
show-overflow-tooltip
type=
"index"
/>
...
...
src/views/medical-record-management/medical-detail.vue
View file @
d959365d
This diff is collapsed.
Click to expand it.
src/views/medical-record-management/medical-edit.vue
0 → 100644
View file @
d959365d
This diff is collapsed.
Click to expand it.
src/views/medical-record-management/medical-record-management.vue
View file @
d959365d
...
...
@@ -438,7 +438,7 @@ export default {
this
.
reset
()
console
.
log
(
'start to edit...'
)
this
.
$router
.
push
({
name
:
'
medical-e
dit'
,
params
:
{
id
:
row
.
id
}
name
:
'
MedicalE
dit'
,
params
:
{
id
:
row
.
id
}
}
)
}
}
...
...
src/views/service-management/medical-record-management/medical-record-management.vue
View file @
d959365d
...
...
@@ -151,7 +151,6 @@
<
script
>
import
{
listManage
,
getManage
,
delManage
,
addManage
,
updateManage
}
from
'@/api/business/manage'
export
default
{
name
:
'MedicalRecordManagement'
,
dicts
:
[
'exam_type'
],
...
...
src/views/service-management/registration-queue/components/prescribing-modle.vue
View file @
d959365d
This diff is collapsed.
Click to expand it.
src/views/service-management/registration-queue/components/schedule-info.vue
View file @
d959365d
...
...
@@ -114,7 +114,6 @@
</div>
</div>
</div>
</div>
</div>
</div>
...
...
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