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 +4 -5
- package/public/index.html +3 -0
- package/src/assets/js/AliyunlssUtil.js +3 -1
- package/src/components/ConversationContainer.vue +2 -2
- package/src/components/MyEditor.vue +4 -4
- package/src/components/file/AliyunOssComponents.vue +1 -1
- package/src/components/utils/AliyunIssUtil.js +2 -1
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "askbot-dragon",
|
|
3
|
-
"version": "1.5.
|
|
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
|
-
|
|
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> -->
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
:formList="formList2"
|
|
22
22
|
@submitClick="submitClick"
|
|
23
23
|
></form-template> -->
|
|
24
|
-
|
|
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
|
-
|
|
295
|
-
|
|
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;
|