| | |
| | | <el-option |
| | | class="ruleFormaa" |
| | | v-for="item in belongDepts" |
| | | :key="item.deptCode" |
| | | :label="item.deptName" |
| | | :value="item.deptCode" |
| | | > |
| | |
| | | <el-option |
| | | class="ruleFormaa" |
| | | v-for="item in belongWards" |
| | | :key="item.districtCode" |
| | | :label="item.districtName" |
| | | :value="item.districtCode" |
| | | > |
| | |
| | | </div> |
| | | <el-tag |
| | | v-for="tag in diagglist" |
| | | :key="tag.icdcode" |
| | | @close="removediagg(tag.icd10code)" |
| | | type="warning" |
| | | closable |
| | |
| | | <el-option |
| | | class="ruleFormaa" |
| | | v-for="item in baseoperaList" |
| | | :key="item.opcode" |
| | | :label="item.opdesc" |
| | | :value="item.opcode" |
| | | > |
| | |
| | | // 手术查询 |
| | | remoteopcode(name) { |
| | | if (name) { |
| | | getillnesslist({ |
| | | getbaseopera({ |
| | | pageNum: 1, |
| | | pageSize: 1000, |
| | | opdesc: name, |
| | | }).then((res) => { |
| | | this.donorchargeList = res.rows; |
| | | this.baseoperaList = res.rows; |
| | | }); |
| | | } |
| | | }, |