import {requestNew} from "@/utils/network/request"; import {hexToStrig } from "@/utils/network/api.js"; const tools = require("../static/etcUtil/tools.js"); export const decryptCardVehicleInformation=(str, func)=> { const options = { type: 2, data: { str }, method: "POST", showLoading: true, }; requestNew(hexToStrig, options).then((res) => { tools.hideLoadingAlert(); console.log("后端解密",res) func(res.rd) }) }