Browse Source

test

master
pengjun 2 years ago
parent
commit
4904693c6f
  1. 7
      src/components/customerOrg/customerOrgEdit.vue
  2. 1
      src/components/customerOrg/customerOrgRegister.vue
  3. 3
      src/components/patientRegister/PatientRegisterEdit.vue
  4. 1
      src/components/patientRegister/PatientRegisterList.vue
  5. 3
      src/views/customerOrg/customerOrgGroup.vue
  6. 2
      src/views/customerOrg/patientRegister.vue

7
src/components/customerOrg/customerOrgEdit.vue

@ -147,6 +147,13 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="16">
<el-form-item label="id" prop="id">
<el-input v-model="form.id" disabled/>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<!-- 按钮区域 -->

1
src/components/customerOrg/customerOrgRegister.vue

@ -4,6 +4,7 @@
<el-table :data="customerOrg.customerOrgRegisterList" border
:height="window.pageHeight < 600 ? 200 : window.pageHeight - 400" size="small" highlight-current-row
@row-click="rowClick" ref="customerOrg.customerOrgRegisterList">
<el-table-column prop="id" label="id" min-width="200" align="center" />
<el-table-column prop="medicalTimes" label="体检次数" width="70" align="center" />
<el-table-column prop="beginTime" label="开始日期" min-width="80" align="center">
<template slot-scope="scope">

3
src/components/patientRegister/PatientRegisterEdit.vue

@ -2,6 +2,9 @@
<div>
<div style="display: flex">
<div :style="'width:' + (window.pageWidth - 110 - 20) + 'px;'">
<div v-show="checkPagePriv(pagePriv.privs,'查找')" style="position: absolute;top:5px;left:180px;">
人员ID: {{ form.id }}
</div>
<!--查询条件-->
<div v-show="checkPagePriv(pagePriv.privs,'查找')" style="position: absolute;top:28px;left:180px;">
<PatientRegisterEditQuery/>

1
src/components/patientRegister/PatientRegisterList.vue

@ -260,6 +260,7 @@ export default {
//
dropCol: [
{ label: "序号", prop: "sn", minWidth: 40, align: "center" },
{ label: "id", prop: "id", minWidth: 200, align: "center" },
{ label: "体检进度", prop: "completeFlag", minWidth: 80, align: "center" },
{ label: "打印", prop: "guidePrintTimes", minWidth: 55, align: "center" },
{ label: "锁住", prop: "isLock", minWidth: 55, align: "center" },

3
src/views/customerOrg/customerOrgGroup.vue

@ -31,7 +31,8 @@
<el-table :data="customerOrgGroups" ref="customerOrgGroups" style="margin-top: 2px" row-key="id" border
height="240px" size="small" highlight-current-row :row-class-name="handleRowClassName"
@row-click="rowClick">
<el-table-column type="index" label="序号" min-width="50" align="center" />
<el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column label="id" prop="id" min-width="200" align="center" />
<el-table-column prop="displayName" label="名称" min-width="150" />
<el-table-column prop="price" label="价格" min-width="60" align="center" />
<el-table-column prop="forSexId" label="适用性别" min-width="60" align="center">

2
src/views/customerOrg/patientRegister.vue

@ -6,7 +6,7 @@
</div>
<div style="display: flex;">
<!-- 单位树组件 -->
<div :style="'margin-right:15px;background-color: #fff;border-radius: 8px;width:208px; height:' +
<div :style="'margin-right:5px;background-color: #fff;border-radius: 8px;width:208px; height:' +
(window.pageHeight < 600 ? 450 : window.pageHeight - 100) +
'px;'
">

Loading…
Cancel
Save