askbot-dragon 1.0.3 → 1.0.5
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
|
@@ -1944,7 +1944,7 @@ export default {
|
|
|
1944
1944
|
errorText = '问题描述必须要有附件'
|
|
1945
1945
|
}
|
|
1946
1946
|
if (!textFlag && (!imageFlag || !attachmentFlag)) {
|
|
1947
|
-
errorText = '问题描述必须要有文字和' + !imageFlag ? '图片' : '附件'
|
|
1947
|
+
errorText = '问题描述必须要有文字和' + (!imageFlag ? '图片' : '附件')
|
|
1948
1948
|
}
|
|
1949
1949
|
if (!imageFlag && !attachmentFlag) {
|
|
1950
1950
|
errorText = '问题描述必须要有图片和附件'
|
|
@@ -1956,7 +1956,7 @@ export default {
|
|
|
1956
1956
|
this.$message.error(errorText);
|
|
1957
1957
|
return false
|
|
1958
1958
|
} else {
|
|
1959
|
-
if (checkDescription.required && !this.workOrderDestail.value) {
|
|
1959
|
+
if (checkDescription.required && !this.workOrderDestail.value && this.attachments.length == 0) {
|
|
1960
1960
|
this.$message.error('问题描述是必填的');
|
|
1961
1961
|
return false
|
|
1962
1962
|
}
|
|
@@ -2799,6 +2799,13 @@ export default {
|
|
|
2799
2799
|
let ht = '<span class="ask-component-placeholder-container">' + uploadList[index].innerHTML + '</span>'
|
|
2800
2800
|
newVal = newVal.replace(ht, '')
|
|
2801
2801
|
this.uploadImgQueue = false
|
|
2802
|
+
let time = setTimeout(() => {
|
|
2803
|
+
this.currentEditor.model.change(writer => {
|
|
2804
|
+
writer.setSelection(writer.createPositionAt(this.currentEditor.model.document.getRoot(), 'end'));
|
|
2805
|
+
})
|
|
2806
|
+
this.currentEditor.editing.view.focus();
|
|
2807
|
+
clearTimeout(time)
|
|
2808
|
+
}, 500)
|
|
2802
2809
|
}
|
|
2803
2810
|
}
|
|
2804
2811
|
if (uploadList[index].childNodes[0].getAttribute('type') == 'MyFile' || uploadList[index].childNodes[0].getAttribute('type') == 'FileUpload') {
|