|
@@ -284,8 +284,6 @@ export class WindowEvent {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 弹出右侧菜单,隐藏
|
|
* 弹出右侧菜单,隐藏
|
|
- * index 当前数组下标
|
|
|
|
- * list 菜单列表
|
|
|
|
*/
|
|
*/
|
|
WindowMenuStoreExit = function() {
|
|
WindowMenuStoreExit = function() {
|
|
|
|
|
|
@@ -316,14 +314,17 @@ export class WindowEvent {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 弹出分数,隐藏
|
|
* 弹出分数,隐藏
|
|
- * index 当前数组下标
|
|
|
|
- * list 菜单列表
|
|
|
|
|
|
+ * resetBool 是否重置分数
|
|
*/
|
|
*/
|
|
- WindowFractionStoreExit = function() {
|
|
|
|
|
|
+ WindowFractionStoreExit = function(resetBool) {
|
|
|
|
|
|
let thisClass = this;
|
|
let thisClass = this;
|
|
thisClass.ComStore["WindowFractionStore"]().obj.viewOpen = false;
|
|
thisClass.ComStore["WindowFractionStore"]().obj.viewOpen = false;
|
|
|
|
|
|
|
|
+ if (resetBool == true) {
|
|
|
|
+ thisClass.ComStore["WindowFractionStore"]().obj.val = parseInt("" + thisClass.ComStore["WindowFractionStore"]().obj.valMax);
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|