[add] 清除暫存
This commit is contained in:
parent
8b108f2dd8
commit
c069ccd74e
@ -77,6 +77,9 @@
|
|||||||
],
|
],
|
||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [
|
"_components": [
|
||||||
|
{
|
||||||
|
"__id__": 7
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__id__": 8
|
"__id__": 8
|
||||||
},
|
},
|
||||||
@ -242,9 +245,6 @@
|
|||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 6
|
"__id__": 6
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 7
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": null,
|
"_prefab": null,
|
||||||
@ -307,16 +307,6 @@
|
|||||||
"webviewEvents": [],
|
"webviewEvents": [],
|
||||||
"_id": "0dhyrwc5lM/oEUOjnLH8Wx"
|
"_id": "0dhyrwc5lM/oEUOjnLH8Wx"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "e1b90/rohdEk4SdmmEZANaD",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"node": {
|
|
||||||
"__id__": 5
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"_id": "darFjTzH1B452j05U2ywfj"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.Canvas",
|
"__type__": "cc.Canvas",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@ -360,5 +350,18 @@
|
|||||||
"_originalWidth": 0,
|
"_originalWidth": 0,
|
||||||
"_originalHeight": 0,
|
"_originalHeight": 0,
|
||||||
"_id": "56i7y6VTBNEZCKvOCJzojM"
|
"_id": "56i7y6VTBNEZCKvOCJzojM"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "e1b90/rohdEk4SdmmEZANaD",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"node": {
|
||||||
|
"__id__": 2
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"webview": {
|
||||||
|
"__id__": 6
|
||||||
|
},
|
||||||
|
"_id": "b3AScs1lVP7ruEGNmMEKXU"
|
||||||
}
|
}
|
||||||
]
|
]
|
20
assets/Script/Manager.ts
Normal file
20
assets/Script/Manager.ts
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
const { ccclass, property } = cc._decorator;
|
||||||
|
|
||||||
|
@ccclass
|
||||||
|
export default class Manager extends cc.Component {
|
||||||
|
//#region 外調參數
|
||||||
|
|
||||||
|
@property({ type: cc.WebView })
|
||||||
|
public webview: cc.WebView = null
|
||||||
|
|
||||||
|
//#endregion
|
||||||
|
|
||||||
|
//#region Lifecycle
|
||||||
|
|
||||||
|
protected onLoad(): void {
|
||||||
|
this.webview.url = `https://karolchang.github.io/jm-expense-vue-ts/?ignore=${Date.now()}`;
|
||||||
|
this.webview.node.active = true
|
||||||
|
}
|
||||||
|
|
||||||
|
//#endregion
|
||||||
|
}
|
@ -1,9 +0,0 @@
|
|||||||
const { ccclass, property } = cc._decorator;
|
|
||||||
|
|
||||||
@ccclass
|
|
||||||
export default class webview extends cc.Component {
|
|
||||||
protected onLoad(): void {
|
|
||||||
this.node.getComponent(cc.WebView).url = `https://karolchang.github.io/jm-expense-vue-ts/?ignore=${Date.now()}`;
|
|
||||||
this.node.active = true;
|
|
||||||
}
|
|
||||||
}
|
|
115
tslint.json
Normal file
115
tslint.json
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
{
|
||||||
|
"rules": {
|
||||||
|
"ban": [
|
||||||
|
true,
|
||||||
|
[
|
||||||
|
"_",
|
||||||
|
"extend"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"_",
|
||||||
|
"isNull"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"_",
|
||||||
|
"isDefined"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"class-name": false,
|
||||||
|
"comment-format": [
|
||||||
|
true,
|
||||||
|
"check-space"
|
||||||
|
],
|
||||||
|
"curly": true,
|
||||||
|
"eofline": false,
|
||||||
|
"forin": false,
|
||||||
|
"indent": [
|
||||||
|
true,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"interface-name": [
|
||||||
|
true,
|
||||||
|
"never-prefix"
|
||||||
|
],
|
||||||
|
"jsdoc-format": true,
|
||||||
|
"label-position": true,
|
||||||
|
"label-undefined": true,
|
||||||
|
"max-line-length": [
|
||||||
|
false,
|
||||||
|
140
|
||||||
|
],
|
||||||
|
"no-arg": true,
|
||||||
|
"no-bitwise": false,
|
||||||
|
"no-console": [
|
||||||
|
true,
|
||||||
|
"debug",
|
||||||
|
"info",
|
||||||
|
"time",
|
||||||
|
"timeEnd",
|
||||||
|
"trace"
|
||||||
|
],
|
||||||
|
"no-construct": true,
|
||||||
|
"no-debugger": true,
|
||||||
|
"no-duplicate-key": true,
|
||||||
|
"no-duplicate-variable": true,
|
||||||
|
"no-empty": true,
|
||||||
|
// "no-eval": true,
|
||||||
|
"no-string-literal": false,
|
||||||
|
"no-trailing-comma": true,
|
||||||
|
"no-trailing-whitespace": true,
|
||||||
|
"no-unused-expression": false,
|
||||||
|
"no-unused-variable": true,
|
||||||
|
"no-unreachable": true,
|
||||||
|
"no-use-before-declare": false,
|
||||||
|
"one-line": [
|
||||||
|
true,
|
||||||
|
"check-open-brace",
|
||||||
|
"check-catch",
|
||||||
|
"check-else",
|
||||||
|
"check-whitespace"
|
||||||
|
],
|
||||||
|
"quotemark": [
|
||||||
|
true,
|
||||||
|
"double"
|
||||||
|
],
|
||||||
|
"radix": true,
|
||||||
|
"semicolon": [
|
||||||
|
true,
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"triple-equals": [
|
||||||
|
true,
|
||||||
|
"allow-null-check"
|
||||||
|
],
|
||||||
|
"typedef": [
|
||||||
|
true,
|
||||||
|
"call-signature",
|
||||||
|
"parameter",
|
||||||
|
"property-declaration",
|
||||||
|
"variable-declaration"
|
||||||
|
],
|
||||||
|
"typedef-whitespace": [
|
||||||
|
true,
|
||||||
|
{
|
||||||
|
"call-signature": "nospace"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index-signature": "space"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"use-strict": [
|
||||||
|
true,
|
||||||
|
"check-module",
|
||||||
|
"check-function"
|
||||||
|
],
|
||||||
|
"variable-name": false,
|
||||||
|
"whitespace": [
|
||||||
|
false,
|
||||||
|
"check-branch",
|
||||||
|
"check-decl",
|
||||||
|
"check-operator",
|
||||||
|
"check-separator",
|
||||||
|
"check-type"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user