0b51cee3 by lxs Committed by lihua

数据资产登记更新

1 parent a35017bf
......@@ -1796,17 +1796,10 @@ const passCommonDialogBtnClick = (btn, info) => {
<span class="item_label">使用限制:</span>
<span class="item_value">{{ assetDetailInfo.isLimitations == 'Y' ? '有限制' : '无限制' }}</span>
</div>
<div class="list_item" v-if="assetDetailInfo.propertyTerm != 'Y'">
<div class="list_item">
<span class="item_label">产权期限:</span>
<span class="item_value"></span>
</div>
<div class="list_item" v-if="assetDetailInfo.propertyTerm == 'Y'">
<span class="item_label">产权开始时间:</span>
<span class="item_value">{{ assetDetailInfo.propertyTermSdate ?? '--' }}</span>
</div>
<div class="list_item" v-if="assetDetailInfo.propertyTerm == 'Y'">
<span class="item_label">产权结束时间:</span>
<span class="item_value">{{ assetDetailInfo.propertyTermEdate ?? '--' }}</span>
<span class="item_value" v-if="assetDetailInfo.propertyTerm != 'Y'"></span>
<span class="item_value" v-else>{{ `${assetDetailInfo.propertyTermSdate ?? '--'} 至 ${assetDetailInfo.propertyTermEdate ?? '--'}`}}</span>
</div>
<div class="list_item">
<span class="item_label">公司名称:</span>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!