Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
孙海亮
bims
Commits
17b9e1c1
Commit
17b9e1c1
authored
Jan 12, 2022
by
huangyecong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【ECCS-商保-1213】账单明细-添加看诊医生列表
parent
f0a2e9b2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
9 deletions
+20
-9
detail.vue
src/views/charge-query/detail.vue
+10
-4
index.vue
src/views/charge-query/index.vue
+10
-5
No files found.
src/views/charge-query/detail.vue
View file @
17b9e1c1
...
@@ -65,10 +65,10 @@
...
@@ -65,10 +65,10 @@
>
>
<a-select-option
<a-select-option
v-for=
"item in doctorOptions"
v-for=
"item in doctorOptions"
:key=
"item.
c
ode"
:key=
"item.
doctorC
ode"
:value=
"item.
c
ode"
:value=
"item.
doctorC
ode"
>
>
{{
item
.
name
}}
{{
item
.
doctorDesc
}}
</a-select-option>
</a-select-option>
</a-select>
</a-select>
</a-form-model-item>
</a-form-model-item>
...
@@ -169,6 +169,7 @@
...
@@ -169,6 +169,7 @@
<
script
>
<
script
>
import
BurtPagination
from
"
@/components/CUSTOMER/pagation
"
;
import
BurtPagination
from
"
@/components/CUSTOMER/pagation
"
;
import
{
mapState
}
from
"
vuex
"
export
default
{
export
default
{
data
()
{
data
()
{
const
columns
=
[
const
columns
=
[
...
@@ -261,6 +262,11 @@ export default {
...
@@ -261,6 +262,11 @@ export default {
components
:
{
components
:
{
BurtPagination
,
BurtPagination
,
},
},
computed
:
{
...
mapState
({
userInfo
:
(
state
)
=>
state
.
common
.
userInfo
})
},
filters
:
{
filters
:
{
payStyleFilters
(
value
)
{
payStyleFilters
(
value
)
{
const
styleMap
=
{
const
styleMap
=
{
...
@@ -310,7 +316,7 @@ export default {
...
@@ -310,7 +316,7 @@ export default {
},
},
// 获取看诊医生下拉选项
// 获取看诊医生下拉选项
_getDoctorListNoPage
(){
_getDoctorListNoPage
(){
this
.
$apis
.
GETDOCTORlISTNOPAGE
().
then
((
res
)
=>
{
this
.
$apis
.
GETDOCTORlISTNOPAGE
(
{
"
providerId
"
:
this
.
userInfo
.
providerId
}
).
then
((
res
)
=>
{
if
(
res
.
returnCode
===
"
0000
"
)
{
if
(
res
.
returnCode
===
"
0000
"
)
{
this
.
doctorOptions
=
res
.
content
||
[];
this
.
doctorOptions
=
res
.
content
||
[];
}
else
{
}
else
{
...
...
src/views/charge-query/index.vue
View file @
17b9e1c1
...
@@ -53,10 +53,10 @@
...
@@ -53,10 +53,10 @@
<a-select
v-model=
"form.doctorCode"
placeholder=
"请选择看诊医生"
allowClear
>
<a-select
v-model=
"form.doctorCode"
placeholder=
"请选择看诊医生"
allowClear
>
<a-select-option
<a-select-option
v-for=
"item in doctorOptions"
v-for=
"item in doctorOptions"
:key=
"item.
c
ode"
:key=
"item.
doctorC
ode"
:value=
"item.
c
ode"
:value=
"item.
doctorC
ode"
>
>
{{
item
.
name
}}
{{
item
.
doctorDesc
}}
</a-select-option>
</a-select-option>
</a-select>
</a-select>
</a-form-model-item>
</a-form-model-item>
...
@@ -134,6 +134,7 @@
...
@@ -134,6 +134,7 @@
<
script
>
<
script
>
import
BurtPagination
from
"
@/components/CUSTOMER/pagation
"
;
import
BurtPagination
from
"
@/components/CUSTOMER/pagation
"
;
import
{
mapState
}
from
"
vuex
"
export
default
{
export
default
{
data
()
{
data
()
{
const
columns
=
[
const
columns
=
[
...
@@ -230,6 +231,11 @@ export default {
...
@@ -230,6 +231,11 @@ export default {
components
:
{
components
:
{
BurtPagination
,
BurtPagination
,
},
},
computed
:
{
...
mapState
({
userInfo
:
(
state
)
=>
state
.
common
.
userInfo
})
},
created
()
{
created
()
{
this
.
_getChargeList
();
this
.
_getChargeList
();
this
.
_getCompanyOptions
();
this
.
_getCompanyOptions
();
...
@@ -255,7 +261,7 @@ export default {
...
@@ -255,7 +261,7 @@ export default {
},
},
// 获取看诊医生下拉选项
// 获取看诊医生下拉选项
_getDoctorListNoPage
(){
_getDoctorListNoPage
(){
this
.
$apis
.
GETDOCTORlISTNOPAGE
().
then
((
res
)
=>
{
this
.
$apis
.
GETDOCTORlISTNOPAGE
(
{
"
providerId
"
:
this
.
userInfo
.
providerId
}
).
then
((
res
)
=>
{
if
(
res
.
returnCode
===
"
0000
"
)
{
if
(
res
.
returnCode
===
"
0000
"
)
{
this
.
doctorOptions
=
res
.
content
||
[];
this
.
doctorOptions
=
res
.
content
||
[];
}
else
{
}
else
{
...
@@ -276,7 +282,6 @@ export default {
...
@@ -276,7 +282,6 @@ export default {
//设置行属性
//设置行属性
handlerRowClick
(
record
)
{
handlerRowClick
(
record
)
{
const
{
receiptNo
}
=
record
;
const
{
receiptNo
}
=
record
;
console
.
log
(
'
receiptNo=
'
,
receiptNo
);
return
{
return
{
style
:
{
style
:
{
color
:
record
.
isEdit
?
"
#2B63FF
"
:
"
#252631
"
,
color
:
record
.
isEdit
?
"
#2B63FF
"
:
"
#252631
"
,
...
...
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