eoss-ui 0.5.19 → 0.5.20

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": "eoss-ui",
3
- "version": "0.5.19",
3
+ "version": "0.5.20",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -96,7 +96,7 @@
96
96
  "cp-cli": "^1.0.2",
97
97
  "cross-env": "^3.1.3",
98
98
  "css-loader": "^2.1.0",
99
- "eoss-element": "^0.2.76",
99
+ "eoss-element": "^0.2.79",
100
100
  "es6-promise": "^4.0.5",
101
101
  "eslint": "4.18.2",
102
102
  "eslint-config-elemefe": "0.1.1",
@@ -168,6 +168,7 @@
168
168
  "
169
169
  v-bind="formOption"
170
170
  v-model="scope.row[field || prop]"
171
+ :type="type"
171
172
  @blur="
172
173
  (event) => {
173
174
  handleBlur({
@@ -551,6 +552,8 @@ export default {
551
552
  return config;
552
553
  },
553
554
  formOption() {
555
+ console.log('this.$attrs',this.$attrs);
556
+ console.log('this.option',this.option);
554
557
  return {
555
558
  labelKey: this.sysCode ? 'shortName' : this.labelKey,
556
559
  valueKey: this.sysCode ? 'cciValue' : this.valueKey,
package/src/index.js CHANGED
@@ -117,7 +117,7 @@ if (typeof window !== 'undefined' && window.Vue) {
117
117
  }
118
118
 
119
119
  export default {
120
- version: '0.5.19',
120
+ version: '0.5.20',
121
121
  install,
122
122
  Button,
123
123
  ButtonGroup,