'适配深色模式'

This commit is contained in:
wtq
2025-12-29 11:47:34 +08:00
parent 0e597fd798
commit 185d59c6d1
143 changed files with 3711 additions and 1237 deletions

View File

@@ -10,6 +10,8 @@ import printerTemplate from '@/utils/bluetoothPrinter/printerTemplate'
import configCms from "@/utils/configCms"
import order from "@/api/https/order"
import merchant from "@/api/https/merchant"
import { computed } from "vue"
import { store } from "@/store"
function useOrderInfo() {
const bluetooth = new Bluetooth()
@@ -33,6 +35,7 @@ function useOrderInfo() {
})
}
const appTheme = computed(() => { return store.getters['serveInfo/appTheme'] === 'light'})
/************************************************************
* 拨打电话
@@ -284,6 +287,7 @@ function useOrderInfo() {
waybillVendor, // 转换厂商
afterSalesDetaile, // 售后详情
bluetoothPrinter, // 打印订单
appTheme
}
}