@@ -170,7 +170,7 @@ const fetchOrderCardData = async (orderId) => {
const res = await ReturntheOrderCard({ id: orderId });
dataDetail.value = res.data?.map(item => ({
...item,
- status: item.status === 1 ? t('order.normal') : t('order.unsubscribe')
+ status: item.status == 1 ? t('order.normal') : t('order.unsubscribe')
})) || [];
};
@@ -117,7 +117,7 @@ export const SetMealSearchForm = [
{
type: "input",
label: "套餐ID",
- field: "label",
+ field: "id",
value: "", // 双向绑定的值
},
@@ -9,7 +9,7 @@ export const SetMealSearchForm = [