askbot-dragon 1.4.82 → 1.4.83
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
|
@@ -121,19 +121,33 @@ export default {
|
|
|
121
121
|
mp4: "video",
|
|
122
122
|
MP4: "video",
|
|
123
123
|
xlsx: "excel1",
|
|
124
|
+
SLSX: "excel1",
|
|
124
125
|
xls: "excel1",
|
|
126
|
+
XLS: "excel1",
|
|
125
127
|
jpg: "image1",
|
|
128
|
+
JPG: "image1",
|
|
126
129
|
jpeg: "image1",
|
|
130
|
+
JPEG: "image1",
|
|
127
131
|
png: "image1",
|
|
132
|
+
PNG: "image1",
|
|
128
133
|
webp: "image1",
|
|
134
|
+
WEBP: "image1",
|
|
129
135
|
gif: "image1",
|
|
136
|
+
GIF: "image1",
|
|
130
137
|
svg: "image1",
|
|
138
|
+
SVG: "image1",
|
|
131
139
|
bmp: "image1",
|
|
140
|
+
BMP: "image1",
|
|
132
141
|
avi: "video",
|
|
142
|
+
AVI: "video",
|
|
133
143
|
mov: "video",
|
|
144
|
+
MOV: "video",
|
|
134
145
|
rmvb: "video",
|
|
146
|
+
RMVB: "video",
|
|
135
147
|
wav: "audio",
|
|
148
|
+
WAV: "audio",
|
|
136
149
|
mp3: "audio",
|
|
150
|
+
MP3: "audio",
|
|
137
151
|
yqhtml: "yqhtml",
|
|
138
152
|
feishuhtml:"feishuhtml"
|
|
139
153
|
}
|
|
@@ -252,7 +266,7 @@ export default {
|
|
|
252
266
|
}
|
|
253
267
|
},
|
|
254
268
|
srcContentTypeIMG(item) {
|
|
255
|
-
let url = item.url
|
|
269
|
+
let url = item.url || '';
|
|
256
270
|
const type = url.substring(url.lastIndexOf('.'));
|
|
257
271
|
if(type === '.jpg' || type === '.jpeg' || type === '.png' || type === '.gif') {
|
|
258
272
|
this.getSrc(item)
|
|
@@ -96,7 +96,7 @@ import TicketMessage from "@/components/message/TicketMessage";
|
|
|
96
96
|
import TextMessage from "@/components/message/TextMessage";
|
|
97
97
|
import FeedBack from "@/components/feedBack";*/
|
|
98
98
|
// iframe 弹窗组件测试
|
|
99
|
-
import ActionAlert from "@/components/
|
|
99
|
+
import ActionAlert from "@/components/ActionAlertIframe";
|
|
100
100
|
// 智能引导组件
|
|
101
101
|
// import AiGuide from "@/components/AiGuide";
|
|
102
102
|
import AnswerVoice from "@/components/AnswerVoice";
|