Browse Source

Merge branch 'feature/dev_point_manage'

master
wanggongfeng 3 years ago
parent
commit
d32fa004e8
  1. 5
      src/views/modules/plugins/point/icpointnucleicmonitoring.vue
  2. 11
      src/views/modules/plugins/point/icpointvaccinesinoculation.vue

5
src/views/modules/plugins/point/icpointnucleicmonitoring.vue

@ -112,6 +112,7 @@
v-loading="dataListLoading"
:data="dataList"
border
:row-key="row => { return row.id.toString() }"
:header-cell-style="{ background: '#2195FE', color: '#FFFFFF' }"
style="width: 100%; height: 564px"
><el-table-column
@ -153,8 +154,7 @@
show-overflow-tooltip
></el-table-column>
<el-table-column
:label="$t('handle')"
fixed="right"
label="操作"
header-align="center"
align="center"
width="150"
@ -257,6 +257,7 @@ export default {
pageSize: 20,
pageNo: 0,
total: 0,
dataListLoading:false
};
},
components: {

11
src/views/modules/plugins/point/icpointvaccinesinoculation.vue

@ -102,6 +102,7 @@
v-loading="dataListLoading"
:data="dataList"
border
:row-key="row => { return row.id.toString() }"
:header-cell-style="{ background: '#2195FE', color: '#FFFFFF' }"
style="width: 100%; height: 564px;overflow: auto;"
>
@ -112,12 +113,6 @@
type="index"
width="50"
></el-table-column>
<!--<el-table-column-->
<!--prop="orgName"-->
<!--label="所属组织名称"-->
<!--header-align="center"-->
<!--align="center"-->
<!--&gt;</el-table-column>-->
<el-table-column
prop="name"
label="疫苗接种点名称"
@ -171,8 +166,7 @@
show-overflow-tooltip
></el-table-column>
<el-table-column
:label="$t('handle')"
fixed="right"
label="操作"
header-align="center"
align="center"
width="150"
@ -273,6 +267,7 @@ export default {
pageSize: 20,
pageNo: 0,
total: 0,
dataListLoading:false,
};
},
components: {

Loading…
Cancel
Save