Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-composition-api
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
宁路鹏
vue-composition-api
Commits
1ce79d25
Commit
1ce79d25
authored
Nov 08, 2024
by
唐玉峰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
015bfa57
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
42 deletions
+45
-42
src/router/index.js
+44
-41
src/views/outHistorygrouping.vue
+1
-1
src/views/outHistorygrouping_yubei.vue
+0
-0
No files found.
src/router/index.js
View file @
1ce79d25
...
@@ -5,75 +5,78 @@
...
@@ -5,75 +5,78 @@
* @LastEditTime: 2023-01-09 13:55:06
* @LastEditTime: 2023-01-09 13:55:06
* @Description:
* @Description:
*/
*/
import
Vue
from
'vue'
import
Vue
from
"vue"
;
import
Router
from
'vue-router'
import
Router
from
"vue-router"
;
import
store
from
'@/store'
import
store
from
"@/store"
;
import
{
getItem
,
clear
}
from
'@/utils/auth'
import
{
getItem
,
clear
}
from
"@/utils/auth"
;
import
outseeQualityControl
from
'@/views/outseeQualityControl.vue'
import
outseeQualityControl
from
"@/views/outseeQualityControl.vue"
;
import
outpatientDetails
from
'@/views/outpatientDetails.vue'
import
outpatientDetails
from
"@/views/outpatientDetails.vue"
;
import
outHistorygrouping
from
'@/views/outHistorygrouping.vue'
import
outHistorygrouping
from
"@/views/outHistorygrouping.vue"
;
Vue
.
use
(
Router
)
import
outHistorygrouping_yubei
from
"@/views/outHistorygrouping_yubei.vue"
;
Vue
.
use
(
Router
);
// const baseUrl = '/his/'
// const baseUrl = '/his/'
const
router
=
new
Router
({
const
router
=
new
Router
({
// mode: baseUrl,
// mode: baseUrl,
routes
:
[
routes
:
[
{
{
path
:
'*'
,
path
:
"*"
,
component
:
(
resolve
)
=>
require
([
'@/components/404.vue'
],
resolve
)
component
:
(
resolve
)
=>
require
([
"@/components/404.vue"
],
resolve
),
},
},
// 查看质控
// 查看质控
{
{
path
:
'/outseeQualityControl'
,
path
:
"/outseeQualityControl"
,
name
:
'outseeQualityControl'
,
name
:
"outseeQualityControl"
,
component
:
outseeQualityControl
component
:
outseeQualityControl
,
},
},
// 患者详情
// 患者详情
{
{
path
:
'/outpatientDetails'
,
path
:
"/outpatientDetails"
,
name
:
'outpatientDetails'
,
name
:
"outpatientDetails"
,
component
:
outpatientDetails
component
:
outpatientDetails
,
},
},
// 智能分组
// 智能分组
{
{
path
:
'/outHistorygrouping'
,
path
:
"/outHistorygrouping"
,
name
:
'outHistorygrouping'
,
name
:
"outHistorygrouping"
,
component
:
outHistorygrouping
component
:
outHistorygrouping
,
},
// 智能分组 yubei
{
path
:
"/outHistorygrouping_yubei"
,
name
:
"outHistorygrouping_yubei"
,
component
:
outHistorygrouping_yubei
,
},
},
//临床路径外放页面
//临床路径外放页面
{
{
path
:
'/medicalRecordImport'
,
path
:
"/medicalRecordImport"
,
name
:
'medicalRecordImport'
,
name
:
"medicalRecordImport"
,
component
:
(
resolve
)
=>
component
:
(
resolve
)
=>
require
([
"@/views/medicalRecordImport.vue"
],
resolve
),
require
([
'@/views/medicalRecordImport.vue'
],
resolve
)
},
},
{
{
path
:
'/outpatientDetails_pingguo'
,
path
:
"/outpatientDetails_pingguo"
,
name
:
'outpatientDetails_pingguo'
,
name
:
"outpatientDetails_pingguo"
,
component
:
(
resolve
)
=>
component
:
(
resolve
)
=>
require
([
"@/views/outpatientDetails_pingguo.vue"
],
resolve
),
require
([
'@/views/outpatientDetails_pingguo.vue'
],
resolve
)
},
},
{
{
path
:
'/seeSettlementList'
,
path
:
"/seeSettlementList"
,
name
:
'seeSettlementList'
,
name
:
"seeSettlementList"
,
component
:
(
resolve
)
=>
component
:
(
resolve
)
=>
require
([
"@/views/seeSettlementList.vue"
],
resolve
),
require
([
'@/views/seeSettlementList.vue'
],
resolve
)
},
},
{
{
path
:
'/patientinfo'
,
path
:
"/patientinfo"
,
name
:
'patientinfo'
,
name
:
"patientinfo"
,
component
:
(
resolve
)
=>
require
([
'@/views/patientinfo.vue'
],
resolve
)
component
:
(
resolve
)
=>
require
([
"@/views/patientinfo.vue"
],
resolve
),
}
},
]
],
// mode: 'history' /*hash*/ /*不显示路由中的#*/
// mode: 'history' /*hash*/ /*不显示路由中的#*/
})
})
;
//路由跳转前判断(登录权限)
//路由跳转前判断(登录权限)
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
next
()
next
();
})
})
;
export
default
router
export
default
router
;
src/views/outHistorygrouping.vue
View file @
1ce79d25
...
@@ -165,7 +165,7 @@
...
@@ -165,7 +165,7 @@
<div
class=
"outsetgrouping_centent_totalnum_left_text_msg2_text5"
>
<div
class=
"outsetgrouping_centent_totalnum_left_text_msg2_text5"
>
<span>
预计DRG支付费用:
{{
decimal
(
item
.
actualfee
)
}}
</span>
<span>
预计DRG支付费用:
{{
decimal
(
item
.
actualfee
)
}}
</span>
<span>
总费用:
{{
decimal
(
item
.
totalFee
)
}}
</span>
<span>
总费用:
{{
decimal
(
item
.
totalFee
)
}}
</span>
<
span>
药耗占比:
{{
decimal
(
item
.
drugMatPercent
)
+
"%"
}}
</span
>
<
!--
<span>
药耗占比:
{{
decimal
(
item
.
drugMatPercent
)
+
"%"
}}
</span>
--
>
<span>
盈亏:
{{
decimal
(
item
.
profitLoss
)
}}
</span>
<span>
盈亏:
{{
decimal
(
item
.
profitLoss
)
}}
</span>
</div>
</div>
</div>
</div>
...
...
src/views/outHistorygrouping_yubei.vue
0 → 100644
View file @
1ce79d25
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