列表优化
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
d6bb1fcb5a
commit
ca3a6122be
|
@ -21,29 +21,37 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="EquipmentType"
|
prop="EquipmentType"
|
||||||
:label="$t('trials:equiptResearch:form:equipment')"
|
:label="$t('trials:equiptResearch:form:equipment')"
|
||||||
width="180"
|
min-width="120"
|
||||||
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<!-- 扫描参数 -->
|
<!-- 扫描参数 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="isShowParameters"
|
v-if="isShowParameters"
|
||||||
prop="Parameters"
|
prop="Parameters"
|
||||||
:label="$t('trials:equiptResearch:form:param')"
|
:label="$t('trials:equiptResearch:form:param')"
|
||||||
width="180"
|
min-width="100"
|
||||||
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<!-- 扫描仪器制造商名称 -->
|
<!-- 扫描仪器制造商名称 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
min-width="120"
|
||||||
prop="ManufacturerName"
|
prop="ManufacturerName"
|
||||||
:label="$t('trials:equiptResearch:form:manufacturer')"
|
:label="$t('trials:equiptResearch:form:manufacturer')"
|
||||||
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<!-- 扫描仪型号 -->
|
<!-- 扫描仪型号 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
min-width="120"
|
||||||
prop="ScannerType"
|
prop="ScannerType"
|
||||||
:label="$t('trials:equiptResearch:form:model')"
|
:label="$t('trials:equiptResearch:form:model')"
|
||||||
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<!-- 备注 -->
|
<!-- 备注 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
min-width="120"
|
||||||
prop="Note"
|
prop="Note"
|
||||||
:label="$t('trials:equiptResearch:form:precautions')"
|
:label="$t('trials:equiptResearch:form:precautions')"
|
||||||
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="state === 0 && userTypeEnumInt === 0 && !isHistory"
|
v-if="state === 0 && userTypeEnumInt === 0 && !isHistory"
|
||||||
|
|
|
@ -350,7 +350,7 @@ export default {
|
||||||
trialId: this.$route.query.trialId,
|
trialId: this.$route.query.trialId,
|
||||||
tokenKey: getToken(),
|
tokenKey: getToken(),
|
||||||
openWindow: null,
|
openWindow: null,
|
||||||
bp:[]
|
bp: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async mounted() {
|
async mounted() {
|
||||||
|
@ -490,7 +490,7 @@ export default {
|
||||||
}
|
}
|
||||||
var arr = bodyPart.split(separator)
|
var arr = bodyPart.split(separator)
|
||||||
var newArr = arr.map(i => {
|
var newArr = arr.map(i => {
|
||||||
return this.$fd('Bodypart', i.trim(),'Code',{Bodypart:this.bp},'Name')
|
return this.$fd('Bodypart', i.trim(), 'Code', { Bodypart: this.bp }, 'Name')
|
||||||
})
|
})
|
||||||
return newArr.join(' | ')
|
return newArr.join(' | ')
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue