| | |
| | | :show-overflow-tooltip="true" |
| | | /> |
| | | <el-table-column |
| | | label="影像表现" |
| | | align="center" |
| | | prop="yxbx" |
| | | :show-overflow-tooltip="true" |
| | | /> |
| | | <el-table-column |
| | | label="病种拼音" |
| | | align="center" |
| | | prop="bzPinyin" |
| | |
| | | :total="total" |
| | | :page.sync="queryParams.pageNum" |
| | | :limit.sync="queryParams.pageSize" |
| | | @pagination="getList" |
| | | @pagination="getListByXmId" |
| | | /> |
| | | </div> |
| | | </div> |
| | |
| | | <!-- <el-form-item label="病种拼音" prop="bzPinyin"> |
| | | <el-input v-model="form.bzPinyin" placeholder="请输入病种拼音" style="width:200px" /> |
| | | </el-form-item> --> |
| | | <el-form-item label="影像表现 " prop="yxbx"> |
| | | <el-input |
| | | v-model="form.yxbx" |
| | | placeholder="请输入影像表现" |
| | | style="width: 200px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="疾病编码 " prop="icdCode"> |
| | | <el-input |
| | | v-model="form.icdCode" |
| | |
| | | 1; |
| | | }); |
| | | this.rulesList = response.rows; |
| | | console.log(this.rulesList,999); |
| | | |
| | | this.total = response.total; |
| | | this.loading = false; |
| | | }); |
| | |
| | | // 筛选节点 |
| | | filterNode(value, data) { |
| | | if (!value) return true; |
| | | return data.label.indexOf(value) !== -1; |
| | | // return data.label.indexOf(value) !== -1; |
| | | return data.label && typeof data.label === "string" && data.label.indexOf(value) !== -1; |
| | | }, |
| | | // 取消按钮 |
| | | cancel() { |