|
@@ -620,6 +620,14 @@ export default {
|
|
|
//const hide = this.$message.loading('验证码发送中..', 0)
|
|
|
//setTimeout(hide, 5000);
|
|
|
//return false;
|
|
|
+ if(this.knowledgeForm.categoryId.length==0){
|
|
|
+ this.$message.error('请选择分类');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if(this.knowledgeForm.name==''){
|
|
|
+ this.$message.error('请输入专题标题');
|
|
|
+ return false
|
|
|
+ }
|
|
|
if(this.knowledgeForm.cover==''&&this.isAdd){
|
|
|
this.$message.error('请上传缩略图');
|
|
|
return false
|
|
@@ -782,14 +790,18 @@ export default {
|
|
|
// let innerWidth = window.innerWidth
|
|
|
|
|
|
// this.widthVar = innerWidth/30
|
|
|
-
|
|
|
- setInterval(() => {
|
|
|
+ document.onclick=function(element){
|
|
|
+ if(element.target.className.indexOf('ant-cascader-menu-item')>-1){
|
|
|
+ document.querySelector('.ant-cascader-menus').scrollLeft = 20480
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /*setInterval(() => {
|
|
|
document.querySelectorAll('.ant-cascader-menu-item').forEach(el => {
|
|
|
el.onclick = function() {
|
|
|
document.querySelector('.ant-cascader-menus').scrollLeft = 2048
|
|
|
}
|
|
|
})
|
|
|
- }, 1000)
|
|
|
+ }, 1000)*/
|
|
|
},
|
|
|
//增加知识
|
|
|
handleOkAdd(){
|
|
@@ -854,6 +866,8 @@ export default {
|
|
|
this.getApprovals()
|
|
|
}
|
|
|
if(this.tapAction==2){
|
|
|
+ this.yelpDataList=[]
|
|
|
+ this.yelpPageNum=1
|
|
|
this.getYelp()
|
|
|
}
|
|
|
}
|