cy-element-ui 1.0.31 → 1.0.33

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/lib/fileUpload.js CHANGED
@@ -546,7 +546,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
546
546
  // 上传的图片服务器地址
547
547
  uploadFileUrl: {
548
548
  type: String,
549
- default: '/design/resource_file/upload_file'
549
+ default: '/system/resource_file/upload_file'
550
550
  },
551
551
  // 请求参数
552
552
  data: {
@@ -925,7 +925,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
925
925
  }
926
926
  });
927
927
  // CONCATENATED MODULE: ./packages/fileUpload/src/main.vue?vue&type=script&lang=js
928
- /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
928
+ /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
929
929
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
930
930
  var componentNormalizer = __webpack_require__(0);
931
931
 
@@ -975,4 +975,4 @@ module.exports = require("element-ui/lib/link");
975
975
 
976
976
  /***/ })
977
977
 
978
- /******/ });
978
+ /******/ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cy-element-ui",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "description": "基于ElementUI开发的组件",
5
5
  "main": "lib/element-ui.common.js",
6
6
  "files": [
@@ -99,7 +99,7 @@
99
99
  "cross-env": "^3.1.3",
100
100
  "css-loader": "^2.1.0",
101
101
  "es6-promise": "^4.0.5",
102
- "eslint": "4.18.2",
102
+ "eslint": "4.19.1",
103
103
  "eslint-config-elemefe": "0.1.1",
104
104
  "eslint-loader": "^2.0.0",
105
105
  "eslint-plugin-html": "^4.0.1",
@@ -107,7 +107,7 @@ export default {
107
107
  // 上传的图片服务器地址
108
108
  uploadFileUrl: {
109
109
  type: String,
110
- default: '/design/resource_file/upload_file'
110
+ default: '/system/resource_file/upload_file'
111
111
  },
112
112
  // 请求参数
113
113
  data: {
package/src/index.js CHANGED
@@ -181,7 +181,6 @@ const components = [
181
181
  Descriptions,
182
182
  DescriptionsItem,
183
183
  Result,
184
- TreeSelect,
185
184
  SubTitle,
186
185
  FileUpload,
187
186
  CollapseTransition
@@ -198,6 +197,7 @@ const install = function(Vue, opts = {}) {
198
197
  Vue.use(InfiniteScroll);
199
198
  Vue.use(Loading.directive);
200
199
  Vue.use(TabDialog);
200
+ Vue.use(TreeSelect);
201
201
 
202
202
  Vue.prototype.$ELEMENT = {
203
203
  size: opts.size || '',
@@ -219,7 +219,7 @@ if (typeof window !== 'undefined' && window.Vue) {
219
219
  }
220
220
 
221
221
  export default {
222
- version: '1.0.29',
222
+ version: '1.0.32',
223
223
  locale: locale.use,
224
224
  i18n: locale.i18n,
225
225
  install,