Browse Source

通知管理页面,代码格式调整

master
zhangyongzhangyong 6 years ago
parent
commit
ed0b7336de
  1. 4
      src/views/modules/news/notice-add-or-update.vue

4
src/views/modules/news/notice-add-or-update.vue

@ -207,11 +207,11 @@ export default {
},
//
dataFormSubmitHandle: debounce(function () {
if(this.dataForm.noticeContent != null && this.dataForm.noticeContent != undefined ){
if (this.dataForm.noticeContent != null && this.dataForm.noticeContent !== undefined) {
if ((this.dataForm.noticeContent).length > 10000) {
return this.$message.error('您输入的的内容已超过字数不能提交')
}
}
}
this.$refs['dataForm'].validate((valid) => {
if (!valid) {
return false

Loading…
Cancel
Save