|
|
@ -80,7 +80,7 @@ |
|
|
{{ dddw(dict.personnelType, "id", scope.row[dragCol[index].prop], "displayName") }} |
|
|
{{ dddw(dict.personnelType, "id", scope.row[dragCol[index].prop], "displayName") }} |
|
|
</div> |
|
|
</div> |
|
|
<div v-else-if="dragCol[index].prop == 'idNo'"> |
|
|
<div v-else-if="dragCol[index].prop == 'idNo'"> |
|
|
{{ scope.row[dragCol[index].prop]}} |
|
|
|
|
|
|
|
|
{{ scope.row[dragCol[index].prop] }} |
|
|
</div> |
|
|
</div> |
|
|
<div v-else-if="dragCol[index].prop == 'customerOrgName'"> |
|
|
<div v-else-if="dragCol[index].prop == 'customerOrgName'"> |
|
|
{{ scope.row[dragCol[index].prop] == scope.row['customerOrgParentName'] ? |
|
|
{{ scope.row[dragCol[index].prop] == scope.row['customerOrgParentName'] ? |
|
|
@ -278,7 +278,7 @@ |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
<!-- 批量调整检查项目医生 --> |
|
|
<!-- 批量调整检查项目医生 --> |
|
|
<el-dialog title="批量调整检查项目医生" :visible.sync="dialogWin.PatientRegisterEditDoctorBatch" width="610px" |
|
|
|
|
|
|
|
|
<el-dialog title="批量调整检查项目医生" :visible.sync="dialogWin.PatientRegisterEditDoctorBatch" width="610px" |
|
|
:append-to-body="true" :close-on-click-modal="false"> |
|
|
:append-to-body="true" :close-on-click-modal="false"> |
|
|
<PatientRegisterEditDoctorBatch :multipleSelection="multipleSelection" /> |
|
|
<PatientRegisterEditDoctorBatch :multipleSelection="multipleSelection" /> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
@ -426,6 +426,12 @@ export default { |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
queueParams: {}, // 分诊排队参数 |
|
|
queueParams: {}, // 分诊排队参数 |
|
|
|
|
|
LocalConfig: { |
|
|
|
|
|
normal: { |
|
|
|
|
|
maxResultCount: 100, //分页时单页记录数 |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
|
|
|
LocalConfigInit: {}, |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
@ -433,6 +439,17 @@ export default { |
|
|
//获取用户当前页面的权限 |
|
|
//获取用户当前页面的权限 |
|
|
let userPriv = window.sessionStorage.getItem('userPriv') |
|
|
let userPriv = window.sessionStorage.getItem('userPriv') |
|
|
if (userPriv) this.pagePriv.privs = deepCopy(getPagePriv(this.pagePriv.routeUrlorPageName)) |
|
|
if (userPriv) this.pagePriv.privs = deepCopy(getPagePriv(this.pagePriv.routeUrlorPageName)) |
|
|
|
|
|
|
|
|
|
|
|
this.LocalConfigInit = deepCopy(this.LocalConfig) |
|
|
|
|
|
let LocalConfig = window.localStorage.getItem("LocalConfig") || null |
|
|
|
|
|
// console.log('LocalConfig',LocalConfig) |
|
|
|
|
|
try { |
|
|
|
|
|
this.LocalConfig = Object.assign({}, deepCopy(this.LocalConfigInit), JSON.parse(LocalConfig) || {}) |
|
|
|
|
|
} catch (error) { |
|
|
|
|
|
console.log('window.localStorage.getItem("LocalConfig")', error) |
|
|
|
|
|
} |
|
|
|
|
|
// console.log('this.LocalConfig',this.LocalConfig) |
|
|
|
|
|
this.loadOpts.maxResultCount = Number(this.LocalConfig.normal.maxResultCount||100) |
|
|
|
|
|
|
|
|
this.loadOptsInit = Object.assign({}, this.loadOpts) |
|
|
this.loadOptsInit = Object.assign({}, this.loadOpts) |
|
|
|
|
|
|
|
|
@ -1624,6 +1641,7 @@ export default { |
|
|
|
|
|
|
|
|
let tableData = table.innerHTML |
|
|
let tableData = table.innerHTML |
|
|
let fileName = moment(new Date()).format('yyyyMMDDHHmmss') |
|
|
let fileName = moment(new Date()).format('yyyyMMDDHHmmss') |
|
|
|
|
|
|
|
|
let blob = new Blob([tableData], { type: "text/plain;charset=utf-8" }); |
|
|
let blob = new Blob([tableData], { type: "text/plain;charset=utf-8" }); |
|
|
|
|
|
|
|
|
FileSaver.saveAs(blob, fileName + '.xls'); |
|
|
FileSaver.saveAs(blob, fileName + '.xls'); |
|
|
@ -1631,7 +1649,7 @@ export default { |
|
|
// 导出图片 |
|
|
// 导出图片 |
|
|
// 使用html2canvas将HTML元素转换为画布 |
|
|
// 使用html2canvas将HTML元素转换为画布 |
|
|
// let cloneTable = table.cloneNode(true) //[elId] |
|
|
// let cloneTable = table.cloneNode(true) //[elId] |
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
html2canvas(table).then(canvas => { |
|
|
html2canvas(table).then(canvas => { |
|
|
|
|
|
|
|
|
// 创建一个a元素用于下载 |
|
|
// 创建一个a元素用于下载 |
|
|
@ -1650,6 +1668,7 @@ export default { |
|
|
// pdf.save('员工信息表.pdf'); |
|
|
// pdf.save('员工信息表.pdf'); |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|
|
|
|
*/ |
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|