Browse Source

Pull request #3429: KERNEL-14215 fix:bi.search_text_value_combo下拉无法展示和搜索mask无法展示的问题-bug20

Merge in VISUAL/fineui from ~VIVY.PAN/fineui:es6 to es6

* commit '4c8ab8674c35105f4901f0591dca7ad1df9f0968':
  KERNEL-14215 fix:bi.search_text_value_combo下拉无法展示和搜索mask无法展示的问题-bug20
es6
Vivy.Pan-潘柯芋 2 years ago
parent
commit
410f090b2e
  1. 2
      src/case/combo/searchtextvaluecombo/trigger.searchtextvalue.js
  2. 4
      src/core/controller/controller.masker.js

2
src/case/combo/searchtextvaluecombo/trigger.searchtextvalue.js

@ -47,7 +47,7 @@ export class SearchTextValueTrigger extends Trigger {
el: { el: {
type: Searcher.xtype, type: Searcher.xtype,
ref: _ref => { ref: _ref => {
this.searcher = this; this.searcher = _ref;
}, },
isAutoSearch: false, isAutoSearch: false,
el: { el: {

4
src/core/controller/controller.masker.js

@ -4,11 +4,11 @@
* Created by GUY on 2015/6/24. * Created by GUY on 2015/6/24.
*/ */
import { LayerController } from "./controller.layer"; import { LayerController } from "./controller.layer";
import { zIndex_layer } from "../constant"; import { zIndex_masker } from "../constant";
export class MaskersController extends LayerController { export class MaskersController extends LayerController {
init() { init() {
super.init(arguments); super.init(arguments);
this.zindex = zIndex_layer; this.zindex = zIndex_masker;
} }
} }

Loading…
Cancel
Save