askbot-dragon 1.6.16-beta → 1.6.17-beta
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 -1
- package/public/index.html +1 -1
- package/src/assets/js/hammer.js +13 -2
- package/src/assets/less/converSationContainer/common.less +7 -0
- package/src/components/ActionAlertIframe.vue +24 -1
- package/src/components/AiGuide.vue +4 -6
- package/src/components/AnswerDocknowledge.vue +44 -3
- package/src/components/ConversationContainer.vue +9 -9
- package/src/components/askVideo.vue +24 -1
- package/src/components/associationIntention.vue +7 -1
- package/src/components/formTemplate.vue +27 -25
- package/src/components/newPdfPosition.vue +878 -0
- package/src/components/pdfPosition.vue +197 -11
- package/src/components/previewPdf.vue +21 -8
- package/src/main.js +2 -2
- package/vue.config.js +1 -0
- package/src/components/MyEditor.vue +0 -345
|
@@ -1,345 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="my_editor">
|
|
3
|
-
<div class="editor_head" v-if="havToolbar">
|
|
4
|
-
<button class="button" @click="handleUpdate">
|
|
5
|
-
<svg
|
|
6
|
-
t="1703581982515"
|
|
7
|
-
class="icon"
|
|
8
|
-
viewBox="0 0 1024 1024"
|
|
9
|
-
version="1.1"
|
|
10
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
-
p-id="74840"
|
|
12
|
-
width="200"
|
|
13
|
-
height="200"
|
|
14
|
-
>
|
|
15
|
-
<path
|
|
16
|
-
d="M566.839921 866.857572V983.050833c0 22.522042-7.677969 33.271198-29.688146 37.877979-18.427125 4.094917-37.366115 3.583052-55.281375-2.047458-17.403396-5.63051-24.057636-15.867802-24.057636-33.271198v-410.003534c0-7.166104-1.535594-9.213563-9.213562-9.213562-80.36274 0.511865-330.152658 0-410.515399 0-19.450854 0-29.688146-7.166104-34.294927-26.105094-5.118646-19.450854-5.118646-39.925438 0.511865-58.864427 5.118646-16.891531 15.355938-23.545771 32.759333-23.545771h412.562857c7.166104 0 8.189833-1.535594 8.189833-8.189834V41.219994c0-25.081365 7.166104-34.806792 32.247469-38.901708 18.93899-3.583052 38.389844-3.583052 56.305105 4.094917 13.820344 5.63051 20.474583 15.867802 20.474583 30.711875v412.562856c0 6.65424 1.535594 8.189833 8.189833 8.189834h406.932346c23.545771 0 33.783063 7.677969 38.901709 30.711875 4.094917 18.427125 4.094917 37.366115-2.047458 55.281375-5.118646 16.379667-15.355938 23.033906-32.247469 23.033907h-410.515398c-7.166104 0-10.237292 1.023729-9.725428 9.725427 0.511865 40.437302 0.511865 249.789918 0.511865 290.22722z"
|
|
17
|
-
p-id="74841"
|
|
18
|
-
/>
|
|
19
|
-
</svg>
|
|
20
|
-
上传图片或附件
|
|
21
|
-
</button>
|
|
22
|
-
</div>
|
|
23
|
-
<div
|
|
24
|
-
class="editor_content"
|
|
25
|
-
id="my_editor_content"
|
|
26
|
-
v-html="text"
|
|
27
|
-
contenteditable
|
|
28
|
-
ref="editorContent"
|
|
29
|
-
@focus="ischecked = true"
|
|
30
|
-
@blur="blurFn"
|
|
31
|
-
@input="changeInput"
|
|
32
|
-
:data-placeholder="placeholder"
|
|
33
|
-
></div>
|
|
34
|
-
</div>
|
|
35
|
-
</template>
|
|
36
|
-
|
|
37
|
-
<script>
|
|
38
|
-
import { v4 as uuidv4 } from "uuid";
|
|
39
|
-
import { multipartUpload, ossFileUrl } from "./utils/AliyunIssUtil";
|
|
40
|
-
|
|
41
|
-
export default {
|
|
42
|
-
props: ["value", "placeholder", "havToolbar"],
|
|
43
|
-
data () {
|
|
44
|
-
return {
|
|
45
|
-
ossConfig: {
|
|
46
|
-
region: "oss-cn-zhangjiakou",
|
|
47
|
-
//云账号AccessKey有所有API访问权限,建议遵循阿里云安全最佳实践,创建并使用STS方式来进行API访问
|
|
48
|
-
accessKeyId: "LTAI4G3QtdEdwkEbihBngAsK",
|
|
49
|
-
accessKeySecret: "OwgdVfc5PeCkIgqIdug660xmiSPchn",
|
|
50
|
-
// stsToken: '<Your securityToken(STS)>',
|
|
51
|
-
bucket: "guoranopen-zjk",
|
|
52
|
-
},
|
|
53
|
-
ischecked: false,
|
|
54
|
-
text: ''
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
watch: {
|
|
58
|
-
value () {
|
|
59
|
-
// 解决光标跳动BUG
|
|
60
|
-
if (!this.ischecked) {
|
|
61
|
-
this.text = this.value
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
methods: {
|
|
66
|
-
blurFn (e) {
|
|
67
|
-
this.ischecked = false
|
|
68
|
-
this.text = this.value
|
|
69
|
-
e.view.blur()
|
|
70
|
-
},
|
|
71
|
-
changeInput (e) {
|
|
72
|
-
this.$emit("input", e.target.innerHTML)
|
|
73
|
-
},
|
|
74
|
-
handleUpdate () {
|
|
75
|
-
let inputObj = document.createElement('input')
|
|
76
|
-
inputObj.setAttribute('id', '_ef');
|
|
77
|
-
inputObj.setAttribute('type', 'file');
|
|
78
|
-
inputObj.setAttribute('accept', '*')
|
|
79
|
-
inputObj.setAttribute('multiple', true)
|
|
80
|
-
inputObj.setAttribute("style", 'visibility:hidden');
|
|
81
|
-
document.body.appendChild(inputObj);
|
|
82
|
-
inputObj.click();
|
|
83
|
-
inputObj.onchange = () => {
|
|
84
|
-
// 循环上传文件
|
|
85
|
-
let files = inputObj.files;
|
|
86
|
-
for (let index = 0; index < files.length; index++) {
|
|
87
|
-
const file = files[index];
|
|
88
|
-
let uid = uuidv4()
|
|
89
|
-
// let command = this.editor.commands.get("insertAskComponent");
|
|
90
|
-
// const listeners = this.editor.config.get('askPluginListener');
|
|
91
|
-
// let beforeButtonInsert = findListener(listeners, "UPLOAD");
|
|
92
|
-
if (file.type.includes('image')) {
|
|
93
|
-
// if (this.editor.uploadImg) {
|
|
94
|
-
// this.editor.uploadImg.push(uid)
|
|
95
|
-
// } else {
|
|
96
|
-
// this.editor.uploadImg = []
|
|
97
|
-
// this.editor.uploadImg.push(uid)
|
|
98
|
-
// }
|
|
99
|
-
this.imgUploadCallback(file, uid, index)
|
|
100
|
-
} else {
|
|
101
|
-
this.fileUploadCallback(file, uid)
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
appenNode (type, uid, value) {
|
|
107
|
-
let node = document.createElement(type)
|
|
108
|
-
node.setAttribute("uid", uid)
|
|
109
|
-
if (type == 'img') {
|
|
110
|
-
node.setAttribute("src", value)
|
|
111
|
-
node.setAttribute("class", 'image')
|
|
112
|
-
setTimeout(() => {
|
|
113
|
-
this.appenNode('div', '', '')
|
|
114
|
-
})
|
|
115
|
-
}
|
|
116
|
-
if (type == 'div' && uid) {
|
|
117
|
-
node.innerText = value
|
|
118
|
-
node.setAttribute("class", 'loading')
|
|
119
|
-
setTimeout(() => {
|
|
120
|
-
this.appenNode('div', '', '')
|
|
121
|
-
})
|
|
122
|
-
}
|
|
123
|
-
if (type == 'div' && !uid) {
|
|
124
|
-
node.setAttribute("class", 'wrap')
|
|
125
|
-
}
|
|
126
|
-
this.$refs.editorContent.appendChild(node)
|
|
127
|
-
},
|
|
128
|
-
deleteNode (uid) {
|
|
129
|
-
console.log(uid);
|
|
130
|
-
try {
|
|
131
|
-
let node = document.querySelector("[uid=" + uid + ']')
|
|
132
|
-
if (node) {
|
|
133
|
-
this.$refs.editorContent.removeChild(node)
|
|
134
|
-
}
|
|
135
|
-
} catch {
|
|
136
|
-
console.error("未找到该节点");
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
imgUploadCallback (file, uid, index) {
|
|
140
|
-
console.log(file, uid, index);
|
|
141
|
-
this.appenNode("div", "div" + index + uid, file.name + "正在上传,请稍后...")
|
|
142
|
-
this.upload(file).then(res => {
|
|
143
|
-
this.appenNode('img', "img" + index + uid, res.default)
|
|
144
|
-
this.deleteNode("div" + index + uid)
|
|
145
|
-
})
|
|
146
|
-
},
|
|
147
|
-
upload (file) {
|
|
148
|
-
return new Promise((resolve) => {
|
|
149
|
-
this.uploadFile(file, resolve)
|
|
150
|
-
})
|
|
151
|
-
},
|
|
152
|
-
uploadFile (file, resolve) {
|
|
153
|
-
let imgInfo = {
|
|
154
|
-
url: '',
|
|
155
|
-
}
|
|
156
|
-
let res = multipartUpload(
|
|
157
|
-
this.ossConfig,
|
|
158
|
-
file,
|
|
159
|
-
null,
|
|
160
|
-
imgInfo
|
|
161
|
-
);
|
|
162
|
-
res.then(resp => {
|
|
163
|
-
imgInfo.url = ossFileUrl(this.ossConfig, resp.name)
|
|
164
|
-
resolve({
|
|
165
|
-
name: resp.name,
|
|
166
|
-
default: imgInfo.url
|
|
167
|
-
})
|
|
168
|
-
})
|
|
169
|
-
},
|
|
170
|
-
fileUploadCallback (file, uid) {
|
|
171
|
-
this.$emit("fileUploadCallback", {
|
|
172
|
-
param: {
|
|
173
|
-
uid: uid,
|
|
174
|
-
type: 'pending',
|
|
175
|
-
name: file.name
|
|
176
|
-
}
|
|
177
|
-
})
|
|
178
|
-
this.upload(file).then(res => {
|
|
179
|
-
this.$emit("fileUploadCallback", {
|
|
180
|
-
param: {
|
|
181
|
-
uid: uid,
|
|
182
|
-
name: file.name,
|
|
183
|
-
type: 'success',
|
|
184
|
-
url: res.default
|
|
185
|
-
}
|
|
186
|
-
})
|
|
187
|
-
})
|
|
188
|
-
},
|
|
189
|
-
|
|
190
|
-
},
|
|
191
|
-
mounted () {
|
|
192
|
-
this.$nextTick(() => {
|
|
193
|
-
let myEditorContent = this.$refs.editorContent
|
|
194
|
-
console.log(myEditorContent, 'myEditorContent');
|
|
195
|
-
myEditorContent.addEventListener("paste", (e) => {
|
|
196
|
-
let { files } = e.clipboardData
|
|
197
|
-
console.log(files, e.clipboardData, 'filesfilesfilesfiles');
|
|
198
|
-
if (files.length > 0) {
|
|
199
|
-
for (let index = 0; index < files.length; index++) {
|
|
200
|
-
let uid = uuidv4()
|
|
201
|
-
if (files[index].type.indexOf('image') != -1) {
|
|
202
|
-
this.imgUploadCallback(files[index], uid, index)
|
|
203
|
-
e.preventDefault();
|
|
204
|
-
} else {
|
|
205
|
-
this.fileUploadCallback(files[index], uid)
|
|
206
|
-
e.preventDefault();
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
})
|
|
211
|
-
myEditorContent.addEventListener("dragenter", function () {
|
|
212
|
-
});
|
|
213
|
-
myEditorContent.addEventListener("dragover", function (e) {
|
|
214
|
-
e.preventDefault();
|
|
215
|
-
});
|
|
216
|
-
myEditorContent.addEventListener("drop", (e) => {
|
|
217
|
-
e.preventDefault();
|
|
218
|
-
let files = e.dataTransfer.files; // 这个就相当于文件上传组件
|
|
219
|
-
if (files.length > 0) {
|
|
220
|
-
for (let index = 0; index < files.length; index++) {
|
|
221
|
-
let uid = uuidv4()
|
|
222
|
-
if (files[index].type.indexOf('image') != -1) {
|
|
223
|
-
this.imgUploadCallback(files[index], uid, index)
|
|
224
|
-
e.preventDefault();
|
|
225
|
-
} else {
|
|
226
|
-
this.fileUploadCallback(files[index], uid)
|
|
227
|
-
e.preventDefault();
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
}, false);
|
|
232
|
-
})
|
|
233
|
-
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
</script>
|
|
237
|
-
|
|
238
|
-
<style lang="less" scoped>
|
|
239
|
-
.my_editor {
|
|
240
|
-
width: 100%;
|
|
241
|
-
border: 1px solid #e0e6f7;
|
|
242
|
-
border-radius: 9px !important;
|
|
243
|
-
background: #ffffff;
|
|
244
|
-
/deep/.editor_content {
|
|
245
|
-
border-bottom-left-radius: 9px !important;
|
|
246
|
-
border-bottom-right-radius: 9px !important;
|
|
247
|
-
padding: 10px;
|
|
248
|
-
box-sizing: border-box;
|
|
249
|
-
min-height: 150px !important;
|
|
250
|
-
font-size: 14px !important;
|
|
251
|
-
outline: none;
|
|
252
|
-
div {
|
|
253
|
-
margin-bottom: 8px;
|
|
254
|
-
white-space: pre-wrap;
|
|
255
|
-
}
|
|
256
|
-
.image {
|
|
257
|
-
height: 140px;
|
|
258
|
-
object-fit: contain;
|
|
259
|
-
}
|
|
260
|
-
// .image{
|
|
261
|
-
// outline: 3px solid #366aff;
|
|
262
|
-
// }
|
|
263
|
-
.loading {
|
|
264
|
-
background: rgba(0, 89, 255, 0.2);
|
|
265
|
-
display: inline-block;
|
|
266
|
-
padding: 2px 5px;
|
|
267
|
-
border-radius: 3px;
|
|
268
|
-
padding-left: 20px;
|
|
269
|
-
position: relative;
|
|
270
|
-
font-size: 12px;
|
|
271
|
-
-webkit-user-modify: read-only;
|
|
272
|
-
-moz-user-modify: read-only;
|
|
273
|
-
}
|
|
274
|
-
.loading::after {
|
|
275
|
-
content: '';
|
|
276
|
-
background-image: url(../assets/image/building.png);
|
|
277
|
-
background-size: 100%;
|
|
278
|
-
width: 15px;
|
|
279
|
-
height: 15px;
|
|
280
|
-
position: absolute;
|
|
281
|
-
top: 3px;
|
|
282
|
-
left: 2px;
|
|
283
|
-
color: #366aff;
|
|
284
|
-
-webkit-animation: rotate 1.5s linear infinite;
|
|
285
|
-
animation: rotate 1.5s linear infinite;
|
|
286
|
-
}
|
|
287
|
-
.wrap {
|
|
288
|
-
height: 1px;
|
|
289
|
-
width: 100%;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
.editor_content:focus {
|
|
293
|
-
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1) inset, 0, 0;
|
|
294
|
-
}
|
|
295
|
-
.editor_content:empty::before {
|
|
296
|
-
content: attr(data-placeholder);
|
|
297
|
-
color: #b3b3b3;
|
|
298
|
-
font-size: 14px;
|
|
299
|
-
}
|
|
300
|
-
.editor_head {
|
|
301
|
-
display: flex;
|
|
302
|
-
align-items: center;
|
|
303
|
-
width: 100%;
|
|
304
|
-
height: 38px;
|
|
305
|
-
padding: 0 10px;
|
|
306
|
-
padding-left: 3px;
|
|
307
|
-
box-sizing: border-box;
|
|
308
|
-
color: #366aff;
|
|
309
|
-
font-size: 14px;
|
|
310
|
-
border-bottom: 1px solid #e0e6f7;
|
|
311
|
-
|
|
312
|
-
.button {
|
|
313
|
-
padding: 5px 8px;
|
|
314
|
-
background: #ffffff;
|
|
315
|
-
border: none;
|
|
316
|
-
border-radius: 2px;
|
|
317
|
-
svg {
|
|
318
|
-
fill: #366aff;
|
|
319
|
-
width: 12px !important;
|
|
320
|
-
height: 12px !important;
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
.button:focus {
|
|
324
|
-
// box-shadow: var(--ck-focus-outer-shadow),0 0;
|
|
325
|
-
outline: none;
|
|
326
|
-
background: #f0f0f0;
|
|
327
|
-
transition: box-shadow 0.2s ease-in-out, border 0.2s ease-in-ou;
|
|
328
|
-
}
|
|
329
|
-
.button:active {
|
|
330
|
-
border: 1px solid #366aff;
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
@keyframes rotate {
|
|
335
|
-
0% {
|
|
336
|
-
-webkit-transform: rotate(0deg);
|
|
337
|
-
transform: rotate(0deg);
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
100% {
|
|
341
|
-
-webkit-transform: rotate(360deg);
|
|
342
|
-
transform: rotate(360deg);
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
</style>
|