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.
@@ -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
- :disabled="props.searchPageConfig.total ? props.searchPageConfig.page >= props.searchPageConfig.total : !props.searchPageConfig.hasNextPage"
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')"