fix
This commit is contained in:
parent
7c789a8f68
commit
28c42f400e
|
@ -15,7 +15,7 @@
|
|||
plain
|
||||
shape="circle"
|
||||
:bgColor="'rgba(237, 254, 255, 1)'"
|
||||
@click="handleScenePhoto(currentOrder.id)"
|
||||
@click="handleScenePhoto(currentOrder.id + '')"
|
||||
></u-tag
|
||||
></view>
|
||||
<view
|
||||
|
@ -26,7 +26,7 @@
|
|||
:borderColor="'rgba(255, 147, 68, 1) !important'"
|
||||
:bgColor="'rgba(255, 240, 229, 1)'"
|
||||
:color="'rgba(255, 157, 85, 1) !important'"
|
||||
@click="handleModal(true, currentOrder.id as string)"
|
||||
@click="handleModal(true, currentOrder.id + '')"
|
||||
></u-tag
|
||||
></view>
|
||||
</view>
|
||||
|
@ -108,7 +108,9 @@ const props = withDefaults(
|
|||
currentOrder: Order;
|
||||
}>(),
|
||||
{
|
||||
currentOrder: {},
|
||||
currentOrder: {
|
||||
id: ''
|
||||
},
|
||||
}
|
||||
);
|
||||
const state = reactive<{
|
||||
|
|
Loading…
Reference in New Issue