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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -1956,7 +1956,9 @@ export default {
1956
1956
  this.$message.error(errorText);
1957
1957
  return false
1958
1958
  } else {
1959
- if (checkDescription.required && !this.workOrderDestail.value && this.attachments.length == 0) {
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
  }