t-lj-service 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/module/config.ts +1 -1
- package/module/hooks.ts +1 -1
- package/package.json +1 -1
package/module/config.ts
CHANGED
package/module/hooks.ts
CHANGED
|
@@ -127,7 +127,7 @@ export const notification = (message: string, title: string = '提示', options:
|
|
|
127
127
|
* @param url 静态资源assets内文件路径
|
|
128
128
|
*/
|
|
129
129
|
export const getAssetsImage = (url: string): any => {
|
|
130
|
-
return new URL(
|
|
130
|
+
return new URL(`${url}`, import.meta.url).href
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
/**
|