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
f1bb9c70
Commit
f1bb9c70
authored
Jul 11, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加字段
parent
2cce847b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
8 deletions
+35
-8
README.md
README.md
+3
-0
infoDoctor.vue
src/views/info/components/infoDoctor.vue
+2
-0
add.vue
src/views/pre-auth/add.vue
+16
-4
index.vue
src/views/pre-auth/index.vue
+8
-2
index.vue
src/views/welfare/info/components/benefits/index.vue
+6
-2
No files found.
README.md
View file @
f1bb9c70
...
@@ -13,6 +13,9 @@
...
@@ -13,6 +13,9 @@
### 接口文档地址
### 接口文档地址
[
接口文档地址
](
http://git.ssish.com/root/core-ci/wikis/interface_document
)
[
接口文档地址
](
http://git.ssish.com/root/core-ci/wikis/interface_document
)
### bug文档地址
> https://doc.weixin.qq.com/sheet/e3_AJUAZgYxAAgc43lZU8US7aQNaosuJ?scode=AMoAawcKABAwUOv0vIACEApQbQAFk&tab=BB08J2
### 测试
### 测试
1.
IP: 114.55.4.202
1.
IP: 114.55.4.202
2.
域名 http://nt.run4wd.com/bims
2.
域名 http://nt.run4wd.com/bims
...
...
src/views/info/components/infoDoctor.vue
View file @
f1bb9c70
...
@@ -118,6 +118,7 @@ export default{
...
@@ -118,6 +118,7 @@ export default{
country
:
''
,
country
:
''
,
language
:
[],
language
:
[],
specialtyList
:
[],
specialtyList
:
[],
jobStatus
:
''
,
},
},
editRules
:
{
editRules
:
{
specialtyList
:
[
specialtyList
:
[
...
@@ -211,6 +212,7 @@ export default{
...
@@ -211,6 +212,7 @@ export default{
country
:
record
.
country
||
""
,
country
:
record
.
country
||
""
,
language
:
record
.
language
?
record
.
language
.
split
(
'
,
'
):
[],
language
:
record
.
language
?
record
.
language
.
split
(
'
,
'
):
[],
specialtyList
:
record
.
specialtyList
||
[],
specialtyList
:
record
.
specialtyList
||
[],
jobStatus
:
record
.
jobStatus
||
""
};
};
this
.
dialogShow
=
true
;
this
.
dialogShow
=
true
;
},
},
...
...
src/views/pre-auth/add.vue
View file @
f1bb9c70
...
@@ -133,19 +133,31 @@
...
@@ -133,19 +133,31 @@
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"
补充材料
"
>
<a-form-model-item
label=
"
文件上传
"
>
<a-upload
name=
"file"
:multiple=
"false"
:showUploadList=
"true"
<a-upload
name=
"file"
:multiple=
"false"
:showUploadList=
"true"
:fileList=
"form.supplementalResult"
:fileList=
"form.supplementalResult"
:customRequest=
"(file)=>uploadFile(file, 2)"
:customRequest=
"(file)=>uploadFile(file, 2)"
:beforeUpload=
"()=>beforeUpload(2)"
:beforeUpload=
"()=>beforeUpload(2)"
:remove=
"(file)=>removeFile(file, 2)"
>
:remove=
"(file)=>removeFile(file, 2)"
>
<a-button
type=
"primary"
>
<Icon
name=
"ssiupload"
:size=
"18"
/>
上传材料
</a-button>
<a-button
type=
"primary"
>
<Icon
name=
"ssiupload"
:size=
"18"
/>
文件上传
</a-button>
</a-upload>
</a-upload>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
</a-row>
</a-row>
<a-row>
<a-row
:gutter=
"30"
>
<a-col
:lg=
"24"
:sm=
"12"
class=
"none-label"
>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"预授权开始日期"
>
<a-date-picker
allow-clear
v-model=
"form.firstVisitDate"
placeholder=
"请选择开始日期"
value-format=
"YYYY-MM-DD 00:00:00"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"预授权截止日期"
>
<a-date-picker
allow-clear
v-model=
"form.firstVisitDate"
placeholder=
"请选择截止日期"
value-format=
"YYYY-MM-DD 00:00:00"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"12"
:sm=
"12"
class=
"none-label"
>
<a-form-model-item
label=
"button"
>
<a-form-model-item
label=
"button"
>
<a-button
type=
"primary"
@
click=
"saveEvt"
:loading=
"loading"
>
<a-button
type=
"primary"
@
click=
"saveEvt"
:loading=
"loading"
>
<Icon
:name=
"id?'ssibaocun':'ssiadd'"
:size=
"14"
/>
{{
id
?
'
保存预授权
'
:
'
新建预授权
'
}}
<Icon
:name=
"id?'ssibaocun':'ssiadd'"
:size=
"14"
/>
{{
id
?
'
保存预授权
'
:
'
新建预授权
'
}}
...
...
src/views/pre-auth/index.vue
View file @
f1bb9c70
...
@@ -41,9 +41,14 @@
...
@@ -41,9 +41,14 @@
<a-input
v-model=
"form.patientName"
placeholder=
"请输入客户姓名"
allow-clear
/>
<a-input
v-model=
"form.patientName"
placeholder=
"请输入客户姓名"
allow-clear
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:lg=
"12"
:sm=
"12"
class=
"none-label"
>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"预授权日期"
>
<a-range-picker
format=
"YYYY年MM月DD日"
v-model=
"form.dateRange2"
:placeholder=
"['开始日期', '结束日期']"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
class=
"none-label"
>
<a-form-model-item
label=
"button"
>
<a-form-model-item
label=
"button"
>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<a-button
type=
"primary"
@
click=
"handlerSearch"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
</a-button>
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"reset"
>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"reset"
>
...
@@ -108,6 +113,7 @@ export default{
...
@@ -108,6 +113,7 @@ export default{
ApplyStatusOptions
,
ApplyStatusOptions
,
form
:
{
form
:
{
dateRange
:
[],
dateRange
:
[],
dateRange2
:
[],
payorCode
:
''
,
payorCode
:
''
,
authProject
:
''
,
authProject
:
''
,
authorStatus
:
''
,
authorStatus
:
''
,
...
...
src/views/welfare/info/components/benefits/index.vue
View file @
f1bb9c70
...
@@ -42,8 +42,8 @@
...
@@ -42,8 +42,8 @@
<a-col
:span=
"12"
>
{{item.benefitDesc}}
</a-col>
<a-col
:span=
"12"
>
{{item.benefitDesc}}
</a-col>
<a-col
:span=
"12"
class=
"border-r"
>
<a-col
:span=
"12"
class=
"border-r"
>
<a-row
:gutter=
"10"
>
<a-row
:gutter=
"10"
>
<a-col
:span=
"
12
"
>
{{item.benefitConditionDesc}}
</a-col>
<a-col
:span=
"
8
"
>
{{item.benefitConditionDesc}}
</a-col>
<a-col
:span=
"
12"
class=
"border-r"
v-if=
"item.remainingQuota || item.remainingQuota === 0
"
>
<a-col
:span=
"
8"
class=
"border-r"
v-if=
"showRemainingQuota(item)
"
>
<a-row
v-if=
"item.isEditRemainingQuota"
>
<a-row
v-if=
"item.isEditRemainingQuota"
>
<a-col
:span=
"14"
>
<a-col
:span=
"14"
>
<a-input
v-model=
"remainingQuotaForm[item.benefitCode]"
placeholder=
"请输入剩余金额"
></a-input>
<a-input
v-model=
"remainingQuotaForm[item.benefitCode]"
placeholder=
"请输入剩余金额"
></a-input>
...
@@ -55,6 +55,7 @@
...
@@ -55,6 +55,7 @@
</a-row>
</a-row>
<p
v-else
@
dblclick=
"editRemainingQuota(item, index)"
title=
"双击可编辑剩余金额"
>
剩余{{item.remainingQuota}}元
</p>
<p
v-else
@
dblclick=
"editRemainingQuota(item, index)"
title=
"双击可编辑剩余金额"
>
剩余{{item.remainingQuota}}元
</p>
</a-col>
</a-col>
<a-col
:span=
"8"
>
{{item.modifierDate}}
</a-col>
</a-row>
</a-row>
</a-col>
</a-col>
</a-row>
</a-row>
...
@@ -83,6 +84,9 @@ export default {
...
@@ -83,6 +84,9 @@ export default {
this
.
_getBenefitData
();
this
.
_getBenefitData
();
},
},
methods
:
{
methods
:
{
showRemainingQuota
(
item
){
return
item
.
remainingQuota
||
item
.
remainingQuota
===
0
;
},
// 编辑剩余金额的打开与取消
// 编辑剩余金额的打开与取消
editRemainingQuota
(
data
,
index
)
{
editRemainingQuota
(
data
,
index
)
{
const
val
=
data
.
isEditRemainingQuota
const
val
=
data
.
isEditRemainingQuota
...
...
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