Browse Source

tree seo

master
pengjun 2 years ago
parent
commit
fc93c87a8a
  1. 33
      src/components/patientRegister/PatientRegisterEdit.vue
  2. 167
      src/router/index.js
  3. 2
      src/views/customerOrg/customerOrg.vue
  4. 4
      src/views/customerOrg/customerOrgGroup.vue
  5. 2
      src/views/customerOrg/patientRegister.vue

33
src/components/patientRegister/PatientRegisterEdit.vue

@ -133,7 +133,7 @@
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<el-form-item label="性激素期" prop="sexHormoneTermId"> <el-form-item label="性激素期" prop="sexHormoneTermId">
<el-select v-model="form.sexHormoneTermId" placeholder="请选择" filterable clearable size="small">
<el-select v-model="form.sexHormoneTermId" placeholder="请选择" filterable clearable size="small" :disabled="isComplete">
<el-option v-for="item in dict.sexHormoneTerm" :key="item.id" :label="item.displayName" <el-option v-for="item in dict.sexHormoneTerm" :key="item.id" :label="item.displayName"
:value="item.id"> :value="item.id">
</el-option> </el-option>
@ -636,7 +636,7 @@ export default {
return this.form.completeFlag == '3' ? true:false; return this.form.completeFlag == '3' ? true:false;
}, },
//
// disabled
displayPackage(){ displayPackage(){
let isPersonOrgId = true let isPersonOrgId = true
if(!this.isComplete){ if(!this.isComplete){
@ -650,7 +650,7 @@ export default {
return isPersonOrgId return isPersonOrgId
}, },
//
// disabled
displayGroup(){ displayGroup(){
let isPersonOrgId = true let isPersonOrgId = true
if(!this.isComplete){ if(!this.isComplete){
@ -782,7 +782,7 @@ export default {
if (!patientRegisterId) { // if (!patientRegisterId) { //
objCopy(this.formInit, this.form); objCopy(this.formInit, this.form);
this.form.organizationUnitId = this.peisid; // this.form.organizationUnitId = this.peisid; //
this.form.customerOrgId = this.patientRegister.query.customerOrgId //
this.form.customerOrgId = this.patientRegister.query.customerOrgId||this.dict.personOrgId //
this.form.customerOrgParentId = await this.getParentCustomerOrgId(this.form.customerOrgId) // this.form.customerOrgParentId = await this.getParentCustomerOrgId(this.form.customerOrgId) //
}else{ }else{
@ -796,13 +796,23 @@ export default {
// / // /
await this.changeCustomerOrgId(this.form.customerOrgId) await this.changeCustomerOrgId(this.form.customerOrgId)
this.dataTransOpts.refresh.register_asbitem.M++ // this.dataTransOpts.refresh.register_asbitem.M++ //
}, },
// //
async changeCustomerOrgId(v){ async changeCustomerOrgId(v){
let customerOrgParentId = await this.getParentCustomerOrgId(v)
let customerOrgId = ""
if(Array.isArray(v) && v.length > 0){
customerOrgId = v[v.length - 1]
}else{
customerOrgId = v
}
let customerOrgParentId = await this.getParentCustomerOrgId(customerOrgId)
if(customerOrgParentId){ if(customerOrgParentId){
if (customerOrgParentId != this.dict.personOrgId) this.getCustomerOrgRegisterList(customerOrgParentId)
// / // /
if(this.form.customerOrgParentId != customerOrgParentId){ if(this.form.customerOrgParentId != customerOrgParentId){
if (customerOrgParentId == this.dict.personOrgId) { if (customerOrgParentId == this.dict.personOrgId) {
@ -815,7 +825,7 @@ export default {
this.form.customerOrgGroupId = null this.form.customerOrgGroupId = null
this.form.medicalPackageId = null this.form.medicalPackageId = null
// //
this.getCustomerOrgRegisterList(customerOrgParentId)
// this.getCustomerOrgRegisterList(customerOrgParentId)
} }
if(this.form.customerOrgParentId == this.dict.personOrgId){ if(this.form.customerOrgParentId == this.dict.personOrgId){
@ -851,14 +861,21 @@ export default {
getapi(`/api/app/customerorgregister/getlistincustomerorgid?CustomerOrgId=${customerOrgParentId}`) getapi(`/api/app/customerorgregister/getlistincustomerorgid?CustomerOrgId=${customerOrgParentId}`)
.then(res =>{ .then(res =>{
if(res.code != - 1){ if(res.code != - 1){
console.log('获取单位体检次数',this.form.customerOrgRegisterId,res.data)
if(this.form.customerOrgRegisterId){
let lfind = arrayExistObj(res.data,"id",this.form.customerOrgRegisterId)
if(lfind == -1) this.form.customerOrgRegisterId = ''
}
if(!this.form.customerOrgRegisterId){
this.customerOrgRegisterList = arrayFilter(res.data, 'isComplete', 'N') // this.customerOrgRegisterList = arrayFilter(res.data, 'isComplete', 'N') //
if(this.customerOrgRegisterList.length > 0){ if(this.customerOrgRegisterList.length > 0){
this.form.customerOrgRegisterId = this.customerOrgRegisterList[this.customerOrgRegisterList.length - 1].id this.form.customerOrgRegisterId = this.customerOrgRegisterList[this.customerOrgRegisterList.length - 1].id
return getapi(`/api/app/customerorggroup/getlistinfilter?CustomerOrgRegisterId=${this.form.customerOrgRegisterId}`) //
} }
} }
if(this.form.customerOrgRegisterId) return getapi(`/api/app/customerorggroup/getlistinfilter?CustomerOrgRegisterId=${this.form.customerOrgRegisterId}`) //
}
}).then(res =>{ }).then(res =>{
if(res.code != -1){
if(res && res.code != -1){
this.patientRegister.customerOrgGroup = res.data.items; this.patientRegister.customerOrgGroup = res.data.items;
} }
}) })

167
src/router/index.js

@ -11,224 +11,223 @@ Vue.use(VueRouter);
const routes = [{ const routes = [{
path: "/", path: "/",
component: login, component: login,
},
{
},
{
path: "/login", path: "/login",
name: "login", name: "login",
component: () =>
import ("../views/login/Login.vue"),
},
{
component: login,
},
{
path: "/home", path: "/home",
name: "home", name: "home",
component: () => component: () =>
import ("../views/Home.vue"),
import("../views/Home.vue"),
children: [ children: [
// 权限管理 ------------------------------- start ------------------------------- // 权限管理 ------------------------------- start -------------------------------
{ {
path: "/organization-units", path: "/organization-units",
name: "科室设置", name: "科室设置",
component: () => component: () =>
import ("../views/user-list/OrganizationUnits.vue"),
import("../views/user-list/OrganizationUnits.vue"),
}, },
{ {
path: "/role", path: "/role",
name: "角色管理", name: "角色管理",
component: () => component: () =>
import ("../views/user-list/Role.vue"),
import("../views/user-list/Role.vue"),
}, },
{ {
path: "/user-list", path: "/user-list",
name: "用户管理", name: "用户管理",
component: () => component: () =>
import ("../views/user-list/UserList.vue"),
import("../views/user-list/UserList.vue"),
}, },
{ {
path: "/audit-log", path: "/audit-log",
name: "安全日志", name: "安全日志",
component: () => component: () =>
import ("../views/user-list/AuditLog.vue"),
import("../views/user-list/AuditLog.vue"),
}, },
{ {
path: "/menuPage", path: "/menuPage",
name: "菜单与页面", name: "菜单与页面",
component: () => component: () =>
import ("../views/menuPage/menuPage.vue"),
import("../views/menuPage/menuPage.vue"),
}, },
// 权限管理 ------------------------------- end ------------------------------- // 权限管理 ------------------------------- end -------------------------------
{ {
path: "/guide-type", path: "/guide-type",
component: () => component: () =>
import ("../views/basic-dictionary/GuideType.vue"),
import("../views/basic-dictionary/GuideType.vue"),
}, },
{ {
path: "/medical-report-type", path: "/medical-report-type",
component: () => component: () =>
import ("../views/basic-dictionary/MedicalReportType.vue"),
import("../views/basic-dictionary/MedicalReportType.vue"),
}, },
{ {
path: "/sex", path: "/sex",
component: () => component: () =>
import ("../views/basic-dictionary/Sex.vue"),
import("../views/basic-dictionary/Sex.vue"),
}, },
{ {
path: "/marital-status", path: "/marital-status",
component: () => component: () =>
import ("../views/basic-dictionary/MaritalStatus.vue"),
import("../views/basic-dictionary/MaritalStatus.vue"),
}, },
{ {
path: "/nation", path: "/nation",
component: () => component: () =>
import ("../views/basic-dictionary/Nation.vue"),
import("../views/basic-dictionary/Nation.vue"),
}, },
{ {
path: "/birth-place", path: "/birth-place",
component: () => component: () =>
import ("../views/basic-dictionary/BirthPlace.vue"),
import("../views/basic-dictionary/BirthPlace.vue"),
}, },
{ {
path: "/result-status", path: "/result-status",
component: () => component: () =>
import ("../views/basic-dictionary/ResultStatus.vue"),
import("../views/basic-dictionary/ResultStatus.vue"),
}, },
{ {
path: "/medical-type", path: "/medical-type",
component: () => component: () =>
import ("../views/basic-dictionary/MedicalType.vue"),
import("../views/basic-dictionary/MedicalType.vue"),
}, },
{ {
path: "/personnel-type", path: "/personnel-type",
component: () => component: () =>
import ("../views/basic-dictionary/PersonnelType.vue"),
import("../views/basic-dictionary/PersonnelType.vue"),
}, },
{ {
path: "/device-type", path: "/device-type",
component: () => component: () =>
import ("../views/basic-dictionary/DeviceType.vue"),
import("../views/basic-dictionary/DeviceType.vue"),
}, },
{ {
path: "/sample-type", path: "/sample-type",
component: () => component: () =>
import ("../views/basic-dictionary/SampleType.vue"),
import("../views/basic-dictionary/SampleType.vue"),
}, },
{ {
path: "/unit", path: "/unit",
component: () => component: () =>
import ("../views/basic-dictionary/Unit.vue"),
import("../views/basic-dictionary/Unit.vue"),
}, },
{ {
path: "/diagnosis-postfix", path: "/diagnosis-postfix",
component: () => component: () =>
import ("../views/basic-dictionary/DiagnosisPostfix.vue"),
import("../views/basic-dictionary/DiagnosisPostfix.vue"),
}, },
{ {
path: "/medical-conclusion-type", path: "/medical-conclusion-type",
component: () => component: () =>
import ("../views/basic-dictionary/MedicalConclusionType.vue"),
import("../views/basic-dictionary/MedicalConclusionType.vue"),
}, },
{ {
path: "/medical-conclusion", path: "/medical-conclusion",
component: () => component: () =>
import ("../views/basic-dictionary/MedicalConclusion.vue"),
import("../views/basic-dictionary/MedicalConclusion.vue"),
}, },
{ {
path: "/sample-container", path: "/sample-container",
component: () => component: () =>
import ("../views/basic-dictionary/SampleContainer.vue"),
import("../views/basic-dictionary/SampleContainer.vue"),
}, },
{ {
path: "/common-char-type", path: "/common-char-type",
component: () => component: () =>
import ("../views/basic-dictionary/CommonCharType.vue"),
import("../views/basic-dictionary/CommonCharType.vue"),
}, },
{ {
path: "/common-char", path: "/common-char",
component: () => component: () =>
import ("../views/basic-dictionary/CommonChar.vue"),
import("../views/basic-dictionary/CommonChar.vue"),
}, },
{ {
path: "/customer-org-type", path: "/customer-org-type",
component: () => component: () =>
import ("../views/basic-dictionary/CustomerOrgType.vue"),
import("../views/basic-dictionary/CustomerOrgType.vue"),
}, },
{ {
path: "/item-default-result", path: "/item-default-result",
component: () => component: () =>
import ("../views/basic-dictionary/ItemDefaultResult.vue"),
import("../views/basic-dictionary/ItemDefaultResult.vue"),
}, },
{ {
path: "/diagnosis-level", path: "/diagnosis-level",
component: () => component: () =>
import ("../views/basic-dictionary/DiagnosisLevel.vue"),
import("../views/basic-dictionary/DiagnosisLevel.vue"),
}, },
{ {
path: "/diagnosisSet", path: "/diagnosisSet",
name: '诊断建议设置', name: '诊断建议设置',
component: () => component: () =>
import ("../views/diagnosis/diagnosis.vue"),
import("../views/diagnosis/diagnosis.vue"),
}, },
//---------------------- 收费设置 start ---------------------- //---------------------- 收费设置 start ----------------------
{ {
path: "/invoice-item-type", path: "/invoice-item-type",
component: () => component: () =>
import ("../views/fee-settings/InvoiceItemType.vue"),
import("../views/fee-settings/InvoiceItemType.vue"),
}, },
{ {
path: "/pay-mode", path: "/pay-mode",
component: () => component: () =>
import ("../views/fee-settings/PayMode.vue"),
import("../views/fee-settings/PayMode.vue"),
}, },
{ {
path: "/cardType", path: "/cardType",
name: "会员卡类别", name: "会员卡类别",
component: () => component: () =>
import ("../views/fee-settings/cardType.vue"),
import("../views/fee-settings/cardType.vue"),
}, },
{ {
path: "/cardRegister", path: "/cardRegister",
name: "会员卡登记", name: "会员卡登记",
component: () => component: () =>
import ("../views/fee-settings/cardRegister.vue"),
import("../views/fee-settings/cardRegister.vue"),
}, },
{ {
path: "/cardBill", path: "/cardBill",
name: "会员卡记账", name: "会员卡记账",
component: () => component: () =>
import ("../views/fee-settings/cardBill.vue"),
import("../views/fee-settings/cardBill.vue"),
}, },
//---------------------- 收费设置 start ---------------------- //---------------------- 收费设置 start ----------------------
{ {
path: "/item-type", path: "/item-type",
component: () => component: () =>
import ("../views/common-settings/ItemType.vue"),
import("../views/common-settings/ItemType.vue"),
}, },
{ {
path: "/sample-group", path: "/sample-group",
name: '条码分组', name: '条码分组',
component: () => component: () =>
import ("../views/common-settings/SampleGroup.vue"),
import("../views/common-settings/SampleGroup.vue"),
}, },
{ {
path: "/asbitem", path: "/asbitem",
component: () => component: () =>
import ("../views/fee-settings/Asbitem.vue"),
import("../views/fee-settings/Asbitem.vue"),
}, },
{ {
path: "/item", path: "/item",
name: '项目设置', name: '项目设置',
component: () => component: () =>
import ("../views/fee-settings/Item.vue"),
import("../views/fee-settings/Item.vue"),
}, },
{ {
path: "/reference-range", path: "/reference-range",
component: () => component: () =>
import ("../views/fee-settings/ReferenceRange.vue"),
import("../views/fee-settings/ReferenceRange.vue"),
}, },
{ {
path: "/diagnosis", path: "/diagnosis",
component: () => component: () =>
import ("../views/fee-settings/Diagnosis.vue"),
import("../views/fee-settings/Diagnosis.vue"),
hidden: true, hidden: true,
// meta: { // meta: {
// title: '诊断', // title: '诊断',
@ -243,88 +242,88 @@ const routes = [{
{ {
path: "/item-result-template", path: "/item-result-template",
component: () => component: () =>
import ("../views/fee-settings/ItemResultTemplate.vue"),
import("../views/fee-settings/ItemResultTemplate.vue"),
}, },
{ {
path: "/item-result-match", path: "/item-result-match",
component: () => component: () =>
import ("../views/fee-settings/ItemResultMatch.vue"),
import("../views/fee-settings/ItemResultMatch.vue"),
}, },
{ {
path: "/item-template", path: "/item-template",
component: () => component: () =>
import ("../views/fee-settings/ItemTemplate.vue"),
import("../views/fee-settings/ItemTemplate.vue"),
}, },
{ {
path: "/medicalPackage", // medical-package path: "/medicalPackage", // medical-package
name: "套餐设置", name: "套餐设置",
component: () => component: () =>
import ("../views/common-settings/medicalPackage.vue"), //../views/fee-settings/MedicalPackage.vue
import("../views/common-settings/medicalPackage.vue"), //../views/fee-settings/MedicalPackage.vue
}, },
{ {
path: "/sex-hormone-reference-range", path: "/sex-hormone-reference-range",
component: () => component: () =>
import ("../views/fee-settings/SexHormoneReferenceRange.vue"),
import("../views/fee-settings/SexHormoneReferenceRange.vue"),
}, },
{ {
path: "/diagnosis-template", path: "/diagnosis-template",
component: () => component: () =>
import ("../views/fee-settings/DiagnosisTemplate.vue"),
import("../views/fee-settings/DiagnosisTemplate.vue"),
}, },
{ {
path: "/sys-parm-type", path: "/sys-parm-type",
component: () => component: () =>
import ("../views/fee-settings/SysParmSet.vue"), //../views/fee-settings/SysParmType.vue
import("../views/fee-settings/SysParmSet.vue"), //../views/fee-settings/SysParmType.vue
}, },
//---------------------- 体检登记 start ---------------------- //---------------------- 体检登记 start ----------------------
{ {
path: "/customerOrg", path: "/customerOrg",
name: "体检单位设置", name: "体检单位设置",
component: () => component: () =>
import ("../views/customerOrg/customerOrg.vue"),
import("../views/customerOrg/customerOrg.vue"),
}, },
{ {
path: "/customerOrgGroup", path: "/customerOrgGroup",
name: "单位分组设置", name: "单位分组设置",
component: () => component: () =>
import ("../views/customerOrg/customerOrgGroup.vue"),
import("../views/customerOrg/customerOrgGroup.vue"),
}, },
{ {
path: "/patientRegister", path: "/patientRegister",
name: "体检人员登记", name: "体检人员登记",
component: () => component: () =>
import ("../views/customerOrg/patientRegister.vue"),
import("../views/customerOrg/patientRegister.vue"),
}, },
{ {
path: "/patientRegisterSign", path: "/patientRegisterSign",
name: "体检人员签到", name: "体检人员签到",
component: () => component: () =>
import ("../views/customerOrg/patientRegisterSign.vue"),
import("../views/customerOrg/patientRegisterSign.vue"),
}, },
{ {
path: "/patientRegisterBatch", path: "/patientRegisterBatch",
name: "人员批量登记", name: "人员批量登记",
component: () => component: () =>
import ("../views/customerOrg/patientRegisterImport.vue"), //../views/doctorCheck/personnelBatch.vue
import("../views/customerOrg/patientRegisterImport.vue"), //../views/doctorCheck/personnelBatch.vue
}, },
{ {
path: "/patientRegisterRecover", path: "/patientRegisterRecover",
name: "体检表回收", name: "体检表回收",
component: () => component: () =>
import ("../views/customerOrg/patientRegisterRecover.vue"),
import("../views/customerOrg/patientRegisterRecover.vue"),
}, },
{ {
path: "/patientRegisterRefuse", path: "/patientRegisterRefuse",
name: "弃检登记", name: "弃检登记",
component: () => component: () =>
import ("../views/customerOrg/patientRegisterRefuse.vue"),
import("../views/customerOrg/patientRegisterRefuse.vue"),
}, },
{ {
path: "/charge", path: "/charge",
name: "体检收费", name: "体检收费",
component: () => component: () =>
import ("../views/charge/charge.vue"),
import("../views/charge/charge.vue"),
}, },
//---------------------- 体检登记 start ---------------------- //---------------------- 体检登记 start ----------------------
//---------------------- 体 检 start ---------------------- //---------------------- 体 检 start ----------------------
@ -332,13 +331,13 @@ const routes = [{
path: "/doctorCheck", path: "/doctorCheck",
name: "体检医生诊台", name: "体检医生诊台",
component: () => component: () =>
import ("../views/doctorCheck/doctorCheck.vue"),
import("../views/doctorCheck/doctorCheck.vue"),
}, },
{ {
path: "/sumDoctorCheck", path: "/sumDoctorCheck",
name: "总检医生诊台", name: "总检医生诊台",
component: () => component: () =>
import ("../views/doctorCheck/sumDoctorCheck.vue"),
import("../views/doctorCheck/sumDoctorCheck.vue"),
}, },
//---------------------- 体 检 end ---------------------- //---------------------- 体 检 end ----------------------
@ -347,25 +346,25 @@ const routes = [{
path: "/report", path: "/report",
name: "体检报告", name: "体检报告",
component: () => component: () =>
import ("../views/report/report.vue"),
import("../views/report/report.vue"),
}, },
{ {
path: "/checkStatus", path: "/checkStatus",
name: "组合项目检查状态", name: "组合项目检查状态",
component: () => component: () =>
import ("../views/report/checkStatus.vue"),
import("../views/report/checkStatus.vue"),
}, },
{ {
path: "/chargeAsbitem", path: "/chargeAsbitem",
name: "人员费用组合项目", name: "人员费用组合项目",
component: () => component: () =>
import ("../views/report/chargeAsbitem.vue"),
import("../views/report/chargeAsbitem.vue"),
}, },
{ {
path: "/unCheckAsbitem", path: "/unCheckAsbitem",
name: "人员未检组合项目", name: "人员未检组合项目",
component: () => component: () =>
import ("../views/report/unCheckAsbitem.vue"),
import("../views/report/unCheckAsbitem.vue"),
}, },
//---------------------- 体检查询 end ---------------------- //---------------------- 体检查询 end ----------------------
@ -376,107 +375,107 @@ const routes = [{
path: "/diseaseStatistics", path: "/diseaseStatistics",
name: "疾病人数统计", name: "疾病人数统计",
component: () => component: () =>
import ("../views/customerReport/diseaseStatistics.vue"),
import("../views/customerReport/diseaseStatistics.vue"),
}, },
{ {
path: "/positiveResultsList", path: "/positiveResultsList",
name: "阳性结果清单", name: "阳性结果清单",
component: () => component: () =>
import ("../views/customerReport/positiveResultsList.vue"),
import("../views/customerReport/positiveResultsList.vue"),
}, },
{ {
path: "/unitphysicalexamination", path: "/unitphysicalexamination",
name: "单位体检报表", name: "单位体检报表",
component: () => component: () =>
import ("../views/doctorCheck/unitphysicalexamination.vue"),
import("../views/doctorCheck/unitphysicalexamination.vue"),
}, },
{ {
path: "/personnelPositive", path: "/personnelPositive",
name: "人员阳性结果", name: "人员阳性结果",
component: () => component: () =>
import ("../views/customerReport/personnelPositive.vue")
import("../views/customerReport/personnelPositive.vue")
}, },
{ {
path: "/combinationDetails", path: "/combinationDetails",
name: "组合项目具体结果统计", name: "组合项目具体结果统计",
component: () => component: () =>
import ("../views/customerReport/combinationDetails.vue")
import("../views/customerReport/combinationDetails.vue")
}, },
{ {
path: "/detailedIitems", path: "/detailedIitems",
name: "明细项目具体结果统计", name: "明细项目具体结果统计",
component: () => component: () =>
import ("../views/customerReport/detailedIitems.vue")
import("../views/customerReport/detailedIitems.vue")
}, },
{ {
path: "/unitSettlement", path: "/unitSettlement",
name: "单位体检收费结算", name: "单位体检收费结算",
component: () => component: () =>
import ("../views/customerReport/unitSettlement.vue")
import("../views/customerReport/unitSettlement.vue")
}, },
//---------------------- 工作量登记 ---------------------- //---------------------- 工作量登记 ----------------------
{ {
path: "/registrar", path: "/registrar",
name: "登记员工作量", name: "登记员工作量",
component: () => component: () =>
import ("../views/workload/registrar.vue"),
import("../views/workload/registrar.vue"),
}, },
{ {
path: "/doctorstaionworkload", path: "/doctorstaionworkload",
name: "医生站工作量", name: "医生站工作量",
component: () => component: () =>
import ("../views/workload/doctorstaionworkload.vue"),
import("../views/workload/doctorstaionworkload.vue"),
}, },
{ {
path: "/directordoctor", path: "/directordoctor",
name: "总检医生工作量", name: "总检医生工作量",
component: () => component: () =>
import ("../views/workload/directordoctor.vue"),
import("../views/workload/directordoctor.vue"),
}, },
{ {
path: "/examinedoctor", path: "/examinedoctor",
name: "审核医生工作量", name: "审核医生工作量",
component: () => component: () =>
import ("../views/workload/examinedoctor.vue"),
import("../views/workload/examinedoctor.vue"),
}, },
{ {
path: "/peisworkload", path: "/peisworkload",
name: "体检工作量", name: "体检工作量",
component: () => component: () =>
import ("../views/workload/peisworkload.vue"),
import("../views/workload/peisworkload.vue"),
}, },
{ {
path: "/deskwork", path: "/deskwork",
name: "科室工作量", name: "科室工作量",
component: () => component: () =>
import ("../views/workload/deskwork.vue"),
import("../views/workload/deskwork.vue"),
}, },
{ {
path: "/collectionbloodnurse", path: "/collectionbloodnurse",
name: "采血护士工作量", name: "采血护士工作量",
component: () => component: () =>
import ("../views/workload/collectionbloodnurse.vue"),
import("../views/workload/collectionbloodnurse.vue"),
}, },
{ {
path: "/tollcollector", path: "/tollcollector",
name: "收费员", name: "收费员",
component: () => component: () =>
import ("../views/workload/tollcollector.vue"),
import("../views/workload/tollcollector.vue"),
}, },
{ {
path: "/individualfeedetails", path: "/individualfeedetails",
name: "个人收费明细", name: "个人收费明细",
component: () => component: () =>
import ("../views/workload/individualfeedetails.vue"),
import("../views/workload/individualfeedetails.vue"),
}, },
{ {
path: "/membershipcard", path: "/membershipcard",
name: "会员卡分类统计", name: "会员卡分类统计",
component: () => component: () =>
import ("../views/workload/membershipcard.vue"),
import("../views/workload/membershipcard.vue"),
}, },
], ],
},
},
]; ];
const router = new VueRouter({ const router = new VueRouter({

2
src/views/customerOrg/customerOrg.vue

@ -6,7 +6,7 @@
</div> </div>
<div style="display: flex;"> <div style="display: flex;">
<!-- 单位树组件 --> <!-- 单位树组件 -->
<div :style="'border: 1px solid;width:200px; height:' +
<div :style="'border: 0px solid #888;width:200px; height:' +
(window.pageHeight < 600 ? 470 : window.pageHeight - 130) + (window.pageHeight < 600 ? 470 : window.pageHeight - 130) +
'px;' 'px;'
"> ">

4
src/views/customerOrg/customerOrgGroup.vue

@ -116,10 +116,10 @@
<template> <template>
<el-tag <el-tag
class="move" class="move"
style="cursor: move;"
style="cursor: move;background-color: rgb(245, 245, 245);border: none;"
draggable="true" draggable="true"
> >
<i class="el-icon-d-caret"></i>
<i class="el-icon-d-caret" style="width: 1rem; height: 1rem; color: rgb(113, 113, 113)"></i>
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>

2
src/views/customerOrg/patientRegister.vue

@ -8,7 +8,7 @@
<!-- 单位树组件 --> <!-- 单位树组件 -->
<div <div
:style=" :style="
'border: 1px solid;width:200px; height:' +
'border: 0px solid #888;width:200px; height:' +
(window.pageHeight < 600 ? 470 : window.pageHeight - 130) + (window.pageHeight < 600 ? 470 : window.pageHeight - 130) +
'px;' 'px;'
" "

Loading…
Cancel
Save