askbot-dragon 1.5.85 → 1.5.86

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,13 +1,14 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "1.5.85",
3
+ "version": "1.5.86",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
7
7
  "lint": "vue-cli-service lint"
8
8
  },
9
9
  "dependencies": {
10
- "ali-oss": "^6.2.1",
10
+ },
11
+ "devDependencies": {
11
12
  "audio-loader": "^1.0.3",
12
13
  "core-js": "^3.6.5",
13
14
  "install": "^0.13.0",
@@ -20,9 +21,7 @@
20
21
  "vue": "^2.6.11",
21
22
  "vue-resource": "^1.5.1",
22
23
  "vue-video-player": "^5.0.2",
23
- "weixin-js-sdk": "^1.6.0"
24
- },
25
- "devDependencies": {
24
+ "weixin-js-sdk": "^1.6.0",
26
25
  "@vue/cli-plugin-babel": "~4.5.0",
27
26
  "@vue/cli-plugin-eslint": "~4.5.0",
28
27
  "@vue/cli-service": "~4.5.0",
package/public/index.html CHANGED
@@ -29,6 +29,9 @@
29
29
  <link rel="stylesheet" href="//at.alicdn.com/t/c/font_2913049_qtm7orae3l.css"/>
30
30
  <script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
31
31
 
32
+ <!-- aliyun-oss -->
33
+ <script src="https://static.guoranbot.com/cdn-common/alyun-oss/aliyun-oss-sdk-6.17.1.min.js"></script>
34
+
32
35
  <!-- vue -->
33
36
  <!-- <script src="https://static.guoranbot.com/vue/2.6.11/dist/vue.min.js"></script>
34
37
  <script src="https://static.guoranbot.com/vue-router/3.3.2/dist/vue-router.min.js"></script> -->
@@ -1,6 +1,8 @@
1
1
 
2
2
 
3
- const OSS = require('ali-oss');
3
+ // const OSS = require('ali-oss');
4
+
5
+ const OSS = window.OSS
4
6
 
5
7
  const ossConfig={
6
8
  region: "oss-cn-zhangjiakou",
@@ -21,10 +21,10 @@
21
21
  :formList="formList2"
22
22
  @submitClick="submitClick"
23
23
  ></form-template> -->
24
- <!-- <form-template
24
+ <form-template
25
25
  :formList="formList"
26
26
  @submitClick="submitClick"
27
- ></form-template> -->
27
+ ></form-template>
28
28
  <!-- <form-template
29
29
  :formList="formList3"
30
30
  @submitClick="submitClick"
@@ -290,10 +290,10 @@ export default {
290
290
  -webkit-animation: rotate 1.5s linear infinite;
291
291
  animation: rotate 1.5s linear infinite;
292
292
  }
293
- .wrap {
294
- height: 1px;
295
- width: 100%;
296
- }
293
+ // .wrap {
294
+ // height: 1px;
295
+ // width: 100%;
296
+ // }
297
297
  }
298
298
  .editor_content:focus {
299
299
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1) inset, 0, 0;
@@ -9,7 +9,7 @@
9
9
  <script>
10
10
  import {uid} from 'uid';
11
11
 
12
- const OSS = require('ali-oss');
12
+ // const OSS = require('ali-oss');
13
13
 
14
14
  Date.prototype.Format = function (fmt) {
15
15
  const o = {
@@ -1,4 +1,5 @@
1
- const OSS = require('ali-oss');
1
+ // const OSS = require('ali-oss');
2
+ const OSS = window.OSS
2
3
 
3
4
  let IDX = 256, HEX = [], SIZE = 256, BUFFER;
4
5
  while (IDX--) HEX[IDX] = (IDX + 256).toString(16).substring(1);