Commit 3c109fbe authored by lhd's avatar lhd

update:可控制grp-transfer,并升级版本2.15.7689

parent 20b6f668
{"1.4.13":"1.4","2.0.11":"2.0","2.1.0":"2.1","2.2.2":"2.2","2.3.9":"2.3","2.4.11":"2.4","2.5.4":"2.5","2.6.3":"2.6","2.7.2":"2.7","2.8.2":"2.8","2.9.2":"2.9","2.10.1":"2.10","2.11.1":"2.11","2.12.0":"2.12","2.13.2":"2.13","2.14.1":"2.14","2.15.7688":"2.15"}
\ No newline at end of file
{"1.4.13":"1.4","2.0.11":"2.0","2.1.0":"2.1","2.2.2":"2.2","2.3.9":"2.3","2.4.11":"2.4","2.5.4":"2.5","2.6.3":"2.6","2.7.2":"2.7","2.8.2":"2.8","2.9.2":"2.9","2.10.1":"2.10","2.11.1":"2.11","2.12.0":"2.12","2.13.2":"2.13","2.14.1":"2.14","2.15.7689":"2.15"}
\ No newline at end of file
{
"name": "element-ui",
"version": "2.15.7688",
"version": "2.15.7689",
"description": "A Component Library for Vue.js.",
"main": "lib/element-ui.common.js",
"files": [
......
......@@ -8,25 +8,25 @@
<div class="el-transfer__buttons">
<div>
<el-button type="primary" :class="['el-transfer__button', hasButtonTexts ? 'is-with-texts' : '']"
@click.native="moveUp" :disabled="upDisabled">
@click.native="moveUp" :disabled="upDisabled || isDisabled">
<i class="el-icon-arrow-up"></i>
</el-button>
</div>
<div>
<el-button type="primary" :class="['el-transfer__button', hasButtonTexts ? 'is-with-texts' : '']"
@click.native="moveDown" :disabled="downDisabled">
@click.native="moveDown" :disabled="downDisabled || isDisabled">
<i class="el-icon-arrow-down"></i>
</el-button>
</div>
<div>
<el-button type="primary" :class="['el-transfer__button', hasButtonTexts ? 'is-with-texts' : '']"
@click.native="addToLeft" :disabled="rightChecked.length === 0">
@click.native="addToLeft" :disabled="rightChecked.length === 0 || isDisabled">
<i class="el-icon-arrow-left"></i>
</el-button>
</div>
<div>
<el-button type="primary" :class="['el-transfer__button', hasButtonTexts ? 'is-with-texts' : '']"
@click.native="addToRight" :disabled="leftChecked.length === 0">
@click.native="addToRight" :disabled="leftChecked.length === 0 || isDisabled">
<i class="el-icon-arrow-right"></i>
</el-button>
</div>
......@@ -57,6 +57,12 @@ export default {
},
props: {
isDisabled: {
type: Boolean,
default() {
return false;
}
},
data: {
type: Array,
default() {
......
......@@ -212,7 +212,7 @@ if (typeof window !== 'undefined' && window.Vue) {
}
export default {
version: '2.15.7688',
version: '2.15.7689',
locale: locale.use,
i18n: locale.i18n,
install,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment