askbot-dragon 1.4.85 → 1.4.87
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": "askbot-dragon",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.87",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"serve": "vue-cli-service serve",
|
|
6
6
|
"build": "vue-cli-service build",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@ckeditor/ckeditor5-ui": "^10.1.0",
|
|
11
|
-
"@ckeditor/ckeditor5-
|
|
11
|
+
"@ckeditor/ckeditor5-vue": "^1.0.3",
|
|
12
12
|
"ali-oss": "^6.2.1",
|
|
13
13
|
"audio-loader": "^1.0.3",
|
|
14
14
|
"ckeditor": "^4.12.1",
|
package/public/index.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<!-- guoran图标 -->
|
|
13
13
|
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_2913049_qtm7orae3l.css"/>
|
|
14
14
|
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
|
|
15
|
-
<script src="https://
|
|
15
|
+
<script src="https://static.guoranbot.com/ckeditor5-build-classic/0.3.7/build/ckeditor.js"></script>
|
|
16
16
|
|
|
17
17
|
<!-- vue -->
|
|
18
18
|
<!-- <script src="https://static.guoranbot.com/vue/2.6.11/dist/vue.min.js"></script>
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
// 滚动条样式
|
|
29
29
|
::-webkit-scrollbar {
|
|
30
30
|
width: 6px;
|
|
31
|
-
height:
|
|
31
|
+
height: 10px;
|
|
32
32
|
background-color:@system_bordercolor_4;
|
|
33
33
|
}
|
|
34
34
|
::-webkit-scrollbar-thumb {
|
|
35
35
|
border-radius: 6px;
|
|
36
|
-
background-color: #bfceec;
|
|
36
|
+
background-color: #bfceec !important;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
// 弹窗body
|
|
@@ -160,6 +160,7 @@ export default {
|
|
|
160
160
|
watch:{
|
|
161
161
|
msg:{
|
|
162
162
|
handler(n){
|
|
163
|
+
console.log(n,'answerDocknowledge');
|
|
163
164
|
n.content.list.forEach(element => {
|
|
164
165
|
console.log(this.imageObj[element.format],1111);
|
|
165
166
|
element.src = 'https://static.guoranbot.com/cdn-office-website/askbot_doc/' + this.imageObj[element.format] + '.png';
|
package/src/main.js
CHANGED
|
@@ -10,7 +10,7 @@ import 'video.js/dist/video-js.css'
|
|
|
10
10
|
import Vant from 'vant';
|
|
11
11
|
import 'vant/lib/index.css';
|
|
12
12
|
|
|
13
|
-
import CKEditor from '@ckeditor/ckeditor5-
|
|
13
|
+
import CKEditor from '@ckeditor/ckeditor5-vue';
|
|
14
14
|
Vue.use(CKEditor);
|
|
15
15
|
|
|
16
16
|
/*import VConsole from 'vconsole'
|