|
|
@@ -1,46 +1,52 @@
|
|
|
<template>
|
|
|
- <!-- 仓单贸易&仓单预售 融资-->
|
|
|
+ <!-- 仓单贸易&仓单预售 融资-->
|
|
|
|
|
|
- <Drawer :title="'选择融资方案'"
|
|
|
- :placement="'top'"
|
|
|
- :visible="visible"
|
|
|
- width="486px"
|
|
|
- height="580px"
|
|
|
- @cancel="update"
|
|
|
- class="top financing">
|
|
|
- <div class="financingCont">
|
|
|
- <a-row class="f-t">
|
|
|
- <a-col :span="7">融出方/名称</a-col>
|
|
|
- <a-col :span="10">天数/保证金/利息</a-col>
|
|
|
- <a-col :span="7">结息/起息天数</a-col>
|
|
|
- </a-row>
|
|
|
- <div class="contBar"
|
|
|
- v-for="(item, index) in list"
|
|
|
- :key="index + 11"
|
|
|
- @click="choose(item)">
|
|
|
- <a-row class="firstRow">
|
|
|
- <a-col :span="7">{{item.productname}}</a-col>
|
|
|
- <a-col :span="17"
|
|
|
- v-if="item.isautoloan">放款快</a-col>
|
|
|
- </a-row>
|
|
|
- <a-row class="secondRow">
|
|
|
- <a-col :span="7">{{item.username}}</a-col>
|
|
|
- <a-col :span="10">
|
|
|
- <a-row class="middle">
|
|
|
- <a-col :span="7">{{item.financingdays}}天</a-col>
|
|
|
- <a-col :span="10">{{item.marginratio * 100}}%</a-col>
|
|
|
- <a-col :span="7">{{item.interestrate * 100}}%</a-col>
|
|
|
+ <Drawer
|
|
|
+ :title="'选择融资方案'"
|
|
|
+ :placement="'top'"
|
|
|
+ :visible="visible"
|
|
|
+ width="486px"
|
|
|
+ height="580px"
|
|
|
+ @cancel="update"
|
|
|
+ class="top financing"
|
|
|
+ >
|
|
|
+ <div class="financingCont">
|
|
|
+ <a-row class="f-t">
|
|
|
+ <a-col :span="7">融出方/名称</a-col>
|
|
|
+ <a-col :span="10">天数/保证金/利息</a-col>
|
|
|
+ <a-col :span="7">结息/起息天数</a-col>
|
|
|
</a-row>
|
|
|
- </a-col>
|
|
|
- <a-col :span="7">
|
|
|
- <div class="settle">
|
|
|
- <div>{{item.interestsettlemode === 1 ? '日' : '月'}}结</div>
|
|
|
- <div>{{item.interestminlen}}天起息</div>
|
|
|
+ <div
|
|
|
+ class="contBar"
|
|
|
+ v-for="(item, index) in list"
|
|
|
+ :key="index + 11"
|
|
|
+ @click="choose(item)"
|
|
|
+ >
|
|
|
+ <a-row class="firstRow">
|
|
|
+ <a-col :span="7">{{item.productname}}</a-col>
|
|
|
+ <a-col :span="17" v-if="item.isautoloan">放款快</a-col>
|
|
|
+ </a-row>
|
|
|
+ <a-row class="secondRow">
|
|
|
+ <a-col :span="7">{{item.username}}</a-col>
|
|
|
+ <a-col :span="10">
|
|
|
+ <a-row class="middle">
|
|
|
+ <a-col :span="7">{{item.financingdays}}天</a-col>
|
|
|
+ <a-col :span="10">{{item.marginratio * 100}}%</a-col>
|
|
|
+ <a-col :span="7">{{item.interestrate * 100}}%</a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="7">
|
|
|
+ <div class="settle">
|
|
|
+ <div>{{item.interestsettlemode === 1 ? '日' : '月'}}结</div>
|
|
|
+ <div>{{item.interestminlen}}天起息</div>
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
</div>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </div>
|
|
|
- <!-- <div class="contBar">
|
|
|
+ <div class="noDataContBar" v-if="!list.length">
|
|
|
+ <div class="noData"></div>
|
|
|
+ </div>
|
|
|
+ <!-- <div class="contBar">
|
|
|
<a-row class="firstRow">
|
|
|
<a-col :span="7">铜供应链金融</a-col>
|
|
|
<a-col :span="17">放款快</a-col>
|
|
|
@@ -83,9 +89,9 @@
|
|
|
</div>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
- </div> -->
|
|
|
- </div>
|
|
|
- </Drawer>
|
|
|
+ </div>-->
|
|
|
+ </div>
|
|
|
+ </Drawer>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
@@ -218,6 +224,14 @@ export default defineComponent({
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .noDataContBar {
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 175px;
|
|
|
+ .noData {
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>;
|