|
|
|
@ -48,7 +48,7 @@ |
|
|
|
<div class="tab_body"> |
|
|
|
<div class="tab_body_title"> |
|
|
|
<p class="tab_body_title_bg"></p> |
|
|
|
<div>文化资源数据-基本信息</div> |
|
|
|
<div>{{entrust_goods.goods[0].goods_type==1?'文化资源数据':'文化数字内容'}}-基本信息</div> |
|
|
|
</div> |
|
|
|
<template v-if="entrust_goods.goods.length!=0"> |
|
|
|
<div class="tab_content " v-for="(item,index) in entrust_goods.goods" :key="index"> |
|
|
|
@ -63,7 +63,7 @@ |
|
|
|
<p>标的类型:{{item.goods_type==1?'文化资源数据':'文化数字内容'}}</p> |
|
|
|
<p>交易方式:{{item.goods_entrust==1?'转让':'许可'}}</p> |
|
|
|
<p>权益:{{item.goods_ownership_str}}</p> |
|
|
|
<p>委托周期:{{item.contractual_period==1?'永久':item.contractual_period==2?'单次':'周期'}}</p> |
|
|
|
<p>委托周期:{{item.contractual_period==1?'永久性委托':item.contractual_period==2?'一次性委托':'阶段性委托'}}</p> |
|
|
|
<p>收费类型:{{item.charges_type==1?'免费':'付费'}}</p> |
|
|
|
<p>交易保证金:{{item.earnest_money}}</p> |
|
|
|
<p>自报价:{{item.price}}</p> |
|
|
|
@ -75,15 +75,15 @@ |
|
|
|
<!-- <p v-else class="none_p">暂无数据</p> --> |
|
|
|
<div class="tab_body_title"> |
|
|
|
<p class="tab_body_title_bg"></p> |
|
|
|
<div>文化资源数据-关联资源</div> |
|
|
|
<div>{{entrust_goods.goods[0].goods_type==1?'文化资源数据':'文化数字内容'}}-关联资源</div> |
|
|
|
</div> |
|
|
|
<div class="tab_content"> |
|
|
|
<p class="tab_content_title">文化资源数据集</p> |
|
|
|
</div> |
|
|
|
<div class="content_table"> |
|
|
|
<a-table :columns="columns1" :data-source="entrust_goods.source_gather" bordered :pagination="false"> |
|
|
|
<template slot="operation" slot-scope="item"> |
|
|
|
<span @click="selectDetails(item.id)" class="details_span">详情</span> |
|
|
|
<template slot="operation" > |
|
|
|
<span @click="selectDetails(entrust_goods.goods[0].goods_islicode)" class="details_span">详情</span> |
|
|
|
</template> |
|
|
|
</a-table> |
|
|
|
</div> |
|
|
|
@ -152,12 +152,12 @@ |
|
|
|
<p class="tab_body_title_bg"></p> |
|
|
|
<div>文化资源数据-关联资源</div> |
|
|
|
</div> |
|
|
|
<div v-for="(item,index) in sourceDate.entrust_goods" :key="index"> |
|
|
|
<div v-for="(item,index) in sourceDate.entrust_goods.source" :key="index"> |
|
|
|
<div class="tab_content"> |
|
|
|
<p class="tab_content_title">{{item.source_type}}</p> |
|
|
|
<p class="tab_content_title">{{item.serviceType}}</p> |
|
|
|
</div> |
|
|
|
<div class="content_table"> |
|
|
|
<a-table :columns="columns" :data-source="item.source" bordered :pagination="false"></a-table> |
|
|
|
<a-table :columns="columns" :data-source="item.data" bordered :pagination="false"></a-table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -201,10 +201,12 @@ |
|
|
|
'height':'500px' |
|
|
|
}, |
|
|
|
entrust_goods:{ |
|
|
|
goods:[] |
|
|
|
goods:[{goods_type:''}] |
|
|
|
}, |
|
|
|
userinfo:[], |
|
|
|
sourceDate:{}, |
|
|
|
sourceDate:{ |
|
|
|
entrust_goods:{} |
|
|
|
}, |
|
|
|
data:[], |
|
|
|
columns:[ |
|
|
|
{ |
|
|
|
@ -221,7 +223,7 @@ |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: 'ISLI关联编码', |
|
|
|
dataIndex: 'identifier', |
|
|
|
dataIndex: 'relevancy_isli', |
|
|
|
width:'259px', |
|
|
|
align:'center' |
|
|
|
}, |
|
|
|
@ -308,7 +310,7 @@ |
|
|
|
}) |
|
|
|
}, |
|
|
|
selectDetails(val){ |
|
|
|
let data={id:val} |
|
|
|
let data={isli:val} |
|
|
|
sourceDetail(data).then(res=>{ |
|
|
|
console.info(res) |
|
|
|
if(res.code==200){ |
|
|
|
|