askbot-dragon 1.0.7 → 1.0.8
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
|
@@ -1956,7 +1956,9 @@ export default {
|
|
|
1956
1956
|
this.$message.error(errorText);
|
|
1957
1957
|
return false
|
|
1958
1958
|
} else {
|
|
1959
|
-
|
|
1959
|
+
let d = document.createElement('div')
|
|
1960
|
+
d.innerHTML = this.workOrderDestail.value
|
|
1961
|
+
if (checkDescription.required && !d.innerText && this.attachments.length == 0) {
|
|
1960
1962
|
this.$message.error('问题描述是必填的');
|
|
1961
1963
|
return false
|
|
1962
1964
|
}
|