emacroh5lib 1.0.22 → 1.0.23

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": "emacroh5lib",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "EMacro前端组件库",
5
5
  "main": "dist/emacroh5lib.min.js",
6
6
  "scripts": {
@@ -211,13 +211,10 @@ export default class TestView extends Vue {
211
211
 
212
212
 
213
213
  EMacro.File.selectFile().then((files) => {
214
-
215
214
  EMacro.File.uploadFiles(files, file => {
216
215
 
217
-
218
216
  file.savePath = "C:\\MES\\EMacroAndroidServer_Windows_v1.1\\EMacroAssets\\file\\" + file.fileName
219
217
 
220
-
221
218
  let postData = { 'id': 0, 'message': '', 'action': 'uploadSOPFile', 'user': {}, 'data': file }
222
219
  axios.post("http://121.228.113.68:8019/H5/prod/Command/requestVueData", postData, {
223
220
  timeout: 6000,
package/tsconfig.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "declarationMap": false, // 是否生成声明文件map文件(便于调试)
12
12
  "moduleResolution": "node",
13
13
  "module": "esnext",
14
- "target": "es6", // 转化成的目标语言
14
+ "target": "esnext", // 转化成的目标语言
15
15
  "baseUrl": "./",
16
16
  "strict": true,
17
17
  "jsx": "preserve",