|
@@ -109,7 +109,8 @@
|
|
|
<div class='info-box'>
|
|
|
<div>
|
|
|
<p>气瓶规格:</p>
|
|
|
- <p>{{infoData.specification}}</p>
|
|
|
+ <p v-for="(item,index) in gasBottleLevel"
|
|
|
+ v-show="item.dictValue == infoData.specification">{{item.dictLabel}}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -203,6 +204,7 @@
|
|
|
import { laboratoryWarningNoticeLogUpdate} from '@/api/gasBottleManage/index'
|
|
|
import lookImgDialog from '@/components/lookImgDialog/lookImgDialog.vue'
|
|
|
import lookVideoDialog from '@/components/lookVideoDialog/lookVideoDialog.vue'
|
|
|
+ import { gasManageConfigName } from '@/api/gasManage3_0/gasManageSYD'
|
|
|
export default {
|
|
|
name: 'infoPage',
|
|
|
components: {
|
|
@@ -230,13 +232,17 @@
|
|
|
{ required: true, message: "请输入处理备注", trigger: "change" },
|
|
|
{ required: true, message: "请输入处理备注", validator: this.spaceJudgment, trigger: "change" },
|
|
|
],
|
|
|
- }
|
|
|
+ },
|
|
|
+ gasBottleLevel:[],
|
|
|
}
|
|
|
},
|
|
|
created(){
|
|
|
},
|
|
|
mounted(){
|
|
|
this.getInfo();
|
|
|
+ this.getDicts("gasBottleLevel").then((response) => {
|
|
|
+ this.$set(this,'gasBottleLevel',response.data);
|
|
|
+ });
|
|
|
},
|
|
|
methods:{
|
|
|
upDispose(){
|