forked from fanruan/fineui
Browse Source
* commit '05a008e4cbd993e27c6c194dc7e8b17832c0fbb4': update update update update update BI-11060 firefox下拉菜单有条黄线es6
guy
7 years ago
13 changed files with 671 additions and 110 deletions
@ -0,0 +1,52 @@ |
|||||||
|
;(function(){ |
||||||
|
var model = Fix.define({ |
||||||
|
name: "原始属性", |
||||||
|
arr: [{ |
||||||
|
n: 'a' |
||||||
|
}, { |
||||||
|
n: 'b' |
||||||
|
}] |
||||||
|
}); |
||||||
|
var Computed = BI.inherit(Fix.VM, { |
||||||
|
computed: { |
||||||
|
b: function () { |
||||||
|
return this.name + "-计算属性" |
||||||
|
} |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
Demo.Fix = BI.inherit(BI.Widget, { |
||||||
|
_store: function () { |
||||||
|
return new Computed(model); |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
b: function () { |
||||||
|
this.button.setText(this.model.b) |
||||||
|
} |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
var self = this; |
||||||
|
return { |
||||||
|
type: "bi.absolute", |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "bi.button", |
||||||
|
ref: function () { |
||||||
|
self.button = this; |
||||||
|
}, |
||||||
|
handler: function () { |
||||||
|
self.model.name = "这是改变后的属性" |
||||||
|
}, |
||||||
|
text: this.model.b |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted: function () { |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.shortcut("demo.fix2", Demo.Fix); |
||||||
|
}()); |
@ -0,0 +1,45 @@ |
|||||||
|
;(function () { |
||||||
|
var model = Fix.define({ |
||||||
|
name: "原始属性", |
||||||
|
arr: [{ |
||||||
|
n: 'a' |
||||||
|
}, { |
||||||
|
n: 'b' |
||||||
|
}] |
||||||
|
}); |
||||||
|
|
||||||
|
Demo.Fix = BI.inherit(BI.Widget, { |
||||||
|
_store: function () { |
||||||
|
return model; |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
name: function () { |
||||||
|
this.button.setText(this.model.name) |
||||||
|
} |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
var self = this; |
||||||
|
return { |
||||||
|
type: "bi.absolute", |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "bi.button", |
||||||
|
ref: function () { |
||||||
|
self.button = this; |
||||||
|
}, |
||||||
|
handler: function () { |
||||||
|
self.model.name = "这是改变后的属性" |
||||||
|
}, |
||||||
|
text: this.model.name |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted: function () { |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.shortcut("demo.fix1", Demo.Fix); |
||||||
|
}()); |
@ -1,52 +1,75 @@ |
|||||||
var model = Fix.define({ |
;(function () { |
||||||
name: 1, |
var model = Fix.define({ |
||||||
arr: [{ |
name: 1, |
||||||
n: 'a' |
arr: [{ |
||||||
}, { |
n: 'a' |
||||||
n: 'b' |
}, { |
||||||
}] |
n: 0 |
||||||
}); |
}] |
||||||
Demo.Computed = BI.inherit(Fix.VM, { |
}); |
||||||
computed: { |
var Computed = BI.inherit(Fix.VM, { |
||||||
b: function () { |
computed: { |
||||||
return this.name + 1 |
b: function () { |
||||||
}, |
return this.name + 1 |
||||||
c: function () { |
}, |
||||||
return this.arr[1].n + this.b |
c: function () { |
||||||
|
return this.arr[1].n + this.b |
||||||
|
} |
||||||
} |
} |
||||||
} |
}) |
||||||
}) |
|
||||||
|
|
||||||
Demo.Store = BI.inherit(Fix.VM, { |
var Store = BI.inherit(Fix.VM, { |
||||||
_init: function () { |
_init: function () { |
||||||
this.comp = new Demo.Computed(model).model; |
this.comp = new Computed(model).model; |
||||||
}, |
}, |
||||||
computed: { |
computed: { |
||||||
b: function () { |
b: function () { |
||||||
return this.comp.c + 1 |
return this.comp.c + 1 |
||||||
} |
}, |
||||||
}, |
c: function () { |
||||||
actions: { |
return this.comp.arr[1].n & 1; |
||||||
run: function () { |
} |
||||||
this.comp.name = 2; |
}, |
||||||
this.comp.arr[1].n = "c" |
actions: { |
||||||
|
run: function () { |
||||||
|
this.comp.name++; |
||||||
|
this.comp.arr[1].n++; |
||||||
|
} |
||||||
} |
} |
||||||
} |
}); |
||||||
}); |
|
||||||
|
|
||||||
Demo.Fix = BI.inherit(BI.Widget, { |
Demo.Fix = BI.inherit(BI.Widget, { |
||||||
_store: function () { |
_store: function () { |
||||||
return new Demo.Store(); |
return new Store(); |
||||||
}, |
}, |
||||||
watch: { |
watch: { |
||||||
b: function () { |
"b&&(c||b)": function () { |
||||||
debugger; |
this.button.setText(this.model.b) |
||||||
} |
} |
||||||
}, |
}, |
||||||
mounted: function () { |
render: function () { |
||||||
|
var self = this; |
||||||
|
return { |
||||||
|
type: "bi.absolute", |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "bi.button", |
||||||
|
ref: function () { |
||||||
|
self.button = this; |
||||||
|
}, |
||||||
|
handler: function () { |
||||||
|
self.store.run() |
||||||
|
}, |
||||||
|
text: this.model.b |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted: function () { |
||||||
|
|
||||||
this.store.run() |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
BI.shortcut("demo.fix", Demo.Fix); |
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.shortcut("demo.fix", Demo.Fix); |
||||||
|
}()); |
@ -0,0 +1,60 @@ |
|||||||
|
;(function(){ |
||||||
|
var model = Fix.define({ |
||||||
|
name: "原始属性", |
||||||
|
arr: [{ |
||||||
|
n: 'a' |
||||||
|
}, { |
||||||
|
n: 'b' |
||||||
|
}] |
||||||
|
}); |
||||||
|
|
||||||
|
var Store = BI.inherit(Fix.VM, { |
||||||
|
_init: function () { |
||||||
|
}, |
||||||
|
computed: { |
||||||
|
b: function () { |
||||||
|
return model.name + '-计算属性' |
||||||
|
} |
||||||
|
}, |
||||||
|
actions: { |
||||||
|
run: function () { |
||||||
|
model.name = "这是改变后的属性"; |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
Demo.Fix = BI.inherit(BI.Widget, { |
||||||
|
_store: function () { |
||||||
|
return new Store(); |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
b: function () { |
||||||
|
this.button.setText(this.model.b) |
||||||
|
} |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
var self = this; |
||||||
|
return { |
||||||
|
type: "bi.absolute", |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "bi.button", |
||||||
|
ref: function () { |
||||||
|
self.button = this; |
||||||
|
}, |
||||||
|
handler: function () { |
||||||
|
self.store.run() |
||||||
|
}, |
||||||
|
text: this.model.b |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted: function () { |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.shortcut("demo.fix3", Demo.Fix); |
||||||
|
}()); |
@ -0,0 +1,51 @@ |
|||||||
|
;(function () { |
||||||
|
var model = Fix.define({ |
||||||
|
name: "原始属性", |
||||||
|
arr: [{ |
||||||
|
n: 'a' |
||||||
|
}, { |
||||||
|
n: 0 |
||||||
|
}] |
||||||
|
}); |
||||||
|
|
||||||
|
Demo.Fix = BI.inherit(BI.Widget, { |
||||||
|
_store: function () { |
||||||
|
return model; |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
"name||arr.1.n": function () { |
||||||
|
this.button.setText(this.model.name + "-" + this.model.arr[1].n) |
||||||
|
} |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
var self = this; |
||||||
|
var cnt = 0; |
||||||
|
return { |
||||||
|
type: "bi.absolute", |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "bi.button", |
||||||
|
ref: function () { |
||||||
|
self.button = this; |
||||||
|
}, |
||||||
|
handler: function () { |
||||||
|
if (cnt & 1) { |
||||||
|
self.model.name += 1; |
||||||
|
} else { |
||||||
|
self.model.arr[1].n += 1; |
||||||
|
} |
||||||
|
cnt++; |
||||||
|
}, |
||||||
|
text: this.model.name + "-" + this.model.arr[1].n |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted: function () { |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.shortcut("demo.fix4", Demo.Fix); |
||||||
|
}()); |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue