pengjun 4 months ago
parent
commit
32ef9ded8b
  1. 2
      public/sysConfig.json
  2. 4
      src/components/customerOrg/ContactPerson.vue
  3. 2
      src/components/customerOrg/customerOrgRegister.vue
  4. 2
      src/views/customerOrg/customerOrg.vue
  5. 20
      src/views/fee-settings/cardRegister.vue

2
public/sysConfig.json

@ -1,5 +1,5 @@
{
"apiurl": "http://192.168.0.188:9527",
"apiurl": "http://192.168.0.188:9530",
"softName": "神豚体检管理系统",
"pacsApi": "http://192.168.0.188:9530",
"dcmViewers": "https://app.mzaktj.com:4436",

4
src/components/customerOrg/ContactPerson.vue

@ -2,7 +2,7 @@
<div>
<div style="display: flex;">
<div :style="'width:' + (window.pageWidth - 200 - 110 - 25) + 'px;'">
<el-table :data="contactPersonList" border :height="(window.pageHeight < 600 ? 100 : window.pageHeight - 400) / 2"
<el-table :data="contactPersonList" border :height="(window.pageHeight < 600 ? 77 : window.pageHeight - 446) / 2"
size="small" highlight-current-row @row-click="rowClick" ref="contactPersonList">
<el-table-column prop="displayName" label="姓名" min-width="70" align="center" />
<el-table-column prop="title" label="职务" min-width="70" align="center" />
@ -25,7 +25,7 @@
</el-table-column>
</el-table>
<el-table :data="contactMethodList" border :height="(window.pageHeight < 600 ? 100 : window.pageHeight - 400) / 2"
<el-table :data="contactMethodList" border :height="(window.pageHeight < 600 ? 77 : window.pageHeight - 446) / 2"
size="small" highlight-current-row ref="contactMethodList">
<el-table-column prop="contactMethodType" label="类型" width="60" align="center">
<template slot-scope="scope">

2
src/components/customerOrg/customerOrgRegister.vue

@ -2,7 +2,7 @@
<div style="display: flex;">
<div :style="'width:' + (window.pageWidth - 200 - 110 - 25) + 'px;'">
<el-table :data="customerOrg.customerOrgRegisterList" border
:height="window.pageHeight < 600 ? 200 : window.pageHeight - 400" size="small" highlight-current-row
:height="window.pageHeight < 600 ? 155 : window.pageHeight - 445" size="small" highlight-current-row
@row-click="rowClick" ref="customerOrg.customerOrgRegisterList">
<el-table-column prop="id" label="编号" width="300" align="center" />
<el-table-column prop="isQuestion" width="70" align="center">

2
src/views/customerOrg/customerOrg.vue

@ -11,7 +11,7 @@
</div>
<div>
<!-- 单位详情 录入与编辑 -->
<div style="height:270px;">
<div style="height:315px;">
<CustomerOrgEdit :id="customerOrg.customerOrgRd.id" />
</div>
<!-- 体检次数 联系人 -->

20
src/views/fee-settings/cardRegister.vue

@ -1153,9 +1153,6 @@ export default {
// --
btnImportCardOK() {
this.elProgress.display = true;
this.elProgress.percentage = 0;
this.importCols = []
this.excelCols.forEach(e => {
if (e.val) {
@ -1168,10 +1165,19 @@ export default {
if (e.choosed) this.choosedData.push(e)
});
//
this.importing(this.dataImportOpts.startRow)
//
document.getElementById('fileNames').value = '';
if (this.choosedData.length == 0) {
this.$message.warning({ showClose: true, message: '请选中要导入的记录' })
return
} else {
this.elProgress.display = true;
this.elProgress.percentage = 0;
//
this.importing(this.dataImportOpts.startRow)
//
document.getElementById('fileNames').value = '';
}
},
//

Loading…
Cancel
Save