|
@@ -114,11 +114,25 @@ const bidCountdown = computed(() => {
|
|
|
:cache="true"
|
|
|
type="project"
|
|
|
:params="contentId"
|
|
|
- />
|
|
|
+ ></quick-monitor>
|
|
|
|
|
|
- <div class="action-item" v-if="false">
|
|
|
+ <div
|
|
|
+ class="action-item"
|
|
|
+ v-if="JoinBidInfo.showParticipate"
|
|
|
+ @click="doChangeJoinBid('in')"
|
|
|
+ >
|
|
|
<span class="iconfont icon-canbiao"></span>
|
|
|
+ <span class="text">参标</span>
|
|
|
</div>
|
|
|
+ <div
|
|
|
+ class="action-item"
|
|
|
+ v-if="JoinBidInfo.showStopParticipate"
|
|
|
+ @click="doChangeJoinBid('out')"
|
|
|
+ >
|
|
|
+ <span class="iconfont icon-canbiao icon-stop-canbiao"></span>
|
|
|
+ <span class="text">终止参标</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="action-item">
|
|
|
<article-star
|
|
|
:id="contentId"
|
|
@@ -190,6 +204,7 @@ const bidCountdown = computed(() => {
|
|
|
background-color: #fff;
|
|
|
padding: 32px 40px;
|
|
|
border-radius: 8px;
|
|
|
+
|
|
|
.before-type {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
@@ -259,6 +274,10 @@ const bidCountdown = computed(() => {
|
|
|
.iconfont {
|
|
|
font-size: 18px;
|
|
|
color: #9b9ca3;
|
|
|
+
|
|
|
+ &.icon-stop-canbiao {
|
|
|
+ color: #ff3b20;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.action-item {
|