后台:修复部分遗漏

This commit is contained in:
luying
2021-05-12 20:07:47 +08:00
parent 148a11edab
commit 388d82991f
10 changed files with 65 additions and 57 deletions

View File

@@ -0,0 +1,23 @@
import { Application, ChannelService } from 'pinus';
import { reloadResources } from '../../../pubUtils/data';
export default function (app: Application) {
return new OrderRemote(app);
}
export class OrderRemote {
constructor(private app: Application) {
this.app = app;
this.channelService = app.get('channelService');
}
private channelService: ChannelService;
/**
* 重载json资源
*/
public async reloadResources() {
reloadResources();
}
}