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
73f63c16
Commit
73f63c16
authored
Feb 18, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'修改'
parent
177a872d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
64 additions
and
14 deletions
+64
-14
detail.vue
src/views/charge-query/detail.vue
+2
-2
company.vue
src/views/info/company.vue
+11
-0
companyInfo.vue
src/views/info/components/companyInfo.vue
+16
-2
index.vue
src/views/info/index.vue
+35
-10
No files found.
src/views/charge-query/detail.vue
View file @
73f63c16
...
...
@@ -57,9 +57,9 @@
</a-col>
<a-col
:xl=
"16"
:lg=
"12"
:sm=
"12"
class=
"none-label"
>
<a-form-model-item
label=
"button"
>
<a-button>
更新数据
</a-button>
<
!--
<
a-button>
更新数据
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"addNewCharge"
>
<Icon
name=
"ssiadd"
:size=
"14"
/>
新建预授权
</a-button>
<Icon
name=
"ssiadd"
:size=
"14"
/>
新建预授权
</a-button>
-->
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerReset"
>
<Icon
name=
"ssireset"
:size=
"14"
/>
重置
</a-button>
...
...
src/views/info/company.vue
View file @
73f63c16
...
...
@@ -83,6 +83,7 @@ export default {
total
:
0
,
},
dataList
:
[],
countyList
:
[],
editFormObj
:
{
id
:
""
,
longName
:
""
,
...
...
@@ -102,8 +103,18 @@ export default {
},
created
()
{
this
.
getData
();
this
.
getRefcdByRefgrp
();
},
methods
:
{
// 获取国家列表
getRefcdByRefgrp
()
{
this
.
$apis
.
GETREFCDBYREFGRP
({
modid
:
"
CI
"
,
refgrp
:
"
COUNTRY_MAPPING
"
}).
then
((
res
)
=>
{
this
.
countyList
=
res
.
content
||
[];
});
},
//获取列表
getData
()
{
this
.
$apis
...
...
src/views/info/components/companyInfo.vue
View file @
73f63c16
...
...
@@ -14,7 +14,9 @@
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"国家"
>
<a-input
v-model=
"detailObj.country"
placeholder=
"国家"
/>
<a-select
v-model=
"detailObj.country"
placeholder=
"请选择"
>
<a-select-option
v-for=
"(item) in countyList"
:value=
"item.descCh"
:key=
"item.id"
>
{{
item
.
descCh
}}
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
</a-row>
...
...
@@ -127,10 +129,22 @@ export default {
},
data
()
{
return
{
countyList
:
[],
}
},
created
(){
this
.
getRefcdByRefgrp
();
},
methods
:
{
// 获取国家列表
getRefcdByRefgrp
()
{
this
.
$apis
.
GETREFCDBYREFGRP
({
modid
:
"
CI
"
,
refgrp
:
"
COUNTRY_MAPPING
"
}).
then
((
res
)
=>
{
this
.
countyList
=
res
.
content
||
[];
});
},
//新建保存
handlerSava
(){
this
.
$apis
.
PAYORUPDATE
({
...
...
src/views/info/index.vue
View file @
73f63c16
...
...
@@ -107,14 +107,27 @@
okText=
"确定"
cancelText=
"取消"
@
ok=
"handleEditOK"
@
cancel=
"dialogShow = false"
>
<a-form-model
ref=
"editForm"
:model=
"editFormObj"
:rules=
"editRules"
>
<a-form-model-item
label=
"医生英文名"
prop=
"doctorDescLang1"
>
<a-input
v-model.trim=
"editFormObj.doctorDescLang1"
placeholder=
"医生英文名"
/>
</a-form-model-item>
<a-form-model-item
label=
"科室"
prop=
"specialtyList"
>
<a-select
v-model=
"editFormObj.specialtyList"
placeholder=
"请选择"
mode=
"multiple"
>
<a-select-option
:value=
"item.id"
v-for=
"item in specialtyList"
:key=
"item.id"
>
{{ item.specialtyDesc }}
</a-select-option>
</a-select>
</a-form-model-item>
<a-row
:gutter=
"30"
>
<a-col
:lg=
"12"
:sm=
"24"
>
<a-form-model-item
label=
"医生英文名"
prop=
"doctorDescLang1"
>
<a-input
v-model.trim=
"editFormObj.doctorDescLang1"
placeholder=
"医生英文名"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"12"
:sm=
"24"
>
<a-form-model-item
label=
"国家"
prop=
"country"
>
<a-select
v-model=
"editFormObj.country"
placeholder=
"请选择"
showSearch
allowClear
>
<a-select-option
v-for=
"(item) in countyList"
:value=
"item.descCh"
:key=
"item.id"
>
{{item.descCh}}
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col
:lg=
"12"
:sm=
"24"
>
<a-form-model-item
label=
"科室"
prop=
"specialtyList"
>
<a-select
v-model=
"editFormObj.specialtyList"
placeholder=
"请选择"
mode=
"multiple"
showSearch
allowClear
>
<a-select-option
:value=
"item.id"
v-for=
"item in specialtyList"
:key=
"item.id"
>
{{ item.specialtyDesc }}
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
</a-modal>
</div>
...
...
@@ -146,9 +159,11 @@ export default {
},
specialtyList
:
[],
//科室列表
specialtyObj
:
{},
//科室对象
countyList
:
[],
editFormObj
:
{
id
:
""
,
doctorDescLang1
:
''
,
country
:
''
,
specialtyList
:
[],
},
editRules
:
{
...
...
@@ -165,6 +180,7 @@ export default {
this
.
getSpecialtyList
();
await
this
.
getDetail
();
this
.
getDoctorList
();
this
.
getRefcdByRefgrp
();
},
methods
:
{
filterSpecialty
(
val
)
{
...
...
@@ -177,6 +193,15 @@ export default {
this
.
pagination
.
pageNum
=
1
;
this
.
getData
();
},
// 获取国家列表
getRefcdByRefgrp
()
{
this
.
$apis
.
GETREFCDBYREFGRP
({
modid
:
"
CI
"
,
refgrp
:
"
COUNTRY_MAPPING
"
}).
then
((
res
)
=>
{
this
.
countyList
=
res
.
content
||
[];
});
},
//获取科室
getSpecialtyList
()
{
this
.
$apis
.
GETSPECIALTYLIST
().
then
((
res
)
=>
{
...
...
@@ -236,6 +261,7 @@ export default {
this
.
editFormObj
=
{
id
:
record
.
id
||
""
,
doctorDescLang1
:
record
.
doctorDescLang1
||
""
,
country
:
record
.
country
||
""
,
specialtyList
:
record
.
specialtyList
||
[],
};
this
.
dialogShow
=
true
;
...
...
@@ -246,8 +272,7 @@ export default {
if
(
valid
)
{
this
.
$apis
.
DOCTORUPDATE
({
id
:
this
.
editFormObj
.
id
,
doctorDescLang1
:
this
.
editFormObj
.
doctorDescLang1
,
...
this
.
editFormObj
,
specialtyList
:
this
.
editFormObj
.
specialtyList
.
map
((
item
)
=>
{
return
{
specialtyId
:
item
,
...
...
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