|
@@ -151,10 +151,9 @@
|
|
</div>
|
|
</div>
|
|
<div class="mapList">
|
|
<div class="mapList">
|
|
已关联标准术语:
|
|
已关联标准术语:
|
|
- <span
|
|
|
|
- v-for="item in mapList"
|
|
|
|
- :key="item.id"
|
|
|
|
- >{{item.uniqueName}} {{item.form}}{{item.hisCode}};</span>
|
|
|
|
|
|
+ <span v-for="item in mapList" :key="item.id">
|
|
|
|
+ <span v-if="item.uniqueName">{{item.uniqueName}} {{item.form}}{{item.hisCode}};</span>
|
|
|
|
+ </span>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<div class="modal-footer">
|
|
<button class="confirm btns" :disabled="saveDisable" @click="submitForm">确定</button>
|
|
<button class="confirm btns" :disabled="saveDisable" @click="submitForm">确定</button>
|
|
@@ -225,7 +224,9 @@ export default {
|
|
this.isEdit = true;
|
|
this.isEdit = true;
|
|
this.editId = this.data.id;
|
|
this.editId = this.data.id;
|
|
this.form.hisName = this.data.hisName;
|
|
this.form.hisName = this.data.hisName;
|
|
- this.form.hisDetailName = this.data.hisDetailName?this.data.hisDetailName:'' ;
|
|
|
|
|
|
+ this.form.hisDetailName = this.data.hisDetailName
|
|
|
|
+ ? this.data.hisDetailName
|
|
|
|
+ : '';
|
|
this.form.searchText = this.data.uniqueName;
|
|
this.form.searchText = this.data.uniqueName;
|
|
this.form.icdCode = this.data.code;
|
|
this.form.icdCode = this.data.code;
|
|
this.form.conceptId = this.data.conceptId;
|
|
this.form.conceptId = this.data.conceptId;
|
|
@@ -428,8 +429,8 @@ export default {
|
|
source
|
|
source
|
|
} = this.form;
|
|
} = this.form;
|
|
// 当标准术语是套餐时,细项必须为空
|
|
// 当标准术语是套餐时,细项必须为空
|
|
- console.log(hisDetailName);
|
|
|
|
-
|
|
|
|
|
|
+ console.log(hisDetailName);
|
|
|
|
+
|
|
if (this.searchType === 1 && hisDetailName !== '') {
|
|
if (this.searchType === 1 && hisDetailName !== '') {
|
|
console.log(123);
|
|
console.log(123);
|
|
this.warning('医院术语与标准术语类型不匹配,请修改');
|
|
this.warning('医院术语与标准术语类型不匹配,请修改');
|