|
@@ -240,9 +240,16 @@
|
|
|
第 {{ itemc.issue_no }} 期<br />
|
|
|
出版日期:{{ itemc.shelve_date }}
|
|
|
</div>
|
|
|
- <el-button class="custom-btn">{{
|
|
|
- itemc.issue_no
|
|
|
- }}</el-button>
|
|
|
+ <el-button
|
|
|
+ class="custom-btn"
|
|
|
+ :style="{
|
|
|
+ color:
|
|
|
+ itemc.is_shelve && itemc.is_shelve === 'false'
|
|
|
+ ? '#00adef'
|
|
|
+ : '',
|
|
|
+ }"
|
|
|
+ >{{ itemc.issue_no }}</el-button
|
|
|
+ >
|
|
|
</el-tooltip>
|
|
|
</li>
|
|
|
</ul>
|
|
@@ -481,7 +488,7 @@ export default {
|
|
|
value: -1,
|
|
|
},
|
|
|
{
|
|
|
- label: "已发行期数自选预定",
|
|
|
+ label: "已发行/未发行期数自选预定",
|
|
|
value: 10000,
|
|
|
},
|
|
|
],
|
|
@@ -1513,6 +1520,11 @@ export default {
|
|
|
height: 20px;
|
|
|
color: #000;
|
|
|
}
|
|
|
+ &:hover {
|
|
|
+ .custom-btn {
|
|
|
+ // color: #000 !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
&.active {
|
|
|
border-right: 1px solid #f5f5f5 !important;
|
|
|
border-bottom: 1px solid #f5f5f5 !important;
|
|
@@ -1526,11 +1538,6 @@ export default {
|
|
|
color: #fff !important;
|
|
|
}
|
|
|
}
|
|
|
- &:hover {
|
|
|
- .custom-btn {
|
|
|
- color: #000 !important;
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|