Commit 993a83cb by 无尘

fix: 修改 effectiveStatus 默认值为 1 ,即默认为有效状态数据

parent d53c8134
This source diff could not be displayed because it is too large. You can view the blob instead.
{ {
"name": "@gic-test/vue-gic-member-group", "name": "@gic-test/vue-gic-member-group",
"description": "vue-gic-member-group Plugin", "description": "vue-gic-member-group Plugin",
"version": "1.0.36", "version": "1.0.37",
"license": "MIT", "license": "MIT",
"private": false, "private": false,
"author": "fairyly", "author": "fairyly",
......
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
@click="selectToTransfer" @click="selectToTransfer"
circle> circle>
</el-button> </el-button>
<el-button <el-button
class="transfer-icon" class="transfer-icon"
size="mini" size="mini"
:type="selectionToRemove.length > 0 ? 'primary' : ''" :type="selectionToRemove.length > 0 ? 'primary' : ''"
...@@ -166,7 +166,7 @@ ...@@ -166,7 +166,7 @@
}, },
effectiveStatus: { effectiveStatus: {
type: [String, Number], type: [String, Number],
default: "" default: 1
} }
}, },
data() { data() {
...@@ -380,7 +380,7 @@ ...@@ -380,7 +380,7 @@
} }
}); });
}, },
searchSelectedByKey(key) { searchSelectedByKey(key) {
let arr = []; let arr = [];
this.staticSelectedData.forEach(data => { this.staticSelectedData.forEach(data => {
......
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