diff --git a/src/views/report/components/service-item.vue b/src/views/report/components/service-item.vue index a7fdf706..b6fd11d7 100644 --- a/src/views/report/components/service-item.vue +++ b/src/views/report/components/service-item.vue @@ -2,7 +2,10 @@
{{orderInfo?.serviceName}} - {{orderInfo?.orderStatusString}} + + {{orderInfo?.orderStatusString}} + 刷新 +
@@ -25,6 +28,11 @@ export default { name: "service-item", props: ['orderInfo'], + methods: { + refreshHandler() { + this.$emit('refresh') + } + } } @@ -58,6 +66,13 @@ font-size: 13px; color: #F19028; } + .refresh_btn { + background-color: #267EF0; + color: #fff; + padding: 6px 12px; + margin-left: 5px; + border-radius: 3px; + } } .service_content { padding: 11px 16px 18px; diff --git a/src/views/report/reportIndex.vue b/src/views/report/reportIndex.vue index 134b05f8..a77f3909 100644 --- a/src/views/report/reportIndex.vue +++ b/src/views/report/reportIndex.vue @@ -1,13 +1,13 @@