|
@@ -18,7 +18,7 @@
|
|
|
<div class="content-box">
|
|
|
<div v-for="item in listArr" :key="item.ChartPermissionName">
|
|
|
<div class="industry-ul">
|
|
|
- <span :class="['industry-name', item.ChartPermissionName == '买方研选' && 'name-yanxuan']">{{ item.ChartPermissionName }}</span>
|
|
|
+ <span :class="['industry-name', item.ChartPermissionId == '31' && 'name-yanxuan',item.ChartPermissionId == '52' && 'points-name']">{{ item.ChartPermissionName }}</span>
|
|
|
<template v-if="item.ChartPermissionName !== '买方研选'">
|
|
|
<el-input :min="-100" :max="100" type="number" v-model="item.Proportion" size="small" @input="restrictInput(item)" style="width: 76px; margin: 0 5px 0 8px">
|
|
|
<div class="per_cent_" slot="suffix">%</div>
|
|
@@ -28,7 +28,7 @@
|
|
|
<p style="width: 38px; height: 32px; line-height: 32px; text-align: center" v-else>{{ item.Money }}</p>
|
|
|
</div>
|
|
|
<div v-for="study in item.List" :key="study.RealName" class="industry-ul">
|
|
|
- <span :class="['study-name', item.ChartPermissionName == '买方研选' && 'name-yanxuan']">{{ study.RealName }}</span>
|
|
|
+ <span :class="['study-name', item.ChartPermissionId == '31' && 'name-yanxuan',item.ChartPermissionId == '52' && 'points-name']">{{ study.RealName }}</span>
|
|
|
<template v-if="study.RealName !== '买方研选'">
|
|
|
<el-input :min="-100" :max="100" type="number" v-model="study.Proportion" size="small" style="width: 76px; margin: 0 5px 0 8px">
|
|
|
<div class="per_cent_" slot="suffix">%</div>
|
|
@@ -168,6 +168,9 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
}
|
|
|
.content-box {
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ overflow-x: auto;
|
|
|
display: flex;
|
|
|
.industry-ul {
|
|
|
display: flex;
|
|
@@ -175,7 +178,7 @@ export default {
|
|
|
margin: 30px 0;
|
|
|
width: 180px;
|
|
|
color: #333;
|
|
|
- margin-right: 35px;
|
|
|
+ margin-right: 25px;
|
|
|
.per_cent_ {
|
|
|
line-height: 32px;
|
|
|
}
|
|
@@ -211,7 +214,10 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.name-yanxuan {
|
|
|
- width: 65px !important;
|
|
|
+ width: 70px !important;
|
|
|
+ }
|
|
|
+ .points-name {
|
|
|
+ width: 80px !important;
|
|
|
}
|
|
|
/* 取消[type='number']的input的上下箭头 */
|
|
|
input::-webkit-inner-spin-button {
|