|
@@ -533,7 +533,7 @@ export default {
|
|
|
{ title: '基础依据名称', width: 160, istar: true },
|
|
|
{ title: '基础依据类型', width: 130, istar: true },
|
|
|
{ title: '基础依据术语类型', width: 160, istar: true },
|
|
|
- { title: '医学标准术语', width: 200, istar: true },
|
|
|
+ { title: '医学标准术语', width: 230, istar: true },
|
|
|
{ title: '依据具体内容', width: 850 }
|
|
|
],
|
|
|
dicts: {},
|
|
@@ -566,7 +566,7 @@ export default {
|
|
|
onlyTxtType: false,
|
|
|
basTypeName: '',
|
|
|
basConceptId: [],
|
|
|
- conceptId:'',
|
|
|
+ conceptId: '',
|
|
|
basConceptList: [],
|
|
|
basDescription: '',
|
|
|
basLename: '',
|
|
@@ -877,7 +877,7 @@ export default {
|
|
|
onlyTxtType: false,
|
|
|
basTypeName: '',
|
|
|
basConceptId: [],
|
|
|
- conceptId:'',
|
|
|
+ conceptId: '',
|
|
|
basConceptList: [],
|
|
|
basDescription: '',
|
|
|
basLename: '',
|
|
@@ -955,7 +955,7 @@ export default {
|
|
|
onlyTxtType: false,
|
|
|
basTypeName: '',
|
|
|
basConceptId: [],
|
|
|
- conceptId:'',
|
|
|
+ conceptId: '',
|
|
|
basConceptList: [],
|
|
|
basDescription: '',
|
|
|
basLename: '',
|
|
@@ -986,7 +986,7 @@ export default {
|
|
|
basNameType: false,
|
|
|
basTypeName: '',
|
|
|
basConceptId: [],
|
|
|
- conceptId:'',
|
|
|
+ conceptId: '',
|
|
|
basConceptList: [],
|
|
|
basDescription: '',
|
|
|
basLename: '',
|
|
@@ -1173,7 +1173,9 @@ export default {
|
|
|
val
|
|
|
);
|
|
|
} else if (basType == 2) {
|
|
|
- this.form.klDiagnoseTypeVO[inx].groupVO[index].klDiagnoseDetail[i].conceptId = val;
|
|
|
+ this.form.klDiagnoseTypeVO[inx].groupVO[index].klDiagnoseDetail[
|
|
|
+ i
|
|
|
+ ].conceptId = val;
|
|
|
}
|
|
|
|
|
|
// if (val) {
|
|
@@ -1228,7 +1230,7 @@ export default {
|
|
|
formData.klDiagnoseTypeVO[inx].groupVO[index].klDiagnoseDetail[
|
|
|
i
|
|
|
].basConceptList = data;
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
formData.klDiagnoseTypeVO[inx].groupVO[index].klDiagnoseDetail[
|
|
|
i
|
|
|
].conceptList = data;
|
|
@@ -1494,9 +1496,8 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
confirm() {
|
|
|
-
|
|
|
const formData = JSON.parse(JSON.stringify(this.form));
|
|
|
-
|
|
|
+
|
|
|
const _this = this;
|
|
|
for (let i = 0; i < formData.klDiagnoseTypeVO.length; i++) {
|
|
|
for (let j = 0; j < formData.klDiagnoseTypeVO[i].groupVO.length; j++) {
|
|
@@ -1515,8 +1516,10 @@ export default {
|
|
|
].basConceptId =
|
|
|
formData.klDiagnoseTypeVO[i].groupVO[j].klDiagnoseDetail[k]
|
|
|
.basType == 2
|
|
|
- ? JSON.stringify(formData.klDiagnoseTypeVO[i].groupVO[j].klDiagnoseDetail[k]
|
|
|
- .conceptId).split('')
|
|
|
+ ? JSON.stringify(
|
|
|
+ formData.klDiagnoseTypeVO[i].groupVO[j].klDiagnoseDetail[k]
|
|
|
+ .conceptId
|
|
|
+ ).split('')
|
|
|
: formData.klDiagnoseTypeVO[i].groupVO[j].klDiagnoseDetail[k]
|
|
|
.basConceptId;
|
|
|
}
|
|
@@ -1563,9 +1566,15 @@ export default {
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
@import '../../less/admin.less';
|
|
|
-
|
|
|
+/deep/ .el-select-dropdown__list, .el-select-dropdown__item {
|
|
|
+ width: 180px;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
/deep/ .searchselect {
|
|
|
.el-input {
|
|
|
+ width: 210px;
|
|
|
height: 100% !important;
|
|
|
}
|
|
|
.el-select__tags {
|