Browse Source

doctor

master
pengjun 2 years ago
parent
commit
75b03fc349
  1. 2
      public/sysConfig.json
  2. 11
      src/components/doctorCheck/CheckItemList.vue
  3. 3
      src/components/itemSet/ReferenceRange.vue
  4. 1
      src/views/fee-settings/Item.vue

2
public/sysConfig.json

@ -1,4 +1,4 @@
{
"apiurl": "http://140.143.162.39:9529",
"apiurl": "http://localhost:9530",
"softName": "神豚体检管理系统"
}

11
src/components/doctorCheck/CheckItemList.vue

@ -24,6 +24,11 @@
<div>{{ dddw(resultStatus, 'id', scope.row.resultStatusId, 'dataInputPrompt') }}</div>
</template>
</el-table-column>
<el-table-column prop="criticalFlag" label="危急" width="40" align="center">
<template slot-scope="scope">
<el-checkbox v-model="scope.row.criticalFlag" size="small" true-label="Y" false-label="N" />
</template>
</el-table-column>
</el-table>
<!--弹窗-->
@ -469,6 +474,12 @@ export default {
.then((res) => {
// console.log("checkItemList", res.data);
if (res && res.code > -1) {
res.data.forEach((e, i) => {
//
e['criticalFlag'] = 'N'
});
this.doctorCheck.checkItemList = res.data;
this.doctorCheck.checkItemList.forEach((e, i) => {
if (this.doctorCheck.RegisterCheckEdit.completeFlag == '0') {

3
src/components/itemSet/ReferenceRange.vue

@ -13,7 +13,8 @@
<el-table-column prop="ageLowerLimit" label="年龄上限" />
<el-table-column prop="ageUpperLimit" label="年龄下限" />
<el-table-column prop="referenceRangeValue" label="参考范围" />
<el-table-column prop="criticalRangeValue" label="警告范围" />
<el-table-column prop="随访范围" label="随访范围" />
<el-table-column prop="criticalRangeValue" label="危急范围" />
<el-table-column prop="lowerDiagnosisId" label="偏低诊断">
<template slot-scope="scope">
<div>

1
src/views/fee-settings/Item.vue

@ -679,6 +679,7 @@
<el-button type="" @click="rusteronsubmit" class="commonbutton"> </el-button>
</span>
</el-dialog>
<!-- 参考范围弹框 -->
<el-dialog title="参考范围" :visible.sync="referencerangedialogVisible" width="80%" :close-on-click-modal="false">
<el-row>

Loading…
Cancel
Save