feat: 新增包装测试
This commit is contained in:
@@ -682,7 +682,7 @@ async function onSave() {
|
||||
<div class="flex-auto flex-end">
|
||||
<a-button
|
||||
v-if="addItemShown"
|
||||
class="custom-button"
|
||||
class="custom-button add-button"
|
||||
type="primary"
|
||||
@click="onAddItem(packageTypeEnum.outer, standardNewestEnum.newest)"
|
||||
>
|
||||
@@ -795,7 +795,7 @@ async function onSave() {
|
||||
<div class="flex-auto flex-end">
|
||||
<a-button
|
||||
v-if="addItemShown"
|
||||
class="custom-button yellow-button"
|
||||
class="custom-button yellow-button add-button"
|
||||
type="primary"
|
||||
@click="onAddItem(packageTypeEnum.outer, standardNewestEnum.standard)"
|
||||
>
|
||||
@@ -910,7 +910,7 @@ async function onSave() {
|
||||
<div class="flex-auto flex-end">
|
||||
<a-button
|
||||
v-if="addItemShown"
|
||||
class="custom-button"
|
||||
class="custom-button add-button"
|
||||
type="primary"
|
||||
@click="onAddItem(packageTypeEnum.inner, standardNewestEnum.newest)"
|
||||
>
|
||||
@@ -1023,7 +1023,7 @@ async function onSave() {
|
||||
<div class="flex-auto flex-end">
|
||||
<a-button
|
||||
v-if="addItemShown"
|
||||
class="custom-button yellow-button"
|
||||
class="custom-button yellow-button add-button"
|
||||
type="primary"
|
||||
@click="onAddItem(packageTypeEnum.inner, standardNewestEnum.standard)"
|
||||
>
|
||||
@@ -1131,20 +1131,20 @@ async function onSave() {
|
||||
<div class="flex-none full-width flex flex-end footer">
|
||||
<a-button
|
||||
v-if="stepId !== allowedStepList[0].id"
|
||||
class="custom-button btn-outline"
|
||||
class="custom-button btn-outline padding-button"
|
||||
@click="onPrev"
|
||||
>上一步</a-button
|
||||
>
|
||||
<a-button
|
||||
v-if="stepId !== allowedStepList[allowedStepList.length - 1].id"
|
||||
class="custom-button btn-outline"
|
||||
class="custom-button btn-outline padding-button"
|
||||
@click="onNext"
|
||||
>下一步</a-button
|
||||
>
|
||||
<a-button
|
||||
v-if="stepId === allowedStepList[allowedStepList.length - 1].id"
|
||||
type="primary"
|
||||
class="custom-button"
|
||||
class="custom-button padding-button"
|
||||
@click="onSave"
|
||||
>保存方案</a-button>
|
||||
</div>
|
||||
@@ -1183,6 +1183,11 @@ async function onSave() {
|
||||
}
|
||||
}
|
||||
|
||||
.add-button, .padding-button {
|
||||
padding-left: 10px !important;
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
|
||||
.yellow-button {
|
||||
border-color: #ffaa00 !important;
|
||||
background-color: #ffaa00 !important;
|
||||
|
||||
Reference in New Issue
Block a user