xs-common-plugins 1.2.5 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -1
- package/package.json +1 -1
- package/src/components/Search/index.vue +2 -2
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
:style="{ width: optionItem.itemWidth }">
|
|
54
54
|
<el-input v-model="inputValue[optionItem.fieldName]" :placeholder="optionItem.defaultValue" @change="(value)=>{
|
|
55
55
|
optionItem.change&&optionItem.change(value)
|
|
56
|
-
}"></el-input>
|
|
56
|
+
}" @keydown.enter.native="toSearch"></el-input>
|
|
57
57
|
</el-form-item>
|
|
58
58
|
<!--下拉单选通过接口-->
|
|
59
59
|
<el-form-item :label="optionItem.displayName"
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
</div>
|
|
178
178
|
<slot name="search_custemBtn" />
|
|
179
179
|
<!-- <div class="buttonBox">
|
|
180
|
-
|
|
180
|
+
|
|
181
181
|
<el-form-item v-if="!!getBtnContentIsOut().length">
|
|
182
182
|
<el-dropdown
|
|
183
183
|
trigger="click"
|