cnhis-design-vue 0.2.63-beta → 0.2.64-beta
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/es/form-table/index.js +26 -24
- package/es/form-table/style.css +1 -1
- package/es/index/index.js +61 -48
- package/es/index/style.css +1 -1
- package/es/select/index.js +26 -24
- package/es/select/style.css +1 -1
- package/es/table-filter/index.js +61 -48
- package/es/table-filter/style.css +1 -1
- package/package.json +1 -1
- package/packages/table-filter/src/mixins/wordBookutils.js +4 -1
- package/packages/table-filter/src/quick-search/QuickSearch.vue +3 -0
- package/src/component/select-pages/index.vue +3 -1
|
@@ -1141,6 +1141,9 @@ export default create({
|
|
|
1141
1141
|
};
|
|
1142
1142
|
return this.handleGetConfigApi(params, 'requestGetWordbookData', { fields: o }).then(res => {
|
|
1143
1143
|
this.fetchingWordbook = false;
|
|
1144
|
+
if(typeof res.data === 'object'){
|
|
1145
|
+
res.data.reqParams = params;
|
|
1146
|
+
}
|
|
1144
1147
|
return res;
|
|
1145
1148
|
}).catch(() => {
|
|
1146
1149
|
this.fetchingWordbook = false;
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
<a-icon type="left" /> 上一页
|
|
10
10
|
</a-button>
|
|
11
11
|
<a-button
|
|
12
|
-
|
|
12
|
+
:disabled="props.searchPageConfig.asyncCount == 1
|
|
13
|
+
? !props.searchPageConfig.hasNextPage
|
|
14
|
+
: props.searchPageConfig.page >= props.searchPageConfig.total"
|
|
13
15
|
type="dashed"
|
|
14
16
|
block
|
|
15
17
|
@click.self.stop="props.handleSearchChangePage('next')"
|