// @ts-nocheck
|
|
// #ifndef UNI-APP-X
|
|
type UTSJSONObject = Record<string, any>
|
|
// #endif
|
|
export function obj2url(data: UTSJSONObject, isPrefix: boolean = false): string {
|
|
const prefix = isPrefix ? '?' : '';
|
|
const _result = [];
|
|
|
|
|
|
|
|
}
|