1.26 个股详情业务结构,发展历程模块完善
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<view class="flex">
|
||||
<view class="title">实际控制人</view>
|
||||
</view>
|
||||
<view class="com_info">
|
||||
<view v-if="actualControlInfo" class="com_info">
|
||||
<view class="left">
|
||||
<view class="l_top">{{actualControlInfo.actual_controller_name}}</view>
|
||||
<view class="l_bottom">
|
||||
@@ -14,7 +14,7 @@
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="r_top">控制比例</view>
|
||||
<view class="r_center">{{actualControlInfo.holding_ratio.toFixed(2)}}%</view>
|
||||
<view v-if="actualControlInfo.holding_ratio" class="r_center">{{actualControlInfo.holding_ratio.toFixed(2)}}%</view>
|
||||
<view class="r_bottom">{{getNumStr(actualControlInfo.holding_shares)}}股</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -26,10 +26,8 @@
|
||||
<view class="top">2025-09-30 00:00:00</view>
|
||||
<view class="bottom">
|
||||
<view class="b_item">
|
||||
<view v-for="(item, index) in 4" class="item_info">
|
||||
<view class="left">
|
||||
前1大股东
|
||||
</view>
|
||||
<view v-for="(item, index) in concentrationList" :key="index" class="item_info flexWrap">
|
||||
<view class="left">{{item.stat_item}}</view>
|
||||
<view class="right">
|
||||
<view class="bili">49.56%</view>
|
||||
<view class="shengjiang" :class="{action : index % 2 == 0}">
|
||||
@@ -40,7 +38,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view style="width: 15rpx;"></view>
|
||||
<!-- <view style="width: 15rpx;"></view>
|
||||
<view class="b_item">
|
||||
<view v-for="(item, index) in 4" class="item_info">
|
||||
<view class="left">
|
||||
@@ -55,7 +53,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -65,21 +63,19 @@
|
||||
|
||||
<view class="gudong">
|
||||
<view class="back">
|
||||
<view class="top action" style="height: 54rpx;">
|
||||
<view>股东名称</view>
|
||||
<view>股东类型</view>
|
||||
<view style="text-align: center;">持股数量</view>
|
||||
<view style="text-align: center;">持股比例</view>
|
||||
<view style="text-align: center;">股份性质</view>
|
||||
<view class="top action">
|
||||
<view class="head">股东名称</view>
|
||||
<view class="head">股东类型</view>
|
||||
<view class="head" style="text-align: center;">持股数量</view>
|
||||
<view class="head" style="text-align: center;">持股比例</view>
|
||||
<view class="head" style="text-align: center;">股份性质</view>
|
||||
</view>
|
||||
<view v-for="(item, index) in shareholdersList" :key="index" class="top" :class="{action: index % 2 == 1}">
|
||||
<view class="child">{{item.shareholder_name}}</view>
|
||||
<view class="child">{{item.shareholder_type}}</view>
|
||||
<view class="child" style="text-align: center;">{{getNumStr(item.holding_shares)}}股</view>
|
||||
<view class="child" style="color: #3E87CF; font-weight: bold; text-align: center;">{{item.total_share_ratio}}%</view>
|
||||
<view class="child"
|
||||
style="background-color: #FFF7E9; color: #E0AC4A; border-radius: 5rpx; padding: 5rpx 10rpx; text-align: center;">
|
||||
{{item.share_nature}}</view>
|
||||
<view class="nature">{{item.share_nature}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -90,21 +86,19 @@
|
||||
|
||||
<view class="gudong">
|
||||
<view class="back">
|
||||
<view class="top action" style="height: 54rpx;">
|
||||
<view>股东名称</view>
|
||||
<view>股东类型</view>
|
||||
<view style="text-align: center;">持股数量</view>
|
||||
<view style="text-align: center;">流通股比例</view>
|
||||
<view style="text-align: center;">股份性质</view>
|
||||
<view class="top action">
|
||||
<view class="head">股东名称</view>
|
||||
<view class="head">股东类型</view>
|
||||
<view class="head" style="text-align: center;">持股数量</view>
|
||||
<view class="head" style="text-align: center;">流通股比例</view>
|
||||
<view class="head" style="text-align: center;">股份性质</view>
|
||||
</view>
|
||||
<view v-for="(item, index) in circulatingShareholdersList" :key="index" class="top" :class="{action: index % 2 == 1}">
|
||||
<view class="child">{{item.shareholder_name}}</view>
|
||||
<view class="child">{{item.shareholder_type?item.shareholder_type:'-'}}</view>
|
||||
<view class="child" style="text-align: center;">{{getNumStr(item.holding_shares)}}股</view>
|
||||
<view class="child" style="color: #893ECF; font-weight: bold; text-align: center;">{{item.total_share_ratio}}%</view>
|
||||
<view class="child"
|
||||
style="background-color: #FFF7E9; color: #E0AC4A; border-radius: 5rpx; padding: 5rpx 10rpx; text-align: center;">
|
||||
{{item.share_nature}}</view>
|
||||
<view class="nature">{{item.share_nature}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -125,6 +119,7 @@
|
||||
},
|
||||
props:{
|
||||
actualControlInfo:Object, //实际控制人信息
|
||||
concentrationList:[], //股权集中度列表
|
||||
shareholdersList:Array, //十大股东列表
|
||||
circulatingShareholdersList:Array, //十大流通股东列表
|
||||
competitivePositionInfo:Object, //竞争地位信息
|
||||
@@ -275,31 +270,43 @@
|
||||
.back {
|
||||
margin: 25rpx 0;
|
||||
font-weight: 500;
|
||||
background-color: #FAFAFC;
|
||||
border-radius: 10rpx;
|
||||
padding: 25rpx 13rpx;
|
||||
box-sizing: border-box;
|
||||
color: #666666;
|
||||
|
||||
.top {
|
||||
width: 100%;
|
||||
display: grid;
|
||||
display: grid;
|
||||
align-items: center;
|
||||
grid-template-columns: 166rpx repeat(4, 1fr);
|
||||
font-size: 22rpx;
|
||||
background-color: white;
|
||||
background-color: white;
|
||||
height: 60rpx;
|
||||
&.action {
|
||||
background-color: #FAFAFC;
|
||||
background-color: #FAFAFC;
|
||||
}
|
||||
|
||||
.child {
|
||||
.head
|
||||
{
|
||||
padding: 0 10rpx;
|
||||
font-size: 22rpx;
|
||||
}
|
||||
.child {
|
||||
padding: 0 10rpx;
|
||||
font-size: 18rpx;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
margin: 10rpx 0;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.child:first-child {
|
||||
margin-right: 20rpx;
|
||||
.nature
|
||||
{
|
||||
background-color: #FFF7E9;
|
||||
margin: 10rpx;
|
||||
line-height: 36rpx;
|
||||
border-radius: 5rpx;
|
||||
font-size: 18rpx;
|
||||
color: #E0AC4A;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user