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
94db2c8f
Commit
94db2c8f
authored
Jul 05, 2023
by
王安伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'func_eccs_2250' into test
parents
0bf51ded
c096c57c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
54 deletions
+68
-54
collectionDetail.vue
src/views/verification/collectionDetail.vue
+68
-54
No files found.
src/views/verification/collectionDetail.vue
View file @
94db2c8f
...
...
@@ -104,16 +104,16 @@
<a-tabs
type=
"card"
v-model=
"activeKey1"
>
<a-tab-pane
v-for=
"pane in panes1"
:key=
"pane.key"
:tab=
"pane.title"
>
<div>
<a-row
class=
"search-form"
>
<a-row
type=
"flex"
align=
"middle"
class=
"search-form"
>
<a-form-model
ref=
"searchForm"
layout=
"inline"
:labelCol=
"
{ span:
9
}"
:wrapperCol="{ span: 1
5
}"
:labelCol=
"
{ span:
8
}"
:wrapperCol="{ span: 1
6
}"
:model="searchForm"
>
<a-row
:gutter=
"30"
>
<a-col
:lg=
"
5"
:sm=
"10
"
>
<a-row>
<a-col
:lg=
"
4"
:sm=
"12
"
>
<a-form-model-item
label=
"账单日期"
>
<a-range-picker
format=
"YYYY-MM-DD"
...
...
@@ -123,7 +123,7 @@
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"4"
:sm=
"1
0
"
>
<a-col
:lg=
"4"
:sm=
"1
2
"
>
<a-form-model-item
label=
"病历号"
>
<a-input
v-model=
"searchForm.mrnNo"
...
...
@@ -144,7 +144,7 @@
</a-form-model-item>
</a-col>
<a-col
:lg=
"4"
:sm=
"12"
>
<a-form-model-item
label=
"状态"
>
<a-form-model-item
label=
"状态"
:labelCol=
"
{ span: 7 }" :wrapperCol="{ span: 14 }"
>
<a-select
v-model=
"searchForm.rStatus"
placeholder=
"请选择状态"
allowClear
>
<a-select-option
v-for=
"item in statusOptions"
:key=
"item.code"
:value=
"item.code"
>
{{
item
.
name
}}
...
...
@@ -162,12 +162,17 @@
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"2
"
:sm=
"12"
>
<div
class=
"btn-div mar-bottom10 none-label"
>
<a-col
class=
"flex-col"
:lg=
"4
"
:sm=
"12"
>
<div>
<a-button
type=
"primary"
@
click=
"searchData"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
</a-button>
</div>
<div
v-if=
"activeKey1 === '0' && selectedRows.length > 0"
>
<a-button
type=
"primary"
@
click=
"exportExcel"
>
<Icon
name=
"ssidaochu"
:size=
"14"
/>
导出
</a-button>
</div>
</a-col>
</a-row>
</a-form-model>
...
...
@@ -176,11 +181,7 @@
<!-- 已关联账单 -->
<template
v-if=
"activeKey1 === '0'"
>
<template
v-if=
"selectedRows.length > 0"
>
<div
class=
"table-title"
>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"exportExcel"
>
<Icon
name=
"ssidaochu"
:size=
"14"
/>
导出
</a-button>
</div>
<div
class=
"all-list_box"
>
<a-table
class=
"table-content"
:rowClassName=
"rowClassName"
...
...
@@ -198,11 +199,13 @@
<a-button
type=
"link"
class=
"danger"
@
click.stop=
"delRecord(record, index)"
>
删除
</a-button>
</
template
>
</a-table>
</div>
</template>
</template>
<
template
v-else
>
<!-- table -->
<template
v-if=
"isEdit"
>
<div
class=
"all-list_box"
>
<a-table
class=
"table-content all-list"
:columns=
"columns"
...
...
@@ -223,6 +226,7 @@
</
template
>
</a-table>
<BurtPagination
class=
"pagination"
:pagination=
"pagination"
@
pageChange=
"pageChange"
/>
</div>
</template>
</template>
</a-tab-pane>
...
...
@@ -856,10 +860,9 @@ export default {
opacity: 0;
}
}
.table-title {
font-size: 15px;
margin: 6px 0;
text-align: right;
.all-list_box {
height: calc(100vh - 430px);
overflow-y: auto;
}
.table-content {
::v-deep {
...
...
@@ -875,6 +878,12 @@ export default {
.ant-form .ant-form-item {
margin-bottom: 4px;
}
.flex-col {
display: flex;
justify-content: space-around;
align-items: center;
height: 44px;
}
}
.ant-btn .icon-class {
.mg-r(10);
...
...
@@ -904,6 +913,11 @@ export default {
overflow-y: auto;
overflow-x: hidden;
padding-right: 12px;
::v-deep {
.ant-form-item {
margin-right: 0;
}
}
.pagination {
margin-top: 10px;
::v-deep .jump-page {
...
...
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