数据导入菜单增加字段
This commit is contained in:
parent
3bb5a52bce
commit
0dc8539b57
@ -6,10 +6,10 @@ ENV = 'development'
|
||||
|
||||
# 新医路院后患者管理平台/开发环境
|
||||
# VUE_APP_BASE_API = 'http://192.168.20.37:19090'
|
||||
# VUE_APP_BASE_API = 'http://8.131.93.145:54098'
|
||||
VUE_APP_BASE_API = 'http://8.131.93.145:54098'
|
||||
# VUE_APP_BASE_API = 'http://192.168.0.95:9090'
|
||||
# VUE_APP_BASE_API = 'https://1608.xinelu.cn'
|
||||
VUE_APP_BASE_API = 'http://192.168.124.10:19090'
|
||||
# VUE_APP_BASE_API = 'http://192.168.124.10:19090'
|
||||
|
||||
|
||||
# 路由懒加载
|
||||
|
||||
@ -6,8 +6,8 @@ ENV = 'production'
|
||||
|
||||
# 新医路院后患者管理平台/生产环境
|
||||
# VUE_APP_BASE_API = 'http://192.168.20.37:19090'
|
||||
# VUE_APP_BASE_API = 'http://8.131.93.145:54098'
|
||||
VUE_APP_BASE_API = 'http://8.131.93.145:54098'
|
||||
# VUE_APP_BASE_API = 'http://192.168.0.95:9090'
|
||||
# VUE_APP_BASE_API = 'https://1608.xinelu.cn'
|
||||
VUE_APP_BASE_API = 'http://192.168.124.10:19090'
|
||||
# VUE_APP_BASE_API = 'http://192.168.124.10:19090'
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ ENV = 'staging'
|
||||
|
||||
# 新医路院后患者管理平台/测试环境
|
||||
# VUE_APP_BASE_API = 'http://192.168.20.37:19090'
|
||||
# VUE_APP_BASE_API = 'http://8.131.93.145:54098'
|
||||
VUE_APP_BASE_API = 'http://8.131.93.145:54098'
|
||||
# VUE_APP_BASE_API = 'http://192.168.0.95:9090'
|
||||
# VUE_APP_BASE_API = 'https://1608.xinelu.cn'
|
||||
VUE_APP_BASE_API = 'http://192.168.124.10:19090'
|
||||
# VUE_APP_BASE_API = 'http://192.168.124.10:19090'
|
||||
|
||||
@ -136,18 +136,19 @@
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table
|
||||
:height="tableHeight"
|
||||
v-loading="loading"
|
||||
:data="externalImportList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="导入编号" align="center" prop="sn" />
|
||||
<el-table-column label="患者姓名" align="center" prop="patientName" />
|
||||
<el-table-column label="患者电话" align="center" prop="phone" />
|
||||
<el-table-column label="年龄" align="center" prop="age" />
|
||||
<el-table-column label="年龄" align="center" prop="age" width="50" />
|
||||
<el-table-column label="身份证号" align="center" prop="cardNo" />
|
||||
<el-table-column label="性别" align="center" prop="sex" />
|
||||
<el-table-column label="性别" align="center" prop="sex" width="50" />
|
||||
<el-table-column
|
||||
label="所属科室名称"
|
||||
align="center"
|
||||
@ -182,31 +183,6 @@
|
||||
<span>{{ parseTime(scope.row.dataGetTime, "{y}-{m}-{d}") }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
fixed="right"
|
||||
class-name="small-padding fixed-width"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['system:externalImport:edit']"
|
||||
>修改</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['system:externalImport:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
@ -384,6 +360,7 @@ export default {
|
||||
name: "ExternalImport",
|
||||
data() {
|
||||
return {
|
||||
tableHeight: 480,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
@ -563,6 +540,11 @@ export default {
|
||||
);
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
showSearch(val) {
|
||||
this.tableHeight = val ? 480 : 600;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user