|
@@ -70,7 +70,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div>
|
|
<div>
|
|
|
{{ $t("公称压力") }}: 
|
|
{{ $t("公称压力") }}: 
|
|
|
- <span v-if="stockData.nominalpressure">
|
|
|
|
|
|
|
+ <span v-if="stockData.nominalpressure && stockData.nominalpressure != null">
|
|
|
<span v-for="(item,index) in stockData.nominalpressure" :key="index">
|
|
<span v-for="(item,index) in stockData.nominalpressure" :key="index">
|
|
|
<span v-if="index == stockData.nominalpressure.length -1">
|
|
<span v-if="index == stockData.nominalpressure.length -1">
|
|
|
{{ item }}
|
|
{{ item }}
|
|
@@ -335,6 +335,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
let res = await this.$api.requested(this.param);
|
|
let res = await this.$api.requested(this.param);
|
|
|
res.code === 0 ? this.$message.error(res.msg) : "";
|
|
res.code === 0 ? this.$message.error(res.msg) : "";
|
|
|
|
|
+ console.log(res.data,'details')
|
|
|
this.details = res.data;
|
|
this.details = res.data;
|
|
|
/*this.detail = res.data
|
|
/*this.detail = res.data
|
|
|
this.selectProduct = this.detail ? this.detail[0] : ''
|
|
this.selectProduct = this.detail ? this.detail[0] : ''
|