12345678910111213141516171819202122232425262728293031 |
- import { Component } from "cc";
- import { Framework } from "../Framework";
- export class InteractiveUtil {
-
-
-
-
-
-
-
-
- postData(data, name, back: Function) {
- if (data) {
- back()
- } else {
- console.log(name + '返回数据找不到');
- Framework.tips.setTips('error')
- }
- }
- }
- export let IntaUtil = new InteractiveUtil;
|