|
|
@ -140,13 +140,13 @@ |
|
|
|
|
|
|
|
|
<!-- 底部操作按钮 --> |
|
|
<!-- 底部操作按钮 --> |
|
|
<div class="bottom-actions"> |
|
|
<div class="bottom-actions"> |
|
|
<button class="action-btn secondary" @click="confirmIssueReturn"> |
|
|
|
|
|
|
|
|
<button class="action-btn" @click="confirmIssueReturn"> |
|
|
确定 |
|
|
确定 |
|
|
</button> |
|
|
</button> |
|
|
<button class="action-btn secondary" style="margin-left: 10px;" @click="printLabels"> |
|
|
|
|
|
|
|
|
<button class="action-btn" style="margin-left: 10px;" @click="printLabels"> |
|
|
打印 |
|
|
打印 |
|
|
</button> |
|
|
</button> |
|
|
<button class="action-btn secondary" style="margin-left: 10px;" @click="cancelOperation"> |
|
|
|
|
|
|
|
|
<button class="action-btn" style="margin-left: 10px;" @click="cancelOperation"> |
|
|
取消 |
|
|
取消 |
|
|
</button> |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
@ -746,23 +746,23 @@ export default { |
|
|
|
|
|
|
|
|
.action-btn { |
|
|
.action-btn { |
|
|
flex: 1; |
|
|
flex: 1; |
|
|
padding: 12px 20px; |
|
|
|
|
|
border: none; |
|
|
|
|
|
border-radius: 8px; |
|
|
|
|
|
font-size: 15px; |
|
|
|
|
|
font-weight: bold; |
|
|
|
|
|
|
|
|
padding: 12px; |
|
|
|
|
|
border: 1px solid #17B3A3; |
|
|
|
|
|
background: white; |
|
|
|
|
|
color: #17B3A3; |
|
|
|
|
|
border-radius: 20px; |
|
|
|
|
|
font-size: 14px; |
|
|
cursor: pointer; |
|
|
cursor: pointer; |
|
|
transition: all 0.3s; |
|
|
|
|
|
|
|
|
transition: all 0.2s ease; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.action-btn.secondary { |
|
|
|
|
|
|
|
|
.action-btn:hover { |
|
|
background: #17B3A3; |
|
|
background: #17B3A3; |
|
|
color: white; |
|
|
color: white; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.action-btn.secondary:active { |
|
|
|
|
|
|
|
|
.action-btn:active { |
|
|
transform: scale(0.98); |
|
|
transform: scale(0.98); |
|
|
opacity: 0.9; |
|
|
|
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
|
|
|
|