change color

This commit is contained in:
kimscott
2020-02-21 12:11:55 +09:00
parent 3895558259
commit 8d0113e69f
3 changed files with 8 additions and 5 deletions

View File

@@ -58,9 +58,6 @@ stages:
tags: |
$(tag)
- upload: manifests
artifact: manifests
- stage: Deploy
displayName: Deploy stage
# dependsOn: Build
@@ -131,7 +128,7 @@ stages:
- containerPort: 8080
env:
- name: VUE_APP_API_HOST
value: http://$(gatewayip.KubectlOutput):$(gatewayport.KubectlOutput)
value: http://${gatewayip.KubectlOutput}:${gatewayport.KubectlOutput}
secretType: 'dockerRegistry'
containerRegistryType: 'Azure Container Registry'
- task: Kubernetes@1

View File

@@ -19,7 +19,7 @@
v-if="item.deliveryStarted && item.deliveryCompleted"
> 배송 완료
</v-chip>
<v-chip :color="'green'"
<v-chip :color="'blue'"
dark
v-else-if="item.deliveryStarted && !item.deliveryCompleted"
> 배송 시작

View File

@@ -20,6 +20,12 @@
dark
> {{ item.deli }}
</v-chip>
<v-chip :color="'blue'"
dark
v-else-if="item.deli == 'DeliveryStarted'"
>
{{ item.deli }}
</v-chip>
<v-chip :color="'red'"
dark
v-else-if="item.deli == 'DeliveryCancelled'"