Commit 5cc2638e authored by 仇晓婷's avatar 仇晓婷

产品结构详情优化

parent 11499485
......@@ -1435,7 +1435,7 @@ export default {
remark:'备注',
madeCompany:'主承制单位',
extend:'',
productUrl:'产品图像url',
productUrl:'产品图像',
productUrlList:'产品图象列表',
},
......
......@@ -9,7 +9,9 @@
<!-- <Filed :span="24" :name="l('remark')">{{entity.remark}}</Filed> -->
<Filed :span="12" :name="l('madeCompany')">{{entity.madeCompanyTitle}}</Filed>
<!-- <Filed :span="12" :name="l('extend')">{{entity.extend}}</Filed> -->
<Filed :span="24" :name="l('productUrl')">{{entity.productUrl}}</Filed>
<Filed :span="24" :name="l('productUrl')">
<a href="#" @click="seeImg(entity.productUrl)">{{entity.productUrl}}</a>
</Filed>
<Filed :span="24" :name="l('productUrlList')">{{entity.productUrlList}}</Filed>
</Row>
</div>
......@@ -36,6 +38,9 @@ export default {
}
},
methods: {
seeImg(url) {
window.open(url, "_blank");
},
load(v) {
Api.get({ id: v }).then(r => {
this.entity = r.result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment