doway-coms 2.11.44 → 2.11.45

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doway-coms",
3
- "version": "2.11.44",
3
+ "version": "2.11.45",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -154,13 +154,13 @@ export default {
154
154
  disablePrevYearBtn: {
155
155
  type: Boolean,
156
156
  default: function () {
157
- return false;
157
+ return true;
158
158
  },
159
159
  },
160
160
  disableNextYearBtn: {
161
161
  type: Boolean,
162
162
  default: function () {
163
- return false;
163
+ return true;
164
164
  },
165
165
  },
166
166
  },
@@ -2285,8 +2285,8 @@ export default {
2285
2285
  originCol.disabledDateValue == undefined ? 0: originCol.disabledDateValue
2286
2286
  }
2287
2287
  colParams['disableUserVisible'] = originCol.disableUserVisible === true
2288
- colParams['disablePrevYearBtn'] = originCol.disablePrevYearBtn === true
2289
- colParams['disableNextYearBtn'] = originCol.disableNextYearBtn === true
2288
+ colParams['disablePrevYearBtn'] = true
2289
+ colParams['disableNextYearBtn'] = true
2290
2290
  colInfo['params'] = colParams
2291
2291
  colInfo['params']['sysOriValue'] = {}
2292
2292