Skip to content

Console Output

Skipping 103 KB.. Full Log
  2059 |       let docId = formData.id;
10:08:27   2060 |       // 这里多加上 上传附件
10:08:27 > 2061 |       debugger
10:08:27        |       ^
10:08:27   2062 |       allData.fileList = this.fileList
10:08:27   2063 |       let document = allData;
10:08:27   2064 |
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_new_flowpanel.vue:2180:9:
10:08:27   2178 |       );
10:08:27   2179 |       } catch (error) {
10:08:27 > 2180 |         console.log(error);
10:08:27        |         ^
10:08:27   2181 |       }
10:08:27   2182 |      
10:08:27   2183 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_new_flowpanel.vue:2187:7:
10:08:27   2185 |     //隐藏小意见框
10:08:27   2186 |     hiddenSuggest() {
10:08:27 > 2187 |       console.log("隐藏小意见框");
10:08:27        |       ^
10:08:27   2188 |       this.isOrSuggest = !this.isOrSuggest;
10:08:27   2189 |     },
10:08:27   2190 |
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_new_flowpanel.vue:2281:9:
10:08:27   2279 |           viewId: "",
10:08:27   2280 |         };
10:08:27 > 2281 |         console.log(document)
10:08:27        |         ^
10:08:27   2282 |         API.getFlowPanel(appId, docId, document, {
10:08:27   2283 |           onSucess: (response) => {
10:08:27   2284 |             let nodesArr = response.data.data.nextNodes;
10:08:27 
10:08:27 
10:08:27 22 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/form_processHosting_flowpanel.vue:76:7:
10:08:27   74 |       // }else if(this.act.type == 58) { //协办
10:08:27   75 |       // }
10:08:27 > 76 |       console.log("选择合并------>");
10:08:27      |       ^
10:08:27   77 |       this.nodesList.forEach(item => {
10:08:27   78 |         for(let i=0; i<this.newHostOrCohostList.length; i++) {
10:08:27   79 |           if(item.id == this.newHostOrCohostList[i].id) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_processHosting_flowpanel.vue:109:9:
10:08:27   107 |       });
10:08:27   108 |       if(this.act.type == 57) { //主办
10:08:27 > 109 |         console.log("主办-->")
10:08:27       |         ^
10:08:27   110 |         this.$api.processHosting(this.openParams.appId, this.openParams._select, array, {
10:08:27   111 |           onSucess: response => {
10:08:27   112 |             if(response.data.errcode == 0) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_processHosting_flowpanel.vue:124:9:
10:08:27   122 |         })
10:08:27   123 |       }else if(this.act.type == 58) { //协办
10:08:27 > 124 |         console.log("协办-->");
10:08:27       |         ^
10:08:27   125 |         this.$api.processCoHosting(this.openParams.appId, this.openParams._select, array, {
10:08:27   126 |           onSucess: response => {
10:08:27   127 |             if(response.data.errcode == 0) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_processHosting_flowpanel.vue:144:9:
10:08:27   142 |     listUp(index) {
10:08:27   143 |       if(index == 0) {
10:08:27 > 144 |         console.log("最顶部-->");
10:08:27       |         ^
10:08:27   145 |       }else {
10:08:27   146 |         let arr = this.nodesList;
10:08:27   147 |         arr[index] = arr.splice(index-1, 1, arr[index])[0];
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_processHosting_flowpanel.vue:156:9:
10:08:27   154 |     listDown(index) {
10:08:27   155 |       if(index == this.nodesList.length-1) {
10:08:27 > 156 |         console.log("最底部-->")
10:08:27       |         ^
10:08:27   157 |       }else {
10:08:27   158 |         let arr = this.nodesList;
10:08:27   159 |         arr[index] = arr.splice(index+1, 1, arr[index])[0];
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_processHosting_flowpanel.vue:167:9:
10:08:27   165 |       if(this.act.type == 57) {
10:08:27   166 |         this.nodesList = this.approvers[0].nodes[0].auditors;
10:08:27 > 167 |         console.log("加签主办-->",this.nodesList);
10:08:27       |         ^
10:08:27   168 |       }else if (this.act.type == 58) {
10:08:27   169 |         this.nodesList = this.approvers[0].nodes[0].coAuditors;
10:08:27   170 |         console.log("加签协办-->",this.nodesList);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_processHosting_flowpanel.vue:170:9:
10:08:27   168 |       }else if (this.act.type == 58) {
10:08:27   169 |         this.nodesList = this.approvers[0].nodes[0].coAuditors;
10:08:27 > 170 |         console.log("加签协办-->",this.nodesList);
10:08:27       |         ^
10:08:27   171 |       }
10:08:27   172 |     },
10:08:27   173 |     //获取返回的数据
10:08:27 
10:08:27 
10:08:27 7 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:51:7:
10:08:27   49 |   methods: {  
10:08:27   50 |     getAllFields(){
10:08:27 > 51 |       console.log(this.$parent)      
10:08:27      |       ^
10:08:27   52 |       if(this.$store.state.searchFlag==0){
10:08:27   53 |         return this.formdata.fields;
10:08:27   54 |       }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:57:7:
10:08:27   55 |     },
10:08:27   56 |     findField(id) {
10:08:27 > 57 |       console.log(this.appId+'--测试-'+this.viewId)
10:08:27      |       ^
10:08:27   58 |      
10:08:27   59 |       let data = this.formdata  
10:08:27   60 |       console.log('变量:'+this.$store.state.searchFlag)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:60:7:
10:08:27   58 |      
10:08:27   59 |       let data = this.formdata  
10:08:27 > 60 |       console.log('变量:'+this.$store.state.searchFlag)
10:08:27      |       ^
10:08:27   61 |       for (let i = 0; i < data.fields.length; i++) {
10:08:27   62 |         let fld = data.fields[i];
10:08:27   63 |         console.log(fld.value)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:63:9:
10:08:27   61 |       for (let i = 0; i < data.fields.length; i++) {
10:08:27   62 |         let fld = data.fields[i];
10:08:27 > 63 |         console.log(fld.value)
10:08:27      |         ^
10:08:27   64 |         // data.fields[i].value='1' 
10:08:27   65 |         console.log(this.$store.state.searchDataStore)   
10:08:27   66 |         if(this.$store.state.searchDataStore.length){
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:65:9:
10:08:27   63 |         console.log(fld.value)
10:08:27   64 |         // data.fields[i].value='1' 
10:08:27 > 65 |         console.log(this.$store.state.searchDataStore)   
10:08:27      |         ^
10:08:27   66 |         if(this.$store.state.searchDataStore.length){
10:08:27   67 |           if(this.$store.state.searchFlag==2&&i<=data.fields.length){   
10:08:27   68 |             console.log(66)     
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:68:13:
10:08:27   66 |         if(this.$store.state.searchDataStore.length){
10:08:27   67 |           if(this.$store.state.searchFlag==2&&i<=data.fields.length){   
10:08:27 > 68 |             console.log(66)     
10:08:27      |             ^
10:08:27   69 |             this.$store.state.searchDataStore.forEach(item=>{
10:08:27   70 |                if(item.appId==this.appId&&item.viewId==this.viewId){                
10:08:27   71 |                   Object.keys(item).forEach((key)=>{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:73:25:
10:08:27   71 |                   Object.keys(item).forEach((key)=>{
10:08:27   72 |                       if(key==fld.name){
10:08:27 > 73 |                         console.log('测试数据'+item[key])  
10:08:27      |                         ^
10:08:27   74 |                           this.$set(data.fields[i],'value',item[key])
10:08:27   75 |                           if(i==data.fields.length-1){
10:08:27   76 |                             setTimeout(()=>{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:79:30:
10:08:27   77 |                              this.$store.commit('searchFlag',1)
10:08:27   78 |                              },800)
10:08:27 > 79 |                              console.log(this.$parent.$parent)
10:08:27      |                              ^
10:08:27   80 |                              this.$parent.$parent.openSearchTemplate()//打开高级查询按钮
10:08:27   81 |                           }
10:08:27   82 |                       }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_searchform.vue:89:9:
10:08:27   87 |         }   
10:08:27   88 |  
10:08:27 > 89 |         console.log(fld)
10:08:27      |         ^
10:08:27   90 |         if (id == fld.id) return fld;
10:08:27   91 |       }  
10:08:27   92 |       
10:08:27 
10:08:27 
10:08:27 9 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAdvert.vue:37:20:
10:08:27   35 |                 //        loading.close();//关闭加载
10:08:27   36 |                 //    });
10:08:27 > 37 |                    console.log("banner______________",response.data.data.data)
10:08:27      |                    ^
10:08:27   38 |                    if(response.data.data.data){
10:08:27   39 |                        let Arry=[]
10:08:27   40 |                        response.data.data.data.forEach(item=>{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAdvert.vue:49:24:
10:08:27   47 |                        })
10:08:27   48 |                        this.bannerArr=Arry
10:08:27 > 49 |                        console.log(this.bannerArr)
10:08:27      |                        ^
10:08:27   50 |                    }
10:08:27   51 |                 }
10:08:27   52 |             })
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:80:13:
10:08:27   78 |         else {
10:08:27   79 |             this.organizationLevels=organizationLevels.split(',')//obpm.config.js定义全局变量organizationLevels
10:08:27 > 80 |             console.log('organizationLevels',organizationLevels)//obpm.config.js定义全局变量organizationLevels
10:08:27      |             ^
10:08:27   81 |             if(this.organizationLevels&&this.organizationLevels.includes('Premium')){
10:08:27   82 |                 this.appLevelsList()
10:08:27   83 |             }else{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:98:13:
10:08:27    96 |                 key: ""
10:08:27    97 |             }
10:08:27 >  98 |             console.log(this.$listeners)
10:08:27       |             ^
10:08:27    99 |             this.addTab(param)
10:08:27   100 |         },
10:08:27   101 |         applistIframe() {//查询应用列表
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:109:25:
10:08:27   107 |
10:08:27   108 |                     if (response.data && response.data.errmsg == "ok") {
10:08:27 > 109 |                         console.log(response.data)
10:08:27       |                         ^
10:08:27   110 |                         if (response.data.data.data.length) {
10:08:27   111 |                             let arr = []
10:08:27   112 |                             response.data.data.data.forEach((item, index) => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:128:29:
10:08:27   126 |
10:08:27   127 |                             })
10:08:27 > 128 |                             console.log(arr)
10:08:27       |                             ^
10:08:27   129 |                             arr.sort((a, b) => { return Number(a.cateSort) - Number(b.cateSort) }) //分类排序cateSort 
10:08:27   130 |
10:08:27   131 |                             const titleMap = {}
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:189:29:
10:08:27   187 |                                 }
10:08:27   188 |                             }
10:08:27 > 189 |                             console.log(arr2)
10:08:27       |                             ^
10:08:27   190 |                             this.appcateArrList = arr2
10:08:27   191 |
10:08:27   192 |                             //前端缓存本地代码块--切换不同组织的所有应用列表
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:203:13:
10:08:27   201 |         },
10:08:27   202 |         loadAppMenu(appId, name) {//点击应用列表查询左边应用菜单 
10:08:27 > 203 |             console.log(this.$parent.$parent.$parent.$parent)
10:08:27       |             ^
10:08:27   204 |             console.log('当前appId', appId)
10:08:27   205 |             let httpsUrl = location.origin;//获取url各个环境地址--比如http://localhost:4000
10:08:27   206 |             if (appId == '__TS2n9hoVZ2MjWTPyJH9') {//警保指挥调度台应用直接跳转
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:204:13:
10:08:27   202 |         loadAppMenu(appId, name) {//点击应用列表查询左边应用菜单 
10:08:27   203 |             console.log(this.$parent.$parent.$parent.$parent)
10:08:27 > 204 |             console.log('当前appId', appId)
10:08:27       |             ^
10:08:27   205 |             let httpsUrl = location.origin;//获取url各个环境地址--比如http://localhost:4000
10:08:27   206 |             if (appId == '__TS2n9hoVZ2MjWTPyJH9') {//警保指挥调度台应用直接跳转
10:08:27   207 |                 this.$nextTick(() => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:214:17:
10:08:27   212 |             }
10:08:27   213 |             if (appId == '__Hab04s0VNDPrjFZ3Xlo') {//挂图作战直接打开项目中心首页
10:08:27 > 214 |                 console.log(this.$parent.$parent)
10:08:27       |                 ^
10:08:27   215 |                 this.$parent.$parent.$parent.$parent.navtopmenuclick(1)
10:08:27   216 |                 return
10:08:27   217 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:223:17:
10:08:27   221 |
10:08:27   222 |             if (appId == '__aNKPFCBuZfyQNzlnlZ9') { //商城pc前端入口
10:08:27 > 223 |                 console.log(this.$parent.$parent)
10:08:27       |                 ^
10:08:27   224 |                 this.$parent.$parent.$parent.$parent.navtopmenuclick(100)
10:08:27   225 |                 return
10:08:27   226 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllApp.vue:228:17:
10:08:27   226 |             }
10:08:27   227 |             if (appId == '__ZG0ZtjrEhvNbj2rlOsF') { //企业钱包前端入口
10:08:27 > 228 |                 console.log(this.$parent.$parent)
10:08:27       |                 ^
10:08:27   229 |                 this.$parent.$parent.$parent.$parent.navtopmenuclick(101)
10:08:27   230 |                 return
10:08:27   231 |             }
10:08:27 
10:08:27 
10:08:27 10 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:80:13:
10:08:27   78 |         else {
10:08:27   79 |             this.organizationLevels=organizationLevels.split(',')//obpm.config.js定义全局变量organizationLevels
10:08:27 > 80 |             console.log('organizationLevels',organizationLevels)//obpm.config.js定义全局变量organizationLevels
10:08:27      |             ^
10:08:27   81 |             if(this.organizationLevels&&this.organizationLevels.includes('Premium')){
10:08:27   82 |                 this.appLevelsList()
10:08:27   83 |             }else{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:98:13:
10:08:27    96 |                 key: ""
10:08:27    97 |             }
10:08:27 >  98 |             console.log(this.$listeners)
10:08:27       |             ^
10:08:27    99 |             this.addTab(param)
10:08:27   100 |         },
10:08:27   101 |         applistIframe() {//查询应用列表
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:109:25:
10:08:27   107 |
10:08:27   108 |                     if (response.data && response.data.errmsg == "ok") {
10:08:27 > 109 |                         console.log(response.data)
10:08:27       |                         ^
10:08:27   110 |                         if (response.data.data.data.length) {
10:08:27   111 |                             let arr = []
10:08:27   112 |                             response.data.data.data.forEach((item, index) => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:128:29:
10:08:27   126 |
10:08:27   127 |                             })
10:08:27 > 128 |                             console.log(arr)
10:08:27       |                             ^
10:08:27   129 |                             arr.sort((a, b) => { return Number(a.cateSort) - Number(b.cateSort) }) //分类排序cateSort 
10:08:27   130 |
10:08:27   131 |                             const titleMap = {}
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:189:29:
10:08:27   187 |                                 }
10:08:27   188 |                             }
10:08:27 > 189 |                             console.log(arr2)
10:08:27       |                             ^
10:08:27   190 |                             this.appcateArrList = arr2
10:08:27   191 |
10:08:27   192 |                             //前端缓存本地代码块--切换不同组织的所有应用列表
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:203:13:
10:08:27   201 |         },
10:08:27   202 |         loadAppMenu(appId, name) {//点击应用列表查询左边应用菜单 
10:08:27 > 203 |             console.log(this.$parent.$parent.$parent.$parent)
10:08:27       |             ^
10:08:27   204 |             console.log('当前appId', appId)
10:08:27   205 |             let httpsUrl = location.origin;//获取url各个环境地址--比如http://localhost:4000
10:08:27   206 |             if (appId == '__TS2n9hoVZ2MjWTPyJH9') {//警保指挥调度台应用直接跳转
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:204:13:
10:08:27   202 |         loadAppMenu(appId, name) {//点击应用列表查询左边应用菜单 
10:08:27   203 |             console.log(this.$parent.$parent.$parent.$parent)
10:08:27 > 204 |             console.log('当前appId', appId)
10:08:27       |             ^
10:08:27   205 |             let httpsUrl = location.origin;//获取url各个环境地址--比如http://localhost:4000
10:08:27   206 |             if (appId == '__TS2n9hoVZ2MjWTPyJH9') {//警保指挥调度台应用直接跳转
10:08:27   207 |                 this.$nextTick(() => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:214:17:
10:08:27   212 |             }
10:08:27   213 |             if (appId == '__Hab04s0VNDPrjFZ3Xlo') {//挂图作战直接打开项目中心首页
10:08:27 > 214 |                 console.log(this.$parent.$parent)
10:08:27       |                 ^
10:08:27   215 |                 this.$parent.$parent.$parent.$parent.navtopmenuclick(1)
10:08:27   216 |                 return
10:08:27   217 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:223:17:
10:08:27   221 |
10:08:27   222 |             if (appId == '__aNKPFCBuZfyQNzlnlZ9') { //商城pc前端入口
10:08:27 > 223 |                 console.log(this.$parent.$parent)
10:08:27       |                 ^
10:08:27   224 |                 this.$parent.$parent.$parent.$parent.navtopmenuclick(100)
10:08:27   225 |                 return
10:08:27   226 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeAllAppNew.vue:228:17:
10:08:27   226 |             }
10:08:27   227 |             if (appId == '__ZG0ZtjrEhvNbj2rlOsF') { //企业钱包前端入口
10:08:27 > 228 |                 console.log(this.$parent.$parent)
10:08:27       |                 ^
10:08:27   229 |                 this.$parent.$parent.$parent.$parent.navtopmenuclick(101)
10:08:27   230 |                 return
10:08:27   231 |             }
10:08:27 
10:08:27 
10:08:27 10 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeBoard.vue:55:9:
10:08:27   53 |     },
10:08:27   54 |     mounted() {
10:08:27 > 55 |         console.log(this)
10:08:27      |         ^
10:08:27   56 |     },
10:08:27   57 |     components:{
10:08:27   58 |         homeWelcome,
10:08:27 
10:08:27 
10:08:27 error: The "homeAdvert" component has been registered but not used (vue/no-unused-components) at src/components/homeBoard.vue:59:9:
10:08:27   57 |     components:{
10:08:27   58 |         homeWelcome,
10:08:27 > 59 |         homeAdvert,
10:08:27      |         ^
10:08:27   60 |         homeToAlert,
10:08:27   61 |         homeMyused,
10:08:27   62 |         homeAllApp,
10:08:27 
10:08:27 
10:08:27 error: The "homeMyused" component has been registered but not used (vue/no-unused-components) at src/components/homeBoard.vue:61:9:
10:08:27   59 |         homeAdvert,
10:08:27   60 |         homeToAlert,
10:08:27 > 61 |         homeMyused,
10:08:27      |         ^
10:08:27   62 |         homeAllApp,
10:08:27   63 |         homeManageCockPit,
10:08:27   64 |         homeSecCockPit,
10:08:27 
10:08:27 
10:08:27 error: The "homeSecCockPit" component has been registered but not used (vue/no-unused-components) at src/components/homeBoard.vue:64:9:
10:08:27   62 |         homeAllApp,
10:08:27   63 |         homeManageCockPit,
10:08:27 > 64 |         homeSecCockPit,
10:08:27      |         ^
10:08:27   65 |         homeCalendarBox
10:08:27   66 |     }
10:08:27   67 | }
10:08:27 
10:08:27 
10:08:27 4 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeBoardBKT.vue:181:9:
10:08:27   179 |     },
10:08:27   180 |     mounted() {
10:08:27 > 181 |         console.log(this)
10:08:27       |         ^
10:08:27   182 |     },
10:08:27   183 |     components:{
10:08:27   184 |         homeWelcomeNew,
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeBoardFree.vue:66:11:
10:08:27   64 |             key:""
10:08:27   65 |           }
10:08:27 > 66 |           console.log(this.$listeners)
10:08:27      |           ^
10:08:27   67 |           this.addTab(param)
10:08:27   68 |         },        
10:08:27   69 |         applistIframe(){//查询应用列表 
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeBoardFree.vue:76:25:
10:08:27   74 |                 onSucess: response => {                   
10:08:27   75 |                     if (response.data && response.data.errmsg == "ok") {
10:08:27 > 76 |                         console.log(response.data)
10:08:27      |                         ^
10:08:27   77 |                         if(response.data.data.data.length){
10:08:27   78 |                             let arr=[]
10:08:27   79 |                             response.data.data.data.forEach((item,index)=>{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeBoardFree.vue:95:29:
10:08:27   93 |                                   
10:08:27   94 |                             })  
10:08:27 > 95 |                             console.log(arr)
10:08:27      |                             ^
10:08:27   96 |                             arr.sort((a,b)=>{return Number(a.cateSort)-Number(b.cateSort)}) //分类排序cateSort 
10:08:27   97 |                            
10:08:27   98 |                             const titleMap = {}
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeBoardFree.vue:146:28:
10:08:27   144 |                                 } 
10:08:27   145 |                             }
10:08:27 > 146 |                            console.log(arr2)  
10:08:27       |                            ^
10:08:27   147 |                            this.appcateArrList=arr2
10:08:27   148 |                           
10:08:27   149 |                            if(this.appcateArrList[0].children[0].appid=='__d1qEDy3wYq8VF5KvUoE'){//智能人事(__xkeybkGaZa1SboC9GL1)、机构用户管理(__d1qEDy3wYq8VF5KvUoE)
10:08:27 
10:08:27 
10:08:27 4 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:325:12:
10:08:27   323 |             this.activeIndex=index 
10:08:27   324 |            var dayobjectStr=new Date(dayobject.day)
10:08:27 > 325 |            console.log(dayobjectStr.getFullYear())
10:08:27       |            ^
10:08:27   326 |            console.log(dayobjectStr.getMonth()+1)
10:08:27   327 |            console.log(dayobjectStr.getDate())
10:08:27   328 |            let year=dayobjectStr.getFullYear()
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:326:12:
10:08:27   324 |            var dayobjectStr=new Date(dayobject.day)
10:08:27   325 |            console.log(dayobjectStr.getFullYear())
10:08:27 > 326 |            console.log(dayobjectStr.getMonth()+1)
10:08:27       |            ^
10:08:27   327 |            console.log(dayobjectStr.getDate())
10:08:27   328 |            let year=dayobjectStr.getFullYear()
10:08:27   329 |            let month=(dayobjectStr.getMonth()+1)<10?'0'+(dayobjectStr.getMonth()+1):(dayobjectStr.getMonth()+1)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:327:12:
10:08:27   325 |            console.log(dayobjectStr.getFullYear())
10:08:27   326 |            console.log(dayobjectStr.getMonth()+1)
10:08:27 > 327 |            console.log(dayobjectStr.getDate())
10:08:27       |            ^
10:08:27   328 |            let year=dayobjectStr.getFullYear()
10:08:27   329 |            let month=(dayobjectStr.getMonth()+1)<10?'0'+(dayobjectStr.getMonth()+1):(dayobjectStr.getMonth()+1)
10:08:27   330 |            let day=dayobjectStr.getDate()<10?'0'+dayobjectStr.getDate():dayobjectStr.getDate()
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:346:13:
10:08:27   344 |             let str=this.currentYear+'-'+currentMonthStr     
10:08:27   345 |             let obj={startTime:str}
10:08:27 > 346 |             console.log(obj)
10:08:27       |             ^
10:08:27   347 |            this.$api.v3searchCalendarListApi(obj,{
10:08:27   348 |                 onSucess: response => {
10:08:27   349 |                     console.log(response.data)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:349:21:
10:08:27   347 |            this.$api.v3searchCalendarListApi(obj,{
10:08:27   348 |                 onSucess: response => {
10:08:27 > 349 |                     console.log(response.data)
10:08:27       |                     ^
10:08:27   350 |                     if(response.data.code){
10:08:27   351 |                         this.calendarAllItem=response.data.datas  
10:08:27   352 |                         console.log(this.calendarAllItem)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:352:25:
10:08:27   350 |                     if(response.data.code){
10:08:27   351 |                         this.calendarAllItem=response.data.datas  
10:08:27 > 352 |                         console.log(this.calendarAllItem)
10:08:27       |                         ^
10:08:27   353 |                         if(this.calendarAllItem.length){
10:08:27   354 |                             this.calendarAllItem.forEach(item=>{
10:08:27   355 |                                let date=new Date(item.item_starttime.time)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:362:29:
10:08:27   360 |                                this.$set(item,'itemStartTimeAllTime',dateStr) 
10:08:27   361 |                             })
10:08:27 > 362 |                             console.log(this.calendarAllItem)
10:08:27       |                             ^
10:08:27   363 |                             
10:08:27   364 |                             //同一天                           
10:08:27   365 |                             this.days.forEach(item=>{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:370:44:
10:08:27   368 |                                           this.$nextTick(()=>{
10:08:27   369 |                                            this.$set(item,'count',item.count+1)
10:08:27 > 370 |                                            console.log(its.item_state)
10:08:27       |                                            ^
10:08:27   371 |                                             if(its.item_state=='已完成'){
10:08:27   372 |                                                 this.$set(item,'itemstatecount',item.itemstatecount+1)
10:08:27   373 |                                             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:379:29:
10:08:27   377 |                             })
10:08:27   378 |
10:08:27 > 379 |                             console.log(this.days)
10:08:27       |                             ^
10:08:27   380 |                         }
10:08:27   381 |                     }
10:08:27   382 |                 }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:401:13:
10:08:27   399 |             }   
10:08:27   400 |             let obj={startTime:str}
10:08:27 > 401 |             console.log(obj)
10:08:27       |             ^
10:08:27   402 |            this.$api.v3searchCalendarListApi(obj,{
10:08:27   403 |                 onSucess: response => {
10:08:27   404 |                     console.log(response.data)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:404:21:
10:08:27   402 |            this.$api.v3searchCalendarListApi(obj,{
10:08:27   403 |                 onSucess: response => {
10:08:27 > 404 |                     console.log(response.data)
10:08:27       |                     ^
10:08:27   405 |                     if(response.data.code){
10:08:27   406 |                           this.calendarDataItems=response.data.datas  
10:08:27   407 |                           if(this.calendarDataItems.length){
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:416:26:
10:08:27   414 |                              }) 
10:08:27   415 |                           }
10:08:27 > 416 |                          console.log(this.calendarDataItems) 
10:08:27       |                          ^
10:08:27   417 |                     }
10:08:27   418 |                 }
10:08:27   419 |             })
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:422:13:
10:08:27   420 |         },
10:08:27   421 |         itemState(item){
10:08:27 > 422 |             console.log(item)            
10:08:27       |             ^
10:08:27   423 |            let obj={
10:08:27   424 |                id:item.id,
10:08:27   425 |                state:item.item_stateFlag?'已完成':'未完成'
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:429:21:
10:08:27   427 |            this.$api.v3CanlendarFinishStatusApi(obj,{
10:08:27   428 |                 onSucess: response => {
10:08:27 > 429 |                     console.log(response.data)
10:08:27       |                     ^
10:08:27   430 |                     if(response.data.code){
10:08:27   431 |                           this.searchCalendarList() 
10:08:27   432 |                           this.searchCalendarListDay() 
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:467:13:
10:08:27   465 |         },
10:08:27   466 |         submit(){
10:08:27 > 467 |             console.log(this.formList.startTime)
10:08:27       |             ^
10:08:27   468 |             console.log(typeof this.formList.startTime)
10:08:27   469 |             console.log(this.formList)
10:08:27   470 |             console.log(this.resultArr)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:468:13:
10:08:27   466 |         submit(){
10:08:27   467 |             console.log(this.formList.startTime)
10:08:27 > 468 |             console.log(typeof this.formList.startTime)
10:08:27       |             ^
10:08:27   469 |             console.log(this.formList)
10:08:27   470 |             console.log(this.resultArr)
10:08:27   471 |             if(this.formList.endTime){
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:469:13:
10:08:27   467 |             console.log(this.formList.startTime)
10:08:27   468 |             console.log(typeof this.formList.startTime)
10:08:27 > 469 |             console.log(this.formList)
10:08:27       |             ^
10:08:27   470 |             console.log(this.resultArr)
10:08:27   471 |             if(this.formList.endTime){
10:08:27   472 |                if(this.formList.endTime<this.formList.startTime) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:470:13:
10:08:27   468 |             console.log(typeof this.formList.startTime)
10:08:27   469 |             console.log(this.formList)
10:08:27 > 470 |             console.log(this.resultArr)
10:08:27       |             ^
10:08:27   471 |             if(this.formList.endTime){
10:08:27   472 |                if(this.formList.endTime<this.formList.startTime) {
10:08:27   473 |                    this.$message({type:'warning',message:'结束时间不能小于开始时间'})
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:489:22:
10:08:27   487 |                         ParticipantName=ParticipantName.substring(0,ParticipantName.length-1)                  
10:08:27   488 |                     }
10:08:27 > 489 |                      console.log(participant) 
10:08:27       |                      ^
10:08:27   490 |                     let obj={  
10:08:27   491 |                           items:{           
10:08:27   492 |                             thescheduleofTheType:this.formList.thescheduleofTheType,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:509:33:
10:08:27   507 |                         this.$api.v3CalendarOkUpdateApi(obj,{
10:08:27   508 |                             onSucess: response => {
10:08:27 > 509 |                                 console.log(response.data)
10:08:27       |                                 ^
10:08:27   510 |                             if(response.data.code==0){                            
10:08:27   511 |                                 this.dialog=false
10:08:27   512 |                                 this.$nextTick(function () {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:524:33:
10:08:27   522 |                     this.$api.v3CalendarOkApi(obj,{
10:08:27   523 |                             onSucess: response => {
10:08:27 > 524 |                                 console.log(response.data)
10:08:27       |                                 ^
10:08:27   525 |                             if(response.data.code==0){                            
10:08:27   526 |                                 this.dialog=false
10:08:27   527 |                                 this.$nextTick(function () {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:551:13:
10:08:27   549 |         }, 
10:08:27   550 |         filterMethod(val){//输入框过滤搜索
10:08:27 > 551 |             console.log(val)//输入框关键词名称
10:08:27       |             ^
10:08:27   552 |             this.params.keyword=val
10:08:27   553 |             let obj2={domainId:localStorage.getItem("domainId")||''}
10:08:27   554 |             this.$api.v3employeeTableListApi(this.params,obj2,{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:588:13:
10:08:27   586 |         }, 
10:08:27   587 |         filterMethodParty(val){//输入框过滤搜索
10:08:27 > 588 |             console.log(val)//输入框关键词名称
10:08:27       |             ^
10:08:27   589 |             this.params2.keyword=val
10:08:27   590 |             let obj2={domainId:localStorage.getItem("domainId")||''}
10:08:27   591 |             this.$api.v3employeeTableListApi(this.params2,obj2,{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:613:13:
10:08:27   611 |             this.resultArr=resultArr2
10:08:27   612 |             this.resultArr=[...new Set(this.resultArr)]
10:08:27 > 613 |             console.log(this.resultArr)   
10:08:27       |             ^
10:08:27   614 |         },
10:08:27   615 |         removetagParty(val){
10:08:27   616 |             console.log(val)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:616:13:
10:08:27   614 |         },
10:08:27   615 |         removetagParty(val){
10:08:27 > 616 |             console.log(val)
10:08:27       |             ^
10:08:27   617 |             this.resultArr.forEach(item=>{
10:08:27   618 |                 if(item.id==val){
10:08:27   619 |                 this.resultArr.splice(item,1)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:622:13:
10:08:27   620 |                 }
10:08:27   621 |             })
10:08:27 > 622 |             console.log(this.resultArr)
10:08:27       |             ^
10:08:27   623 |         },
10:08:27   624 |         uploadImg(e) {
10:08:27   625 |             // alert(this.fileList.length)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:630:13:
10:08:27   628 |             //     return false
10:08:27   629 |             // }
10:08:27 > 630 |             console.log(e.file)     
10:08:27       |             ^
10:08:27   631 |             let fd=new FormData()
10:08:27   632 |             fd.append("file",e.file)   
10:08:27   633 |             console.log(fd)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:633:13:
10:08:27   631 |             let fd=new FormData()
10:08:27   632 |             fd.append("file",e.file)   
10:08:27 > 633 |             console.log(fd)
10:08:27       |             ^
10:08:27   634 |             this.$api.v3commonFileUploadApi(fd,{
10:08:27   635 |                 onSucess: response => {
10:08:27   636 |                     console.log(response.data.data) 
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:636:21:
10:08:27   634 |             this.$api.v3commonFileUploadApi(fd,{
10:08:27   635 |                 onSucess: response => {
10:08:27 > 636 |                     console.log(response.data.data) 
10:08:27       |                     ^
10:08:27   637 |                     let obj={
10:08:27   638 |                         name:e.file.name,
10:08:27   639 |                         path:response.data.data,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:656:12:
10:08:27   654 |         },
10:08:27   655 |         handleRemove(file, fileList){
10:08:27 > 656 |            console.log(file)
10:08:27       |            ^
10:08:27   657 |            this.fileList.forEach((item,index)=>{
10:08:27   658 |                if(item==file){
10:08:27   659 |                  this.fileList.splice(index,1)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:700:11:
10:08:27   698 |         },   
10:08:27   699 |         onpreview(file){
10:08:27 > 700 |           console.log(file)
10:08:27       |           ^
10:08:27   701 |           if(file.path.indexOf('http')==-1){
10:08:27   702 |               if(location.origin.indexOf('test')>-1){
10:08:27   703 |                   window.open('/v3/shared'+file.path)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:727:29:
10:08:27   725 |                 this.$api.v3CanlendarDelApi(obj,{
10:08:27   726 |                         onSucess: response => {
10:08:27 > 727 |                             console.log(response.data)
10:08:27       |                             ^
10:08:27   728 |                             if(response.data.code){
10:08:27   729 |                                 this.searchCalendarList() 
10:08:27   730 |                                 this.searchCalendarListDay() 
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:745:21:
10:08:27   743 |            this.$api.v3CanlendarFinishStatusApi(obj,{
10:08:27   744 |                 onSucess: response => {
10:08:27 > 745 |                     console.log(response.data)
10:08:27       |                     ^
10:08:27   746 |                     if(response.data.code){
10:08:27   747 |                           this.searchCalendarList() 
10:08:27   748 |                           this.searchCalendarListDay() 
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:766:25:
10:08:27   764 |                    if(response.data.code==0){
10:08:27   765 |                         this.formList=response.data.datas[0]
10:08:27 > 766 |                         console.log(this.formList)
10:08:27       |                         ^
10:08:27   767 |                         if(this.formList.item_starttime){
10:08:27   768 |                             let date=new Date(this.formList.item_starttime.time)
10:08:27   769 |                             let year=date.getFullYear()
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:775:29:
10:08:27   773 |                             let mm=date.getMinutes()<10?'0'+date.getMinutes():date.getMinutes()
10:08:27   774 |                             let startTime=year+'-'+month+'-'+dates+'  '+HH+':'+mm
10:08:27 > 775 |                             console.log(startTime)
10:08:27       |                             ^
10:08:27   776 |                             console.log(typeof startTime)
10:08:27   777 |                             this.$set(this.formList,'startTime',startTime)
10:08:27   778 |                         }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:776:29:
10:08:27   774 |                             let startTime=year+'-'+month+'-'+dates+'  '+HH+':'+mm
10:08:27   775 |                             console.log(startTime)
10:08:27 > 776 |                             console.log(typeof startTime)
10:08:27       |                             ^
10:08:27   777 |                             this.$set(this.formList,'startTime',startTime)
10:08:27   778 |                         }
10:08:27   779 |                         if(this.formList.item_endtime){
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:796:29:
10:08:27   794 |                         this.$set(this.formList,'executorName',this.formList.item_executorname)
10:08:27   795 |                         if(this.formList.item_participant){
10:08:27 > 796 |                             console.log(this.formList.item_participant)
10:08:27       |                             ^
10:08:27   797 |                          let  participantStr=this.formList.item_participant.split(";")  
10:08:27   798 |                         this.$set(this.formList,'participant',participantStr)
10:08:27   799 |                         this.$set(this.formList,'ParticipantName',this.formList.item_participantname)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeCalendarBox.vue:869:13:
10:08:27   867 |                 this.$set(item,'count',0)
10:08:27   868 |             })
10:08:27 > 869 |             console.log(this.days)
10:08:27       |             ^
10:08:27   870 |         },
10:08:27   871 |         pickPre(year, month){
10:08:27   872 |             // setDate(0); 上月最后一天
10:08:27 
10:08:27 
10:08:27 38 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeMyused.vue:32:13:
10:08:27   30 |     methods:{
10:08:27   31 |         clickMenu(target){
10:08:27 > 32 |             console.log('clickMenu', target)
10:08:27      |             ^
10:08:27   33 |         }
10:08:27   34 |     }
10:08:27   35 | }
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeSecCockPit.vue:80:21:
10:08:27   78 |             this.$api.v3manageCockPitListApi(data,{
10:08:27   79 |                 onSucess: response => {
10:08:27 > 80 |                     console.log(response.data)
10:08:27      |                     ^
10:08:27   81 |                    if(response.data.code==0){
10:08:27   82 |                       let dataNums=response.data.data
10:08:27   83 |                       if(dataNums.length){
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:55:9:
10:08:27   53 |     },
10:08:27   54 |     created() {
10:08:27 > 55 |         console.log(this.$root.user)
10:08:27      |         ^
10:08:27   56 |         this.network = __network__
10:08:27   57 |         if(this.network){
10:08:27   58 |             this.getLocation();   
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:107:24:
10:08:27   105 |                    if(response.data.data){
10:08:27   106 |                        this.hiredDate=response.data.data.hiredDate
10:08:27 > 107 |                        console.log(this.hiredDate)
10:08:27       |                        ^
10:08:27   108 |                        this.hiredDateToNow=diffDate(response.data.data.hiredDate,getNowFormatDate())
10:08:27   109 |                    }
10:08:27   110 |                 }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:121:23:
10:08:27   119 |                 onSucess: response => {
10:08:27   120 |                    if(response.data.data){
10:08:27 > 121 |                       console.log(response.data.data)
10:08:27       |                       ^
10:08:27   122 |                       if(response.data.data.datas.length){
10:08:27   123 |                          this.getAnnouncementFirst=response.data.data.datas[0]
10:08:27   124 |                       }else{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:159:21:
10:08:27   157 |                 function onComplete (data) {
10:08:27   158 |                     // data是具体的定位信息
10:08:27 > 159 |                     console.log('定位成功信息:', data.addressComponent.city);
10:08:27       |                     ^
10:08:27   160 |                     self.city = data.addressComponent.city;
10:08:27   161 |                     AMap.plugin('AMap.Weather', function() {
10:08:27   162 |                         console.log(self.city)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:162:25:
10:08:27   160 |                     self.city = data.addressComponent.city;
10:08:27   161 |                     AMap.plugin('AMap.Weather', function() {
10:08:27 > 162 |                         console.log(self.city)
10:08:27       |                         ^
10:08:27   163 |                         var weather = new AMap.Weather();
10:08:27   164 |                             weather.getLive(self.city, function(err, data) {
10:08:27   165 |                             if (!err) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:166:33:
10:08:27   164 |                             weather.getLive(self.city, function(err, data) {
10:08:27   165 |                             if (!err) {
10:08:27 > 166 |                                 console.log(data)
10:08:27       |                                 ^
10:08:27   167 |                                 self.cityInfo=data
10:08:27   168 |                                 if(data.weather.indexOf('晴')>-1){
10:08:27   169 |                                     self.weatherImg=self.sun
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:200:21:
10:08:27   198 |                 function onError (data) {
10:08:27   199 |                     // 定位出错
10:08:27 > 200 |                     console.log('定位失败错误:', data);
10:08:27       |                     ^
10:08:27   201 |                     self.city=''//定位失败隐藏
10:08:27   202 |                     // 调用IP定位
10:08:27   203 |                     self.getLngLatLocation();
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:213:21:
10:08:27   211 |                 if (status === 'complete' && result.info === 'OK') {
10:08:27   212 |                     // 查询成功,result即为当前所在城市信息
10:08:27 > 213 |                     console.log('通过ip获取当前城市:', result);
10:08:27       |                     ^
10:08:27   214 |                     // 逆向地理编码
10:08:27   215 |                     AMap.plugin('AMap.Geocoder', function () {
10:08:27   216 |                     var geocoder = new AMap.Geocoder({
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:225:25:
10:08:27   223 |                         if (status === 'complete' && data.info === 'OK') {
10:08:27   224 |                         // result为对应的地理位置详细信息
10:08:27 > 225 |                         console.log(data);
10:08:27       |                         ^
10:08:27   226 |                         }
10:08:27   227 |                     });
10:08:27   228 |                     });
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:246:20:
10:08:27   244 |                 //        loading.close();//关闭加载
10:08:27   245 |                 //    });
10:08:27 > 246 |                    console.log('banner______________',response.data.data.data)
10:08:27       |                    ^
10:08:27   247 |                    if(response.data.data.data){
10:08:27   248 |                        let Arry=[]
10:08:27   249 |                        response.data.data.data.forEach(item=>{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcome.vue:258:24:
10:08:27   256 |                        })
10:08:27   257 |                        this.bannerArr=Arry
10:08:27 > 258 |                        console.log(this.bannerArr)
10:08:27       |                        ^
10:08:27   259 |                    }
10:08:27   260 |                 }
10:08:27   261 |             })
10:08:27 
10:08:27 
10:08:27 11 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:57:9:
10:08:27   55 |     },
10:08:27   56 |     created() {
10:08:27 > 57 |         console.log(this.$root.user)
10:08:27      |         ^
10:08:27   58 |         this.network = __network__
10:08:27   59 |         if(this.network){
10:08:27   60 |             this.getLocation();   
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:154:24:
10:08:27   152 |                    if(response.data.data){
10:08:27   153 |                        this.hiredDate=response.data.data.hiredDate
10:08:27 > 154 |                        console.log(this.hiredDate)
10:08:27       |                        ^
10:08:27   155 |                        this.hiredDateToNow=diffDate(response.data.data.hiredDate,getNowFormatDate())
10:08:27   156 |                    }
10:08:27   157 |                 }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:168:23:
10:08:27   166 |                 onSucess: response => {
10:08:27   167 |                    if(response.data.data){
10:08:27 > 168 |                       console.log(response.data.data)
10:08:27       |                       ^
10:08:27   169 |                       if(response.data.data.datas.length){
10:08:27   170 |                          this.getAnnouncementFirst=response.data.data.datas[0]
10:08:27   171 |                       }else{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:206:21:
10:08:27   204 |                 function onComplete (data) {
10:08:27   205 |                     // data是具体的定位信息
10:08:27 > 206 |                     console.log('定位成功信息:', data.addressComponent.city);
10:08:27       |                     ^
10:08:27   207 |                     self.city = data.addressComponent.city;
10:08:27   208 |                     AMap.plugin('AMap.Weather', function() {
10:08:27   209 |                         console.log(self.city)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:209:25:
10:08:27   207 |                     self.city = data.addressComponent.city;
10:08:27   208 |                     AMap.plugin('AMap.Weather', function() {
10:08:27 > 209 |                         console.log(self.city)
10:08:27       |                         ^
10:08:27   210 |                         var weather = new AMap.Weather();
10:08:27   211 |                             weather.getLive(self.city, function(err, data) {
10:08:27   212 |                             if (!err) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:213:33:
10:08:27   211 |                             weather.getLive(self.city, function(err, data) {
10:08:27   212 |                             if (!err) {
10:08:27 > 213 |                                 console.log(data)
10:08:27       |                                 ^
10:08:27   214 |                                 self.cityInfo=data
10:08:27   215 |                                 if(data.weather.indexOf('晴')>-1){
10:08:27   216 |                                     self.weatherImg=self.sun
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:247:21:
10:08:27   245 |                 function onError (data) {
10:08:27   246 |                     // 定位出错
10:08:27 > 247 |                     console.log('定位失败错误:', data);
10:08:27       |                     ^
10:08:27   248 |                     self.city=''//定位失败隐藏
10:08:27   249 |                     // 调用IP定位
10:08:27   250 |                     self.getLngLatLocation();
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:260:21:
10:08:27   258 |                 if (status === 'complete' && result.info === 'OK') {
10:08:27   259 |                     // 查询成功,result即为当前所在城市信息
10:08:27 > 260 |                     console.log('通过ip获取当前城市:', result);
10:08:27       |                     ^
10:08:27   261 |                     // 逆向地理编码
10:08:27   262 |                     AMap.plugin('AMap.Geocoder', function () {
10:08:27   263 |                     var geocoder = new AMap.Geocoder({
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:272:25:
10:08:27   270 |                         if (status === 'complete' && data.info === 'OK') {
10:08:27   271 |                         // result为对应的地理位置详细信息
10:08:27 > 272 |                         console.log(data);
10:08:27       |                         ^
10:08:27   273 |                         }
10:08:27   274 |                     });
10:08:27   275 |                     });
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:293:20:
10:08:27   291 |                 //        loading.close();//关闭加载
10:08:27   292 |                 //    });
10:08:27 > 293 |                    console.log('banner______________',response.data.data.data)
10:08:27       |                    ^
10:08:27   294 |                    if(response.data.data.data){
10:08:27   295 |                        let Arry=[]
10:08:27   296 |                        response.data.data.data.forEach(item=>{
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/homeWelcomeNew.vue:305:24:
10:08:27   303 |                        })
10:08:27   304 |                        this.bannerArr=Arry.slice(0,3)
10:08:27 > 305 |                        console.log(this.bannerArr)
10:08:27       |                        ^
10:08:27   306 |                    }
10:08:27   307 |                 }
10:08:27   308 |             })
10:08:27 
10:08:27 
10:08:27 11 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/main_content.vue:237:7:
10:08:27   235 |     onTabClick: function(tab,index) {
10:08:27   236 |       // debugger
10:08:27 > 237 |       console.log(tab)
10:08:27       |       ^
10:08:27   238 |       console.log(index)
10:08:27   239 |       this.$emit("active-tab", tab,index);      
10:08:27   240 |       //点击tab标签左边菜单显示对应的应用--bcx新增功能
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/main_content.vue:238:7:
10:08:27   236 |       // debugger
10:08:27   237 |       console.log(tab)
10:08:27 > 238 |       console.log(index)
10:08:27       |       ^
10:08:27   239 |       this.$emit("active-tab", tab,index);      
10:08:27   240 |       //点击tab标签左边菜单显示对应的应用--bcx新增功能
10:08:27   241 |       let appId=tab.appId
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/main_content.vue:255:9:
10:08:27   253 |             this.$root.appid = appId;
10:08:27   254 |         }     
10:08:27 > 255 |         console.log(tab)
10:08:27       |         ^
10:08:27   256 |         this.setMaincontent(false)
10:08:27   257 |         this.$parent.showApp=true
10:08:27   258 |         this.$parent.showWait=false
10:08:27 
10:08:27 
10:08:27 3 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/main_navbar.vue:157:7:
10:08:27   155 |     defaultClickFirst(dataArr){
10:08:27   156 |       // debugger
10:08:27 > 157 |       console.log(dataArr)
10:08:27       |       ^
10:08:27   158 |         if(dataArr[0].children){
10:08:27   159 |           if(dataArr[0].children[0].children){
10:08:27   160 |             this.onMenuClick(dataArr[0].children[0].children[0])
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/main_navbar.vue:165:11:
10:08:27   163 |           }
10:08:27   164 |         }else{
10:08:27 > 165 |           console.log(dataArr[0])
10:08:27       |           ^
10:08:27   166 |           this.onMenuClick(dataArr[0])
10:08:27   167 |         }        
10:08:27   168 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/main_navbar.vue:171:7:
10:08:27   169 |     onMenuClick: function(menu) {
10:08:27   170 |       // debugger
10:08:27 > 171 |       console.log(menu)
10:08:27       |       ^
10:08:27   172 |       this.currentMenuId = menu.id;
10:08:27   173 |       if(menu.opentarget == "target") {
10:08:27   174 |         let paramKey = '';
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/main_navbar.vue:198:1:
10:08:27   196 |             });            
10:08:27   197 |
10:08:27 > 198 | console.log(routeData,'routeDatarouteDatarouteDatarouteDatarouteDatarouteDatarouteDatarouteDatarouteDatarouteDatarouteDatarouteDatarouteData');
10:08:27       | ^
10:08:27   199 |
10:08:27   200 |         window.open(routeData.href, '_blank');
10:08:27   201 |         
10:08:27 
10:08:27 
10:08:27 4 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/main_pending.vue:605:9:
10:08:27   603 |     activate() {
10:08:27   604 |       if (this.backlogRight.length === 0) {
10:08:27 > 605 |         console.log("--->0");
10:08:27       |         ^
10:08:27   606 |       }
10:08:27   607 |     },
10:08:27   608 |     //点击左侧导航触发待办事项
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/main_processing.vue:248:7:
10:08:27   246 |     },
10:08:27   247 |     isComplete() {
10:08:27 > 248 |       console.log("isComplete---->",this.status);
10:08:27       |       ^
10:08:27   249 |       let appId = this.openParams.appId ? this.openParams.appId : this.currentAppId;
10:08:27   250 |       let params = {
10:08:27   251 |           applicationId: appId,
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/main_read.vue:209:7:
10:08:27   207 |     },
10:08:27   208 |     onRowClick(row, column, event ) {
10:08:27 > 209 |       console.log("row--->",row.index);
10:08:27       |       ^
10:08:27   210 |       
10:08:27   211 |       let params = {
10:08:27   212 |         appId: this.$root.appid,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/main_read.vue:351:9:
10:08:27   349 |     activate() {
10:08:27   350 |       if (this.backlogRight.length === 0) {
10:08:27 > 351 |         console.log("--->0");
10:08:27       |         ^
10:08:27   352 |       }
10:08:27   353 |     },
10:08:27   354 |     //点击左侧导航触发待办事项
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/main_unread.vue:211:7:
10:08:27   209 |     },
10:08:27   210 |     onRowClick(row, column, event ) {
10:08:27 > 211 |       console.log("row--->",row.index);
10:08:27       |       ^
10:08:27   212 |       
10:08:27   213 |       let params = {
10:08:27   214 |         appId: this.$root.appid,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/main_unread.vue:353:9:
10:08:27   351 |     activate() {
10:08:27   352 |       if (this.backlogRight.length === 0) {
10:08:27 > 353 |         console.log("--->0");
10:08:27       |         ^
10:08:27   354 |       }
10:08:27   355 |     },
10:08:27   356 |     //点击左侧导航触发待办事项
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/map_arcGIS.vue:122:9:
10:08:27   120 |       
10:08:27   121 |     }, reason => {
10:08:27 > 122 |         console.log (reason);
10:08:27       |         ^
10:08:27   123 |     })
10:08:27   124 |   },
10:08:27   125 |
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/menu_custom_linktype.vue:49:5:
10:08:27   47 |   created() {
10:08:27   48 |
10:08:27 > 49 |     console.log(this.openParams,'openParams');
10:08:27      |     ^
10:08:27   50 |
10:08:27   51 |     // Function to check if the URL contains the specified domain and redirect
10:08:27   52 |     function checkAndRedirect(v) {
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_calctext.vue:47:7:
10:08:27   45 |   methods: {
10:08:27   46 |     setValue(value) {
10:08:27 > 47 |       console.log(value)
10:08:27      |       ^
10:08:27   48 |       if(value&&value.indexOf("pdfviewer.html") > -1) {
10:08:27   49 |         let statiContextPath = obpmConfig.statiContextPath;
10:08:27   50 |         if(statiContextPath) { //5.0 trunk
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_dept_select.vue:297:11:
10:08:27   295 |         onSucess: (res) => {
10:08:27   296 |           this.tableData = res.data.data;
10:08:27 > 297 |           console.log(this.tableData);
10:08:27       |           ^
10:08:27   298 |         },
10:08:27   299 |       });
10:08:27   300 |     },
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_dept_tree_select.vue:323:7:
10:08:27   321 |         this.activeRightDept.push(key);
10:08:27   322 |       }
10:08:27 > 323 |       console.log("------------->", this.activeRightDept);
10:08:27       |       ^
10:08:27   324 |     },
10:08:27   325 |     selectType(val) {
10:08:27   326 |       if (val == "TORIGHT") {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_dept_tree_select.vue:524:13:
10:08:27   522 |             // name: "test123"
10:08:27   523 |             // userCount: 21
10:08:27 > 524 |             console.log("this.nodes--->", nodes);
10:08:27       |             ^
10:08:27   525 |             resolve(nodes);
10:08:27   526 |           },
10:08:27   527 |         });
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_kms.vue:252:11:
10:08:27   250 |       this.$api.templateDownload(name, path, {
10:08:27   251 |         onSucess: (response) => {
10:08:27 > 252 |           console.log("res--->", response);
10:08:27       |           ^
10:08:27   253 |           let fileName = "";
10:08:27   254 |           let type = response.headers["content-type"];
10:08:27   255 |           if (response.headers["content-disposition"]) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_kms.vue:333:7:
10:08:27   331 |     },
10:08:27   332 |     openKmDialog() {
10:08:27 > 333 |       console.log("------------>", this.selectData);
10:08:27       |       ^
10:08:27   334 |       this.dialogVisible = true;
10:08:27   335 |       //fileName=&orderByfield=CREATE_DATE&orderMode=desc&pageNo=1&linesPerPage=10&_=1594349604925
10:08:27   336 |       let params = {
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:387:9:
10:08:27   385 |     listUp(index) {
10:08:27   386 |       if (index == 0) {
10:08:27 > 387 |         console.log("最顶部-->");
10:08:27       |         ^
10:08:27   388 |       } else {
10:08:27   389 |         let arr = this.field.value;
10:08:27   390 |         arr[index] = arr.splice(index - 1, 1, arr[index])[0];
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:397:9:
10:08:27   395 |     listDown(index) {
10:08:27   396 |       if (index == this.field.value.length - 1) {
10:08:27 > 397 |         console.log("最底部-->");
10:08:27       |         ^
10:08:27   398 |       } else {
10:08:27   399 |         let arr = this.field.value;
10:08:27   400 |         arr[index] = arr.splice(index + 1, 1, arr[index])[0];
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:419:4:
10:08:27   417 | 	
10:08:27   418 | 		uploadImg(e){
10:08:27 > 419 | 			console.log(e.file)
10:08:27       | 			^
10:08:27   420 | 			//obs文件上传start
10:08:27   421 |            if(__network__){
10:08:27   422 |               this.obsFile(e)//obs文件上传
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:668:5:
10:08:27   666 | 				}
10:08:27   667 | 				link.href = op + "/runtime/file/download?filename=" + encodeURI(file.name) + "&filepath=" + file.path+'&v='+new Date().getTime();
10:08:27 > 668 | 				console.log(link.href)
10:08:27       | 				^
10:08:27   669 | 				link.setAttribute('download', file.name);
10:08:27   670 | 				link.click();
10:08:27   671 | 			}
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:676:6:
10:08:27   674 | 		handleExceed(files, fileList) {	//文件超出个数限制时的钩子
10:08:27   675 | 			if(this.field.limitNumber=="1"){//上传限制一张用覆盖的方式重新上传
10:08:27 > 676 | 			  console.log(files[0])
10:08:27       | 			  ^
10:08:27   677 | 			  files[0].uid=new Date().getTime()
10:08:27   678 | 			  this.field.value=[]
10:08:27   679 | 			  let e={file:files[0]}
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:850:4:
10:08:27   848 | 			})
10:08:27   849 | 			form.get('files')
10:08:27 > 850 | 			console.log(form.get('files'))
10:08:27       | 			^
10:08:27   851 | 			e.file=form.get('files')
10:08:27   852 |             //去掉文件名称空格end
10:08:27   853 |
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:876:5:
10:08:27   874 | 				SourceFile:e.file //获取file文件
10:08:27   875 | 			}).then(function(result) {
10:08:27 > 876 | 				console.log(result)
10:08:27       | 				^
10:08:27   877 |
10:08:27   878 | 				if(result.CommonMsg.Status < 300){
10:08:27   879 |
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_file_upload.vue:880:6:
10:08:27   878 | 				if(result.CommonMsg.Status < 300){
10:08:27   879 |
10:08:27 > 880 | 					console.log('Create object:' + objectKey + ' successfully!\n');
10:08:27       | 					^
10:08:27   881 | 					var httpurl=`https://${BucketName}.${urlserver}/${objectKey}`
10:08:27   882 | 					httpurl = convertCdnPath(httpurl);
10:08:27   883 | 					// let ob = {};
10:08:27 
10:08:27 
10:08:27 8 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:310:4:
10:08:27   308 | 			}
10:08:27   309 |
10:08:27 > 310 | 			console.log("formData.value-->",formData.value)
10:08:27       | 			^
10:08:27   311 |
10:08:27   312 |
10:08:27   313 | 			if(formData.value && formData.value.length > 0) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:463:4:
10:08:27   461 |
10:08:27   462 | 		uploadSuccess(response, file, fileList) {
10:08:27 > 463 | 			console.log(file);
10:08:27       | 			^
10:08:27   464 | 			console.log(fileList);
10:08:27   465 | 			let obj = {
10:08:27   466 | 					name: response.data[0].fileName,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:464:4:
10:08:27   462 | 		uploadSuccess(response, file, fileList) {
10:08:27   463 | 			console.log(file);
10:08:27 > 464 | 			console.log(fileList);
10:08:27       | 			^
10:08:27   465 | 			let obj = {
10:08:27   466 | 					name: response.data[0].fileName,
10:08:27   467 | 					path: response.data[0].filePath,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:569:4:
10:08:27   567 | 		
10:08:27   568 | 		handleRemove(file, fileList) {
10:08:27 > 569 | 			console.log("file--->",file);
10:08:27       | 			^
10:08:27   570 | 			console.log(fileList);
10:08:27   571 | 			let appId = this.$root.appid;
10:08:27   572 |       let formId = this.field.formId;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:570:4:
10:08:27   568 | 		handleRemove(file, fileList) {
10:08:27   569 | 			console.log("file--->",file);
10:08:27 > 570 | 			console.log(fileList);
10:08:27       | 			^
10:08:27   571 | 			let appId = this.$root.appid;
10:08:27   572 |       let formId = this.field.formId;
10:08:27   573 |       let docId = this.field.docId;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:584:7:
10:08:27   582 | 							}
10:08:27   583 | 						}
10:08:27 > 584 | 						console.log("this.field.value--->",this.field.value);
10:08:27       | 						^
10:08:27   585 | 					}
10:08:27   586 |           if (this.field.refreshOnChanged){
10:08:27   587 |             // this.$parent.refresh(this.field.id);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:696:9:
10:08:27   694 |
10:08:27   695 | 		obsFile(e){//obs文件上传
10:08:27 > 696 | 	       console.log(e)
10:08:27       | 	       ^
10:08:27   697 | 		    //去掉文件名称空格start
10:08:27   698 | 			let form = new FormData();
10:08:27   699 | 			form.append("files", e.file);			
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:706:4:
10:08:27   704 | 			})
10:08:27   705 | 			form.get('files')
10:08:27 > 706 | 			console.log(form.get('files'))
10:08:27       | 			^
10:08:27   707 | 			e.file=form.get('files')
10:08:27   708 |             //去掉文件名称空格end
10:08:27   709 | 			
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:732:5:
10:08:27   730 | 				SourceFile:e.file //获取file文件
10:08:27   731 | 			}).then(function(result) {
10:08:27 > 732 | 				console.log(result)
10:08:27       | 				^
10:08:27   733 |
10:08:27   734 | 				if(result.CommonMsg.Status < 300){
10:08:27   735 |
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_image_upload.vue:736:6:
10:08:27   734 | 				if(result.CommonMsg.Status < 300){
10:08:27   735 |
10:08:27 > 736 | 					console.log('Create object:' + objectKey + ' successfully!\n');
10:08:27       | 					^
10:08:27   737 | 					var httpurl=`https://${BucketName}.${urlserver}/${objectKey}`
10:08:27   738 | 					httpurl = convertCdnPath(httpurl);
10:08:27   739 | 					
10:08:27 
10:08:27 
10:08:27 10 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_input.vue:206:13:
10:08:27   204 |
10:08:27   205 |           if(formData.id.indexOf('shapeType')>-1){
10:08:27 > 206 |             console.log('shapeType',e.data)
10:08:27       |             ^
10:08:27   207 |               // formData.value=e.data.shapeType
10:08:27   208 |               formData.value=e.data.shapeType
10:08:27   209 |           }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_input.vue:211:14:
10:08:27   209 |           }
10:08:27   210 |           if(formData.id.indexOf('shapedLocation')>-1){
10:08:27 > 211 |              console.log('shapedLocation',e.data)
10:08:27       |              ^
10:08:27   212 |               formData.value=JSON.stringify(e.data.shapedLocation)
10:08:27   213 |           }
10:08:27   214 |       })
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_input.vue:243:9:
10:08:27   241 |       handler:function(newV,oldV){
10:08:27   242 |         this.value = newV
10:08:27 > 243 |         console.log('this.value',this.value)
10:08:27       |         ^
10:08:27   244 |         let field = this.field
10:08:27   245 |         if (field.refreshOnChanged) {//判断是否需要刷新
10:08:27   246 |           if(field.refreshMode == 1) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_input.vue:346:11:
10:08:27   344 |           sub = arr[i].split("=");
10:08:27   345 |           sub = sub[0].split(":");
10:08:27 > 346 |           console.log(sub[1]);
10:08:27       |           ^
10:08:27   347 |
10:08:27   348 |           key = sub[0];
10:08:27   349 |           value = sub[1];
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_input.vue:504:16:
10:08:27   502 |           let index=fieldStyle.lastIndexOf("width:") + 6
10:08:27   503 |                fieldStyle=fieldStyle.slice(index)
10:08:27 > 504 |                console.log(fieldStyle,1)
10:08:27       |                ^
10:08:27   505 |                if(fieldStyle.indexOf("%")!==-1){
10:08:27   506 |                  index=fieldStyle.indexOf("%")
10:08:27   507 |                  fieldStyle=fieldStyle.slice(0,index)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_input.vue:508:21:
10:08:27   506 |                  index=fieldStyle.indexOf("%")
10:08:27   507 |                  fieldStyle=fieldStyle.slice(0,index)
10:08:27 > 508 |                     console.log(fieldStyle,2)
10:08:27       |                     ^
10:08:27   509 |                 if(fieldStyle.length<=3){
10:08:27   510 |                   console.log(fieldStyle,3)
10:08:27   511 |                   fieldStyle=parseFloat(fieldStyle)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_input.vue:510:19:
10:08:27   508 |                     console.log(fieldStyle,2)
10:08:27   509 |                 if(fieldStyle.length<=3){
10:08:27 > 510 |                   console.log(fieldStyle,3)
10:08:27       |                   ^
10:08:27   511 |                   fieldStyle=parseFloat(fieldStyle)
10:08:27   512 |                 
10:08:27   513 |                   this.$refs.inputWrap.style.width="100%"
10:08:27 
10:08:27 
10:08:27 7 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_map.vue:471:7:
10:08:27   469 |
10:08:27   470 |     handler({ BMap, map }) {
10:08:27 > 471 |       console.log({ BMap, map });
10:08:27       |       ^
10:08:27   472 |       this.center.lng = 116.404;
10:08:27   473 |       this.center.lat = 39.915;
10:08:27   474 |       this.zoom = 3;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_map.vue:478:7:
10:08:27   476 |
10:08:27   477 |     zoomEnd(e) {
10:08:27 > 478 |       console.log(e);
10:08:27       |       ^
10:08:27   479 |       this.zoom = e.target.getZoom();
10:08:27   480 |     },
10:08:27   481 |
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_map.vue:492:7:
10:08:27   490 |         this.zoom = 19;
10:08:27   491 |       }
10:08:27 > 492 |       console.log(this.zoom);
10:08:27       |       ^
10:08:27   493 |     },
10:08:27   494 |
10:08:27   495 |     //右键$t('shrink')
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_map.vue:599:7:
10:08:27   597 |
10:08:27   598 |     changeLAL() {
10:08:27 > 599 |       console.log("经纬度改变了");
10:08:27       |       ^
10:08:27   600 |       let that = this;
10:08:27   601 |       if (this.currentLongitude && this.currentLatitude) {
10:08:27   602 |         (this.center = {
10:08:27 
10:08:27 
10:08:27 4 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_photo.vue:156:11:
10:08:27   154 |         })
10:08:27   155 |         .catch((error) => {
10:08:27 > 156 |           console.error("摄像头开启失败,请检查摄像头是否可用!");
10:08:27       |           ^
10:08:27   157 |           console.log(error);
10:08:27   158 |         });
10:08:27   159 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_photo.vue:157:11:
10:08:27   155 |         .catch((error) => {
10:08:27   156 |           console.error("摄像头开启失败,请检查摄像头是否可用!");
10:08:27 > 157 |           console.log(error);
10:08:27       |           ^
10:08:27   158 |         });
10:08:27   159 |     },
10:08:27   160 |     // 拍照
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_photo.vue:167:7:
10:08:27   165 |       // 转base64格式、图片格式转换、图片质量压缩
10:08:27   166 |       let imgBase64 = this.$refs["canvas"].toDataURL("image/jpeg", 0.7);
10:08:27 > 167 |       console.log("拍的图片-->");
10:08:27       |       ^
10:08:27   168 |       console.log(imgBase64);
10:08:27   169 |       this.savePhoto = imgBase64;
10:08:27   170 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_photo.vue:168:7:
10:08:27   166 |       let imgBase64 = this.$refs["canvas"].toDataURL("image/jpeg", 0.7);
10:08:27   167 |       console.log("拍的图片-->");
10:08:27 > 168 |       console.log(imgBase64);
10:08:27       |       ^
10:08:27   169 |       this.savePhoto = imgBase64;
10:08:27   170 |     },
10:08:27   171 |     // 关闭摄像头
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_photo.vue:180:7:
10:08:27   178 |       });
10:08:27   179 |       this.$refs["video"].srcObject = null;
10:08:27 > 180 |       console.log("关闭了");
10:08:27       |       ^
10:08:27   181 |     },
10:08:27   182 |     showDialog() {
10:08:27   183 |       var explorer = window.navigator.userAgent;
10:08:27 
10:08:27 
10:08:27 5 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_reminder_history.vue:250:7:
10:08:27   248 |   methods: {
10:08:27   249 |     getFlowHistory(){
10:08:27 > 250 |       console.log("this.fleld---->",this.field);
10:08:27       |       ^
10:08:27   251 |       let appId = this.$root.appid
10:08:27   252 |       let docId = this.field.docId;
10:08:27   253 |       this.$api.getRemindHistorys(
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_textarea.vue:162:13:
10:08:27   160 |           // }
10:08:27   161 |           if(formData.id.indexOf('shapedLocation')>-1){
10:08:27 > 162 |             console.log('shapedLocation',e.data)
10:08:27       |             ^
10:08:27   163 |               formData.value=JSON.stringify(e.data.shapedLocation)
10:08:27   164 |           }
10:08:27   165 |       })
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/o_user_select.vue:606:11:
10:08:27   604 |         onSucess: (res) => {
10:08:27   605 |           this.tableData = res.data.data;
10:08:27 > 606 |           console.log(this.tableData);
10:08:27       |           ^
10:08:27   607 |         },
10:08:27   608 |       });
10:08:27   609 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_user_select.vue:715:7:
10:08:27   713 |       this.selectedUsers = arrID;
10:08:27   714 |       this.selectedUsersList = arr;
10:08:27 > 715 |       console.log("this.selectedUsersList---->", this.selectedUsersList);
10:08:27       |       ^
10:08:27   716 |     },
10:08:27   717 |
10:08:27   718 |     /**
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_user_select.vue:831:7:
10:08:27   829 |     //加载更多在线用户
10:08:27   830 |     onlinesLoadingMore() {
10:08:27 > 831 |       console.log(111);
10:08:27       |       ^
10:08:27   832 |       this.loadingIcon = true;
10:08:27   833 |       let pageSize = 10;
10:08:27   834 |       API.getOnlines(this.onlinesPage++, pageSize, {
10:08:27 
10:08:27 
10:08:27 3 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/obpm_open_container.vue:82:5:
10:08:27   80 |   created() {
10:08:27   81 |     let op = this.openParams;
10:08:27 > 82 |     console.log(this.openParams)
10:08:27      |     ^
10:08:27   83 |     this.doAction(op);
10:08:27   84 |   },
10:08:27   85 |   mounted() {
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/platAd.vue:106:12:
10:08:27   104 |                value= value.replace(/<a */g, "<a target='_blank' ");//富文本a标签加上新窗口打开
10:08:27   105 |            }
10:08:27 > 106 |            console.log(value)
10:08:27       |            ^
10:08:27   107 |            return value
10:08:27   108 |         },  
10:08:27   109 |          // 取消
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/platAdPop.vue:114:12:
10:08:27   112 |                value= value.replace(/<a */g, "<a target='_blank' ");//富文本a标签加上新窗口打开
10:08:27   113 |            }
10:08:27 > 114 |            console.log(value)
10:08:27       |            ^
10:08:27   115 |            return value
10:08:27   116 |         },        
10:08:27   117 |         cancle() {// 取消
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/pop.vue:68:7:
10:08:27   66 |       this.formList = newRowData; //拷贝一份存储对象引用不同地址
10:08:27   67 |       this.OperType = type;
10:08:27 > 68 |       console.log(this.formList.parentId)
10:08:27      |       ^
10:08:27   69 |       if (this.OperType == 0) {        
10:08:27   70 |         this.title = this.agreementTitle;
10:08:27   71 |         
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/print_view.vue:55:5:
10:08:27   53 |       }
10:08:27   54 |     }
10:08:27 > 55 |     console.log("--->",this.$route.query)
10:08:27      |     ^
10:08:27   56 |   },
10:08:27   57 |   mounted() {
10:08:27   58 |     this.getViewData();
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:555:11:
10:08:27   553 |           }
10:08:27   554 |
10:08:27 > 555 |           console.log("arr---->", arr);
10:08:27       |           ^
10:08:27   556 |           this.flowData = arr;
10:08:27   557 |           this.$nextTick(() => {
10:08:27   558 |             for (let i = 0; i < arr.length; i++) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:882:11:
10:08:27   880 |           });
10:08:27   881 |           this.process = newData;
10:08:27 > 882 |           console.log("this.process--->", this.process);
10:08:27       |           ^
10:08:27   883 |         },
10:08:27   884 |       });
10:08:27   885 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:955:11:
10:08:27   953 |             }
10:08:27   954 |           }
10:08:27 > 955 |           console.log("arr---->", arr);
10:08:27       |           ^
10:08:27   956 |           this.flowData = arr;
10:08:27   957 |         },
10:08:27   958 |       });
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:1049:7:
10:08:27   1047 |     checkedMobile() {
10:08:27   1048 |       var phoneReg = /^1\d{10}$/;
10:08:27 > 1049 |       console.log(
10:08:27        |       ^
10:08:27   1050 |         !phoneReg.test(this.information.mobile) && !this.information.mobile
10:08:27   1051 |       );
10:08:27   1052 |       console.log(this.information.mobile);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:1052:7:
10:08:27   1050 |         !phoneReg.test(this.information.mobile) && !this.information.mobile
10:08:27   1051 |       );
10:08:27 > 1052 |       console.log(this.information.mobile);
10:08:27        |       ^
10:08:27   1053 |       if (
10:08:27   1054 |         !phoneReg.test(this.information.mobile) &&
10:08:27   1055 |         this.information.mobile !== "" &&
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:1189:13:
10:08:27   1187 |           },
10:08:27   1188 |           onError: (error) => {
10:08:27 > 1189 |             console.log(error);
10:08:27        |             ^
10:08:27   1190 |           },
10:08:27   1191 |         }
10:08:27   1192 |       );
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:1307:11:
10:08:27   1305 |           });
10:08:27   1306 |           this.process = newData;
10:08:27 > 1307 |           console.log("this.process--->", this.process);
10:08:27        |           ^
10:08:27   1308 |         },
10:08:27   1309 |       });
10:08:27   1310 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:1343:11:
10:08:27   1341 |           });
10:08:27   1342 |           this.process = newData;
10:08:27 > 1343 |           console.log("this.process--->", this.process);
10:08:27        |           ^
10:08:27   1344 |         },
10:08:27   1345 |       });
10:08:27   1346 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/profile.vue:1444:13:
10:08:27   1442 |           },
10:08:27   1443 |           onError: (error) => {
10:08:27 > 1444 |             console.log(error);
10:08:27        |             ^
10:08:27   1445 |           },
10:08:27   1446 |         }
10:08:27   1447 |       );
10:08:27 
10:08:27 
10:08:27 9 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/qrcodeDialog.vue:26:7:
10:08:27   24 |       this.employeeId = localStorage.getItem('employeeId');
10:08:27   25 |       this.organizationsId = localStorage.getItem('domainId');
10:08:27 > 26 |       console.info('href', window.location.href);
10:08:27      |       ^
10:08:27   27 |       let domainUrl = window.location.href.split('/')[2];
10:08:27   28 |       console.info('domain url', domainUrl);
10:08:27   29 |       // this.inviteUrl = `https://v5qy.te.baibaodun.com.cn/static/signon/fronts/#/register?shareEmployeeId=${this.employeeId}&shareOrganizationId=${this.organizationsId}`;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/qrcodeDialog.vue:28:7:
10:08:27   26 |       console.info('href', window.location.href);
10:08:27   27 |       let domainUrl = window.location.href.split('/')[2];
10:08:27 > 28 |       console.info('domain url', domainUrl);
10:08:27      |       ^
10:08:27   29 |       // this.inviteUrl = `https://v5qy.te.baibaodun.com.cn/static/signon/fronts/#/register?shareEmployeeId=${this.employeeId}&shareOrganizationId=${this.organizationsId}`;
10:08:27   30 |       this.inviteUrl = `https://${domainUrl}/static/signon/fronts/#/register?shareEmployeeId=${this.employeeId}&shareOrganizationId=${this.organizationsId}`;
10:08:27   31 |       this.showDialog = newVal;
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/report.vue:152:7:
10:08:27   150 |     setImgUrl(id) {
10:08:27   151 |       let imgLists = document.getElementById(id).getElementsByTagName("img");
10:08:27 > 152 |       console.log("imgLists-->", imgLists);
10:08:27       |       ^
10:08:27   153 |       let src = "";
10:08:27   154 |       for (let i = 0; i < imgLists.length; i++) {
10:08:27   155 |         let imgName = imgLists[i].src.split("/");
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/service.vue:143:29:
10:08:27   141 |                             Arry.sort((a,b)=>{return Number(a.sort)-Number(b.sort)})  
10:08:27   142 |                             this.appMarketServiceArry=Arry
10:08:27 > 143 |                             console.log(this.appMarketServiceArry)
10:08:27       |                             ^
10:08:27   144 |                       }
10:08:27   145 |                    }
10:08:27   146 |                }
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_blank.vue:79:7:
10:08:27   77 |     contentType: function() {
10:08:27   78 |
10:08:27 > 79 |       console.log(this.params,"this.__________________________");
10:08:27      |       ^
10:08:27   80 |       let compName;
10:08:27   81 |       switch (this.params.linkType) {
10:08:27   82 |         case "00":
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_calendarview.vue:1965:7:
10:08:27   1963 |       }
10:08:27   1964 |       this.currentDocIds = docIds;
10:08:27 > 1965 |       console.log("docIds--->",docIds);
10:08:27        |       ^
10:08:27   1966 |     },
10:08:27   1967 |
10:08:27   1968 |     getShowListData(page, size, searchData, startTime, endTime,) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_calendarview.vue:2133:15:
10:08:27   2131 |             onSucess: response => {
10:08:27   2132 |               let viewData = response.data;
10:08:27 > 2133 |               console.log("viewData-------->",viewData)
10:08:27        |               ^
10:08:27   2134 |               resolve(viewData);
10:08:27   2135 |             }
10:08:27   2136 |           }
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_cardview.vue:126:11:
10:08:27   124 |           this.loading = false;
10:08:27   125 |           this.CardData = tds;
10:08:27 > 126 |           console.log("this.tableData---->", this.CardData);
10:08:27       |           ^
10:08:27   127 |         }
10:08:27   128 |       });
10:08:27   129 |     },
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_collapsibleview.vue:300:9:
10:08:27   298 |       })
10:08:27   299 |       if (hasSelect) {
10:08:27 > 300 |         console.log(selection)
10:08:27       |         ^
10:08:27   301 |         console.log(row)
10:08:27   302 |         this.$nextTick(() => {  
10:08:27   303 |           this.$refs.multipleTable.toggleRowSelection(row,true);          
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_collapsibleview.vue:301:9:
10:08:27   299 |       if (hasSelect) {
10:08:27   300 |         console.log(selection)
10:08:27 > 301 |         console.log(row)
10:08:27       |         ^
10:08:27   302 |         this.$nextTick(() => {  
10:08:27   303 |           this.$refs.multipleTable.toggleRowSelection(row,true);          
10:08:27   304 |         })
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_collapsibleview.vue:565:23:
10:08:27   563 |                         tds.push(rows);
10:08:27   564 |                       });
10:08:27 > 565 |                       console.log(tds)
10:08:27       |                       ^
10:08:27   566 |                       resolve(tds);
10:08:27   567 |                     }   
10:08:27   568 |                   }
10:08:27 
10:08:27 
10:08:27 error: Duplicated key 'reloadListView' (vue/no-dupe-keys) at src/components/view_collapsibleview.vue:583:5:
10:08:27   581 |     },
10:08:27   582 |
10:08:27 > 583 |     reloadListView(){
10:08:27       |     ^
10:08:27   584 |       this.getData(this.currentPage);
10:08:27   585 |     },
10:08:27   586 |
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_collapsibleview.vue:618:7:
10:08:27   616 |         docIds = [];
10:08:27   617 |       }
10:08:27 > 618 |       console.log(docIds)
10:08:27       |       ^
10:08:27   619 |       this.$emit("getDocIds",docIds);
10:08:27   620 |     },
10:08:27   621 |
10:08:27 
10:08:27 
10:08:27 5 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:460:7:
10:08:27   458 |     init(isCloseDialog) {
10:08:27   459 |       // debugger
10:08:27 > 460 |       console.log(this.jumpParams);
10:08:27       |       ^
10:08:27   461 |       let op = this.openParams;
10:08:27   462 |       let exparams = {};
10:08:27   463 |       if (op.exparams) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:676:7:
10:08:27   674 |     //包含元素弹出层和当前页打开都是使用这个刷新
10:08:27   675 |     closeDialog(isSave) {
10:08:27 > 676 |       console.log(this.viewType)
10:08:27       |       ^
10:08:27   677 |       this.$refs.delegate.reloadListView();
10:08:27   678 |       if (!isSave) {
10:08:27   679 |         this.dialogVisible = false;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:724:9:
10:08:27   722 |       }
10:08:27   723 |       if ((st && st == "tab") || (st && st == "include")) {
10:08:27 > 724 |         console.log(exparams);
10:08:27       |         ^
10:08:27   725 |         console.log(5455);
10:08:27   726 |         //如果是控件选项卡
10:08:27   727 |         exparams.parentId = op.parentId;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:725:9:
10:08:27   723 |       if ((st && st == "tab") || (st && st == "include")) {
10:08:27   724 |         console.log(exparams);
10:08:27 > 725 |         console.log(5455);
10:08:27       |         ^
10:08:27   726 |         //如果是控件选项卡
10:08:27   727 |         exparams.parentId = op.parentId;
10:08:27   728 |         exparams.isRelate = op.isRelate;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:730:7:
10:08:27   728 |         exparams.isRelate = op.isRelate;
10:08:27   729 |       }
10:08:27 > 730 |       console.info('delegate 1', appId);
10:08:27       |       ^
10:08:27   731 |       this.$api.getViewTemplate(appId, viewId, exparams, {
10:08:27   732 |         onSucess: (response) => {
10:08:27   733 |           // alert(88)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:736:11:
10:08:27   734 |           this.loading = true;
10:08:27   735 |
10:08:27 > 736 |           console.info('response', response);
10:08:27       |           ^
10:08:27   737 |           if (response.data.data) {
10:08:27   738 |             if (!response.data.data.activities) {
10:08:27   739 |               //后台配置的视图操作按钮为0
10:08:27 
10:08:27 
10:08:27 error: Unexpected 'debugger' statement (no-debugger) at src/components/view_delegate.vue:1519:19:
10:08:27   1517 |                   break;
10:08:27   1518 |                 case 16: //导出excel
10:08:27 > 1519 |                   debugger
10:08:27        |                   ^
10:08:27   1520 |                   this.isBlockClick = false;
10:08:27   1521 |                   this.currentClickBtnAct = act;
10:08:27   1522 |                   let excelColumns = [];
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:1525:19:
10:08:27   1523 |                   let columns = this.copyColumns;
10:08:27   1524 |                   let selectAll = [];
10:08:27 > 1525 |                   console.log(columns)
10:08:27        |                   ^
10:08:27   1526 |                   for (let i = 0; i < columns.length; i++) {
10:08:27   1527 |                     if (columns[i].visible4ExpExcel) {
10:08:27   1528 |                       excelColumns.push(columns[i]);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:1775:13:
10:08:27   1773 |           if (res.data.errcode === 0) {
10:08:27   1774 |             let url = res.data.data.content;
10:08:27 > 1775 |             console.log(url);
10:08:27        |             ^
10:08:27   1776 |             let queryString = act.dispatcherParams;
10:08:27   1777 |             let isForm = url.search("form.html") != -1; //兼容good的url的写法(后期改)
10:08:27   1778 |             let isView = url.search("view.html") != -1; //兼容good的url的写法(后期改)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:1796:13:
10:08:27   1794 |             let isExternalLink = false;
10:08:27   1795 |
10:08:27 > 1796 |             console.log("编辑流程");
10:08:27        |             ^
10:08:27   1797 |             console.log(url);
10:08:27   1798 |             if (url && url.indexOf("processHtmlTem.html") > -1) {
10:08:27   1799 |               API.softwareApplication(this.openParams.appId, {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:1797:13:
10:08:27   1795 |
10:08:27   1796 |             console.log("编辑流程");
10:08:27 > 1797 |             console.log(url);
10:08:27        |             ^
10:08:27   1798 |             if (url && url.indexOf("processHtmlTem.html") > -1) {
10:08:27   1799 |               API.softwareApplication(this.openParams.appId, {
10:08:27   1800 |                 onSucess: (res) => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected 'debugger' statement (no-debugger) at src/components/view_delegate.vue:2272:9:
10:08:27   2270 |           }
10:08:27   2271 |         }
10:08:27 > 2272 |         debugger
10:08:27        |         ^
10:08:27   2273 |         console.log(view)
10:08:27   2274 |         if (view.searchFormId != undefined) {
10:08:27   2275 |           //高级查询
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:2273:9:
10:08:27   2271 |         }
10:08:27   2272 |         debugger
10:08:27 > 2273 |         console.log(view)
10:08:27        |         ^
10:08:27   2274 |         if (view.searchFormId != undefined) {
10:08:27   2275 |           //高级查询
10:08:27   2276 |           let sfd = this.$refs.delegate.getSearchformBuildData();
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:2277:11:
10:08:27   2275 |           //高级查询
10:08:27   2276 |           let sfd = this.$refs.delegate.getSearchformBuildData();
10:08:27 > 2277 |           console.log('sfd', sfd)
10:08:27        |           ^
10:08:27   2278 |           console.log('sd', sd)
10:08:27   2279 |           sd = Object.assign(sd, sfd);//导出全部--获取高筛搜索条件sfd
10:08:27   2280 |           obj.items = sd;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:2278:11:
10:08:27   2276 |           let sfd = this.$refs.delegate.getSearchformBuildData();
10:08:27   2277 |           console.log('sfd', sfd)
10:08:27 > 2278 |           console.log('sd', sd)
10:08:27        |           ^
10:08:27   2279 |           sd = Object.assign(sd, sfd);//导出全部--获取高筛搜索条件sfd
10:08:27   2280 |           obj.items = sd;
10:08:27   2281 |         }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:2302:17:
10:08:27   2300 |                   window.clearInterval(this.task);
10:08:27   2301 |                 }
10:08:27 > 2302 |                 console.log(excelRowCount);
10:08:27        |                 ^
10:08:27   2303 |                 if (excelRowCount == 10000) {
10:08:27   2304 |                   process = 100;
10:08:27   2305 |                   this.$message({
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:2385:7:
10:08:27   2383 |
10:08:27   2384 |     onAction(act) {
10:08:27 > 2385 |       console.log(act);
10:08:27        |       ^
10:08:27   2386 |       //绑定视图的处理事件
10:08:27   2387 |       let actId = act.id;
10:08:27   2388 |       let activityType = act.type;     
10:08:27 
10:08:27 
10:08:27 error: Unexpected 'debugger' statement (no-debugger) at src/components/view_delegate.vue:2668:7:
10:08:27   2666 |         formData = { ...formData, ...this.$route.query };
10:08:27   2667 |       }
10:08:27 > 2668 |       debugger
10:08:27        |       ^
10:08:27   2669 |       let divId = act.id;
10:08:27   2670 |       let actType = act.type;
10:08:27   2671 |       
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_delegate.vue:2810:19:
10:08:27   2808 |                   let columns = this.copyColumns;
10:08:27   2809 |                   let selectAll = [];
10:08:27 > 2810 |                   console.log(columns)
10:08:27        |                   ^
10:08:27   2811 |                   for (let i = 0; i < columns.length; i++) {
10:08:27   2812 |                     if (columns[i].visible4ExpExcel) {
10:08:27   2813 |                       excelColumns.push(columns[i]);
10:08:27 
10:08:27 
10:08:27 19 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_gantt.vue:370:9:
10:08:27   368 |           }
10:08:27   369 |         }
10:08:27 > 370 |         console.log("maxTime-->",maxTime,minTime)
10:08:27       |         ^
10:08:27   371 |         let monthBetweenNum = this.getMonthBetween(minTime, maxTime);
10:08:27   372 |
10:08:27   373 | 				this.monthBetweenHeadNum = JSON.parse(JSON.stringify(monthBetweenNum));
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:282:11:
10:08:27   280 |       const lo = new T.Geolocation();
10:08:27   281 |       lo.getCurrentPosition(function (e) {
10:08:27 > 282 |           console.log("🚀 ~ fn ~ e:", e, this.getStatus())
10:08:27       |           ^
10:08:27   283 |           if (this.getStatus() == 0){
10:08:27   284 |             console.log("获取定位坐标:"+e.lnglat.lat + "," + e.lnglat.lng)
10:08:27   285 |           }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:284:13:
10:08:27   282 |           console.log("🚀 ~ fn ~ e:", e, this.getStatus())
10:08:27   283 |           if (this.getStatus() == 0){
10:08:27 > 284 |             console.log("获取定位坐标:"+e.lnglat.lat + "," + e.lnglat.lng)
10:08:27       |             ^
10:08:27   285 |           }
10:08:27   286 |           if(this.getStatus() == 1){
10:08:27   287 |             console.log("获取定位坐标:"+e.lnglat.lat + "," + e.lnglat.lng)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:287:13:
10:08:27   285 |           }
10:08:27   286 |           if(this.getStatus() == 1){
10:08:27 > 287 |             console.log("获取定位坐标:"+e.lnglat.lat + "," + e.lnglat.lng)
10:08:27       |             ^
10:08:27   288 |           }
10:08:27   289 |       });
10:08:27   290 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:352:13:
10:08:27   350 |           ls.search(currentLocation);
10:08:27   351 |           ls.setSearchCompleteCallback(function (rs) {
10:08:27 > 352 |             console.log(rs);
10:08:27       |             ^
10:08:27   353 |             if (rs.Hr) {
10:08:27   354 |               let point = rs.Hr[0].point;
10:08:27   355 |               that.center = {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:363:9:
10:08:27   361 |         }
10:08:27   362 |
10:08:27 > 363 |         console.log(
10:08:27       |         ^
10:08:27   364 |           this.openParams.appId,
10:08:27   365 |           this.view.id,
10:08:27   366 |           "_____________________"
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:381:15:
10:08:27   379 |               // let myGeo = new BMap.Geocoder();
10:08:27   380 |               let view = this.view;
10:08:27 > 381 |               console.log(
10:08:27       |               ^
10:08:27   382 |                 view,
10:08:27   383 |                 viewData,
10:08:27   384 |                 "###################################"
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:409:17:
10:08:27   407 |                 }
10:08:27   408 |               } catch (error) {
10:08:27 > 409 |                 console.log(error);
10:08:27       |                 ^
10:08:27   410 |               }
10:08:27   411 |
10:08:27   412 |               if(this.mapType === 'tianditu') {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:419:21:
10:08:27   417 |                   setTimeout(() => {
10:08:27   418 |                     this.viewDataList = viewData;
10:08:27 > 419 |                     console.log(
10:08:27       |                     ^
10:08:27   420 |                       this.viewDataList,
10:08:27   421 |                       "###############%@#%@#%@#%@#%#@"
10:08:27   422 |                     );
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:557:7:
10:08:27   555 |     },
10:08:27   556 |     zoomEnd(e) {
10:08:27 > 557 |       console.log(e);
10:08:27       |       ^
10:08:27   558 |       this.zoom = e.target.getZoom();
10:08:27   559 |     },
10:08:27   560 |     //右键放大
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:570:7:
10:08:27   568 |         this.zoom = 19;
10:08:27   569 |       }
10:08:27 > 570 |       console.log(this.zoom);
10:08:27       |       ^
10:08:27   571 |     },
10:08:27   572 |     //右键缩小
10:08:27   573 |     reduceMap(e) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:591:7:
10:08:27   589 |       //有问题,隐藏
10:08:27   590 |       this.markerHidden = false;
10:08:27 > 591 |       console.log(BMap);
10:08:27       |       ^
10:08:27   592 |       console.log(map);
10:08:27   593 |     },
10:08:27   594 |     infoWindowClose() {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:592:7:
10:08:27   590 |       this.markerHidden = false;
10:08:27   591 |       console.log(BMap);
10:08:27 > 592 |       console.log(map);
10:08:27       |       ^
10:08:27   593 |     },
10:08:27   594 |     infoWindowClose() {
10:08:27   595 |       this.currentShowId = "";
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:624:7:
10:08:27   622 |     searchBox(e) {
10:08:27   623 |       this.isActive = !this.isActive;
10:08:27 > 624 |       console.log(e);
10:08:27       |       ^
10:08:27   625 |     },
10:08:27   626 |     Delete(id) {
10:08:27   627 |       let that = this;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/view_mapview.vue:628:7:
10:08:27   626 |     Delete(id) {
10:08:27   627 |       let that = this;
10:08:27 > 628 |       console.log("删除", id);
10:08:27       |       ^
10:08:27   629 |       let arr = [];
10:08:27   630 |       arr.push(id);
10:08:27   631 |       this.$api.batchRemoveDocuments(this.openParams.appId, arr, {
10:08:27 
10:08:27 
10:08:27 14 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/components/view_treeview.vue:716:17:
10:08:27   714 |                 });
10:08:27   715 |                 this.arrNodes = nodes
10:08:27 > 716 |                 console.log("this.arrNodes-1--->",this.arrNodes)
10:08:27       |                 ^
10:08:27   717 |                 resolve(this.arrNodes);
10:08:27   718 |                 if(this.arrNodes.length){//展开第一个节点的二级菜单
10:08:27   719 |                   this.arrNodes.forEach((item,index)=>{
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/expandedComponents/view_multi_level_column.vue:307:9:
10:08:27   305 |           initialIndex: i,
10:08:27   306 |         };
10:08:27 > 307 |         console.log("params--2->",params)
10:08:27       |         ^
10:08:27   308 |         this.$parent.setDialogStatus(params);
10:08:27   309 |       }
10:08:27   310 |     },
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/views/About.vue:49:9:
10:08:27   47 |       
10:08:27   48 |       if (event.data.type === 'CLOSE_IFRAME') {
10:08:27 > 49 |         console.log('收到关闭指令和数据:', event.data.payload);
10:08:27      |         ^
10:08:27   50 |         this.returnData = event.data.payload;
10:08:27   51 |         this.dialogVisible = false; // 关闭弹窗
10:08:27   52 |         
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:62:5:
10:08:27   60 |
10:08:27   61 |   mounted() {
10:08:27 > 62 |     console.log('this.$route.query', this.$route.query);
10:08:27      |     ^
10:08:27   63 |     let query = this.$route.query;
10:08:27   64 |     console.log('options', query);
10:08:27   65 |     this.trainCertificateInfo = query;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:64:5:
10:08:27   62 |     console.log('this.$route.query', this.$route.query);
10:08:27   63 |     let query = this.$route.query;
10:08:27 > 64 |     console.log('options', query);
10:08:27      |     ^
10:08:27   65 |     this.trainCertificateInfo = query;
10:08:27   66 |   },
10:08:27   67 |   methods: {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:142:11:
10:08:27   140 |         try {
10:08:27   141 |           await this.preloadImage(backgroundImageUrl);
10:08:27 > 142 |           console.log("背景图片加载成功:", backgroundImageUrl);
10:08:27       |           ^
10:08:27   143 |           
10:08:27   144 |           // 预加载头像图片
10:08:27   145 |           if (this.trainCertificateInfo.certificatePhoto) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:147:13:
10:08:27   145 |           if (this.trainCertificateInfo.certificatePhoto) {
10:08:27   146 |             await this.preloadImage(this.trainCertificateInfo.certificatePhoto);
10:08:27 > 147 |             console.log("头像图片加载成功:", this.trainCertificateInfo.certificatePhoto);
10:08:27       |             ^
10:08:27   148 |           }
10:08:27   149 |         } catch (err) {
10:08:27   150 |           console.error("图片加载失败:", err);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:150:11:
10:08:27   148 |           }
10:08:27   149 |         } catch (err) {
10:08:27 > 150 |           console.error("图片加载失败:", err);
10:08:27       |           ^
10:08:27   151 |         }
10:08:27   152 |
10:08:27   153 |         // 创建一个新的容器,用于生成PDF
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:289:9:
10:08:27   287 |
10:08:27   288 |       } catch (error) {
10:08:27 > 289 |         console.error('下载证书失败:', error);
10:08:27       |         ^
10:08:27   290 |         alert('下载证书失败,请稍后重试。错误详情: ' + error.message);
10:08:27   291 |       } finally {
10:08:27   292 |         this.isDownloading = false;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:322:11:
10:08:27   320 |         try {
10:08:27   321 |           await this.preloadImage(backgroundImageUrl);
10:08:27 > 322 |           console.log("背景图片加载成功:", backgroundImageUrl);
10:08:27       |           ^
10:08:27   323 |           
10:08:27   324 |           // 预加载头像图片
10:08:27   325 |           if (this.trainCertificateInfo.certificatePhoto) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:327:13:
10:08:27   325 |           if (this.trainCertificateInfo.certificatePhoto) {
10:08:27   326 |             await this.preloadImage(this.trainCertificateInfo.certificatePhoto);
10:08:27 > 327 |             console.log("头像图片加载成功:", this.trainCertificateInfo.certificatePhoto);
10:08:27       |             ^
10:08:27   328 |           }
10:08:27   329 |         } catch (err) {
10:08:27   330 |           console.error("图片加载失败:", err);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:330:11:
10:08:27   328 |           }
10:08:27   329 |         } catch (err) {
10:08:27 > 330 |           console.error("图片加载失败:", err);
10:08:27       |           ^
10:08:27   331 |         }
10:08:27   332 |
10:08:27   333 |         // 创建一个新的容器,用于生成图片
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/Certificate.vue:440:9:
10:08:27   438 |
10:08:27   439 |       } catch (error) {
10:08:27 > 440 |         console.error('保存图片失败:', error);
10:08:27       |         ^
10:08:27   441 |         alert('保存图片失败,请稍后重试。错误详情: ' + error.message);
10:08:27   442 |       } finally {
10:08:27   443 |         this.isDownloading = false;
10:08:27 
10:08:27 
10:08:27 10 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:177:9:
10:08:27   175 |     clickRail(evt, feature) {
10:08:27   176 |       if (feature) {
10:08:27 > 177 |         console.log(feature);
10:08:27       |         ^
10:08:27   178 |         const rails = feature.get("features");
10:08:27   179 |         if (rails && rails.length === 1) {
10:08:27   180 |           this.showRailInfoFromList = false;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:183:11:
10:08:27   181 |           const rail = rails[0];
10:08:27   182 |           const info = rail.get("props");
10:08:27 > 183 |           console.log("clickRailInfo", info);
10:08:27       |           ^
10:08:27   184 |           this.showRailInfo({ info });
10:08:27   185 |         } else {
10:08:27   186 |           if (feature.get("props")) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:189:13:
10:08:27   187 |             this.showRailInfoFromList = false;
10:08:27   188 |             const info = feature.get("props");
10:08:27 > 189 |             console.log("clickRailInfo", info);
10:08:27       |             ^
10:08:27   190 |             this.showRailInfo({ info });
10:08:27   191 |           } else {
10:08:27   192 |             // 如果是聚合点就下钻一级
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:202:7:
10:08:27   200 |     
10:08:27   201 |     onRailLayerChange(features) {
10:08:27 > 202 |       console.log(features);
10:08:27       |       ^
10:08:27   203 |       if (features && features.length === 1) {
10:08:27   204 |         const feature = features[0];
10:08:27   205 |         const type = feature.get("type");
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:207:11:
10:08:27   205 |         const type = feature.get("type");
10:08:27   206 |         if (type && !this.showRailInfoFromList) {
10:08:27 > 207 |           console.log(type);
10:08:27       |           ^
10:08:27   208 |           if (type === "polygon" || type === "Polygon") {
10:08:27   209 |             const geometry = feature.get("geometry");
10:08:27   210 |             // const view = this.$refs.map.map.getView();
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:273:7:
10:08:27   271 |       this.electronicFenceInfo = JSON.parse(JSON.stringify(this.info));
10:08:27   272 |       this.electronicFenceInfo = {};
10:08:27 > 273 |       console.log(this.station);
10:08:27       |       ^
10:08:27   274 |       this.$nextTick(() => {
10:08:27   275 |         this.$refs.electronicFenceEdit.updateStation({
10:08:27   276 |           stationName: this.station.name,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:288:7:
10:08:27   286 |      */
10:08:27   287 |     async electronicFenceEditFn({ data }) {
10:08:27 > 288 |       console.log("编辑某条电子围栏", data);
10:08:27       |       ^
10:08:27   289 |       this.showRailInfoFromList = true;
10:08:27   290 |       // this.map.clearMap();
10:08:27   291 |       this.isElectronicFenceDialog = false;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:296:7:
10:08:27   294 |       const rail = await getRailDetailAccess(data.id);
10:08:27   295 |       this.info = { ...rail, ...this.electronicFenceInfo }; // 弹框信息
10:08:27 > 296 |       console.log(this.info);
10:08:27       |       ^
10:08:27   297 |       this.isElectronicFenceEditDialog = true;
10:08:27   298 |       // 显示可编辑围栏区域
10:08:27   299 |       this.showMapEditor(data);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:302:7:
10:08:27   300 |     },
10:08:27   301 |     delElectronic(data) {
10:08:27 > 302 |       console.log(data);
10:08:27       |       ^
10:08:27   303 |       let params = {
10:08:27   304 |         id: data.data.id,
10:08:27   305 |       };
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:308:11:
10:08:27   306 |       deleteRailAccess(params)
10:08:27   307 |         .then((res) => {
10:08:27 > 308 |           console.log("deleteRailAccess", res);
10:08:27       |           ^
10:08:27   309 |           this.$refs["electronicFence"].getRails();
10:08:27   310 |           this.$message({
10:08:27   311 |             message: "删除成功",
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:316:11:
10:08:27   314 |         })
10:08:27   315 |         .catch((err) => {
10:08:27 > 316 |           console.log(err);
10:08:27       |           ^
10:08:27   317 |         });
10:08:27   318 |     },
10:08:27   319 |  
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:331:11:
10:08:27   329 |       })
10:08:27   330 |         .then((res) => {
10:08:27 > 331 |           console.log("searchRail", res);
10:08:27       |           ^
10:08:27   332 |           if (res) {
10:08:27   333 |             this.electronicFenceData = res;
10:08:27   334 |           } else {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:359:7:
10:08:27   357 |
10:08:27   358 |     showMapEditor({ shapeType, shapedLocation }) {
10:08:27 > 359 |       console.log('showMapEditor', shapeType, shapedLocation);
10:08:27       |       ^
10:08:27   360 |       switch (shapeType) {
10:08:27   361 |         case "Circle": // 圆
10:08:27   362 |           this.showCircleEditor(shapedLocation);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:374:7:
10:08:27   372 |     showPolygonEditor({ geos }) {
10:08:27   373 |       let list = geos.map((item) => [item.lon, item.lat]);
10:08:27 > 374 |       console.log(list);
10:08:27       |       ^
10:08:27   375 |       this.layers.railLayer.features = [
10:08:27   376 |         {
10:08:27   377 |           type: "polygon",
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:388:7:
10:08:27   386 |         center: list[0],
10:08:27   387 |       });
10:08:27 > 388 |       console.log(this.layers.railLayer.features);
10:08:27       |       ^
10:08:27   389 |     },
10:08:27   390 |     showCribEditor({ geos }) {
10:08:27   391 |       let list = geos.map((item) => [item.lon, item.lat]);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:392:7:
10:08:27   390 |     showCribEditor({ geos }) {
10:08:27   391 |       let list = geos.map((item) => [item.lon, item.lat]);
10:08:27 > 392 |       console.log(list);
10:08:27       |       ^
10:08:27   393 |       this.layers.railLayer.features = [
10:08:27   394 |         {
10:08:27   395 |           type: "polygon",
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:406:7:
10:08:27   404 |         center: list[0],
10:08:27   405 |       });
10:08:27 > 406 |       console.log(this.layers.railLayer.features);
10:08:27       |       ^
10:08:27   407 |     },
10:08:27   408 |     showCircleEditor({ geos, radius }) {
10:08:27   409 |       const [center] = geos.map((item) => [item.lon, item.lat]);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:410:7:
10:08:27   408 |     showCircleEditor({ geos, radius }) {
10:08:27   409 |       const [center] = geos.map((item) => [item.lon, item.lat]);
10:08:27 > 410 |       console.log(center);
10:08:27       |       ^
10:08:27   411 |       this.layers.railLayer.features = [
10:08:27   412 |         {
10:08:27   413 |           type: "Circle",
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:427:7:
10:08:27   425 |     },
10:08:27   426 |     drawRail(type) {
10:08:27 > 427 |       console.log("drawRail", type);
10:08:27       |       ^
10:08:27   428 |       // this.layers.railLayer.features = []
10:08:27   429 |       this.drawType = type;
10:08:27   430 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:433:7:
10:08:27   431 |     drawend(evt, map) {
10:08:27   432 |       const { feature } = evt;
10:08:27 > 433 |       console.log(this.drawType);
10:08:27       |       ^
10:08:27   434 |       this.layers.railLayer.features = []; // 清空上一个电子围栏
10:08:27   435 |       const geometry = feature.getGeometry();
10:08:27   436 |       if (this.drawType === "Rectangle" || this.drawType === "Polygon") {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:441:9:
10:08:27   439 |           return utils.convertCoordinate(coordinate, "84-gd");
10:08:27   440 |         });
10:08:27 > 441 |         console.log(coordinates);
10:08:27       |         ^
10:08:27   442 |         console.log(convertCoordinates);
10:08:27   443 |         const params = {
10:08:27   444 |           geos: convertCoordinates.map((item) => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:442:9:
10:08:27   440 |         });
10:08:27   441 |         console.log(coordinates);
10:08:27 > 442 |         console.log(convertCoordinates);
10:08:27       |         ^
10:08:27   443 |         const params = {
10:08:27   444 |           geos: convertCoordinates.map((item) => {
10:08:27   445 |             return {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:451:9:
10:08:27   449 |           }),
10:08:27   450 |         };
10:08:27 > 451 |         console.log(params);
10:08:27       |         ^
10:08:27   452 |         this.$refs.electronicFenceEdit.updateGeometry(params);
10:08:27   453 |       } else if (this.drawType === "Circle") {
10:08:27   454 |         const center = geometry.getCenter();
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:455:9:
10:08:27   453 |       } else if (this.drawType === "Circle") {
10:08:27   454 |         const center = geometry.getCenter();
10:08:27 > 455 |         console.log(center);
10:08:27       |         ^
10:08:27   456 |         const geoRadius = geometry.getRadius(); // 半径
10:08:27   457 |         const metersPerUnit = map.getView().getProjection().getMetersPerUnit(); // 半径以米为单位
10:08:27   458 |         const radius = (geoRadius * metersPerUnit).toFixed(2);
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:459:9:
10:08:27   457 |         const metersPerUnit = map.getView().getProjection().getMetersPerUnit(); // 半径以米为单位
10:08:27   458 |         const radius = (geoRadius * metersPerUnit).toFixed(2);
10:08:27 > 459 |         console.log(radius);
10:08:27       |         ^
10:08:27   460 |         const convertCoordinates = utils.convertCoordinate(center, "84-gd");
10:08:27   461 |         const params = {
10:08:27   462 |           geos: [
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:470:9:
10:08:27   468 |           radius,
10:08:27   469 |         };
10:08:27 > 470 |         console.log(params);
10:08:27       |         ^
10:08:27   471 |         this.$refs.electronicFenceEdit.updateGeometry(params);
10:08:27   472 |       }
10:08:27   473 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:482:8:
10:08:27   480 |       onSucess: (res) => {
10:08:27   481 |         let list = res.data.data.map(item => [item.longitude, item.latitude]);
10:08:27 > 482 |        console.log('list',list)
10:08:27       |        ^
10:08:27   483 |         this.layers.stationLayer.features = [
10:08:27   484 |           {
10:08:27   485 |             type: "polyline",
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:517:8:
10:08:27   515 |         // let list = res.data.data.map(item => [item.longitude, item.latitude]);
10:08:27   516 |          const [center] = res.data.data.map((item) => [item.longitude, item.latitude]);
10:08:27 > 517 |        console.log('list',list)
10:08:27       |        ^
10:08:27   518 |         // this.layers.stationLayer.features = [
10:08:27   519 |         //   {
10:08:27   520 |         //     type: "polyline",
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/ElectronicFence.vue:546:5:
10:08:27   544 |   mounted() {
10:08:27   545 |     let query = this.$route.query;
10:08:27 > 546 |     console.log('query',query)
10:08:27       |     ^
10:08:27   547 |     if (query && query.pathId) {
10:08:27   548 |       this.showFenceEdit = false
10:08:27   549 |       this.initPosition(query.pathId)
10:08:27 
10:08:27 
10:08:27 29 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:409:13:
10:08:27   407 |             this.activeHome()
10:08:27   408 |             this.applist()//查询左边下拉应用列表
10:08:27 > 409 |             console.log(this.$refs.mainNavBar.data)
10:08:27       |             ^
10:08:27   410 |             if (state.defaultFirst == 1) {
10:08:27   411 |               this.$refs.mainNavBar.defaultClickFirst(this.$refs.mainNavBar.data)
10:08:27   412 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:426:7:
10:08:27   424 |         currentAppName = this.$store.getters.currentAppName;
10:08:27   425 |       }
10:08:27 > 426 |       console.log(currentAppName)
10:08:27       |       ^
10:08:27   427 |       return currentAppName;
10:08:27   428 |     },
10:08:27   429 |     showInstance() {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:538:11:
10:08:27   536 |           }
10:08:27   537 |           this.otherNotice = arr;
10:08:27 > 538 |           console.log("this.otherNotice---->", this.otherNotice)
10:08:27       |           ^
10:08:27   539 |         }
10:08:27   540 |       }
10:08:27   541 |     )
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:545:5:
10:08:27   543 |     this.myprofile();
10:08:27   544 |     
10:08:27 > 545 |     console.log('organizationLevels',organizationLevels)//obpm.config.js定义全局变量organizationLevels
10:08:27       |     ^
10:08:27   546 |     if(organizationLevels.indexOf('Premium')>-1){
10:08:27   547 |       this.baseServiceOptions=this.$root.roleLevelsPermissionData&&this.$root.roleLevelsPermissionData.baseServiceOptions
10:08:27   548 |       console.log('this.baseServiceOptions',this.baseServiceOptions)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:548:7:
10:08:27   546 |     if(organizationLevels.indexOf('Premium')>-1){
10:08:27   547 |       this.baseServiceOptions=this.$root.roleLevelsPermissionData&&this.$root.roleLevelsPermissionData.baseServiceOptions
10:08:27 > 548 |       console.log('this.baseServiceOptions',this.baseServiceOptions)
10:08:27       |       ^
10:08:27   549 |     }
10:08:27   550 |
10:08:27   551 |   },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:625:7:
10:08:27   623 |     // 检查并显示密码修改提示
10:08:27   624 |     checkPasswordUpdateNotice() {
10:08:27 > 625 |       console.log('this.updatePasswordType', this.updatePasswordType, this.updatePasswordMsg)
10:08:27       |       ^
10:08:27   626 |       if (this.updatePasswordType && this.updatePasswordMsg) {
10:08:27   627 |         this.updatePwdDialogVisible = true
10:08:27   628 |         if (this.updatePasswordType === '2') {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:652:11:
10:08:27   650 |       this.$api.isSupervisedApi(domainId, {
10:08:27   651 |         onSucess: res => {
10:08:27 > 652 |           console.log('res11', res)
10:08:27       |           ^
10:08:27   653 |           if (res.data.data) {
10:08:27   654 |             console.log('res.data.data监管归属', res.data.data)
10:08:27   655 |             this.isSupervisedInfoCompletedData = res.data.data
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:654:13:
10:08:27   652 |           console.log('res11', res)
10:08:27   653 |           if (res.data.data) {
10:08:27 > 654 |             console.log('res.data.data监管归属', res.data.data)
10:08:27       |             ^
10:08:27   655 |             this.isSupervisedInfoCompletedData = res.data.data
10:08:27   656 |             console.log(this.isSupervisedInfoCompletedData)
10:08:27   657 |             if (res.data.data.superviseCompleted && res.data.data.infoCompleted) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:656:13:
10:08:27   654 |             console.log('res.data.data监管归属', res.data.data)
10:08:27   655 |             this.isSupervisedInfoCompletedData = res.data.data
10:08:27 > 656 |             console.log(this.isSupervisedInfoCompletedData)
10:08:27       |             ^
10:08:27   657 |             if (res.data.data.superviseCompleted && res.data.data.infoCompleted) {
10:08:27   658 |               this.supervisionDialogVisible = false;//有填写监管归属,隐藏监管归属弹窗
10:08:27   659 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:668:11:
10:08:27   666 |         onError: erro => {
10:08:27   667 |           this.supervisionDialogVisible = false;//错误,隐藏弹窗,默认让客户可以用
10:08:27 > 668 |           console.log('erro11', erro)
10:08:27       |           ^
10:08:27   669 |         }
10:08:27   670 |       })
10:08:27   671 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:696:13:
10:08:27   694 |         {
10:08:27   695 |           onSucess: res => {
10:08:27 > 696 |             console.log(res.data.data.placeOfRegister)
10:08:27       |             ^
10:08:27   697 |             if (res.data.data.placeOfRegister && res.data.data.placeOfRegister.province.name.indexOf('北京') > -1) {
10:08:27   698 |               this.systemNoticeDialogVisible = true
10:08:27   699 |               this.placeOfRegister_bjFlag = true
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:733:11:
10:08:27   731 |       this.$api.getEnterpriseUserinfo(localStorage.getItem("domainId"), {
10:08:27   732 |         onSucess: res => {
10:08:27 > 733 |           console.log('res11',res)
10:08:27       |           ^
10:08:27   734 |           if (res.data.status == 200) {
10:08:27   735 |             let isValidLonlat=res.data.data.isValidLonlat;//判断企业是否完善经纬度,没有完善强提醒
10:08:27   736 |             console.log('this.domainAdmin',this.domainAdmin)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:736:13:
10:08:27   734 |           if (res.data.status == 200) {
10:08:27   735 |             let isValidLonlat=res.data.data.isValidLonlat;//判断企业是否完善经纬度,没有完善强提醒
10:08:27 > 736 |             console.log('this.domainAdmin',this.domainAdmin)
10:08:27       |             ^
10:08:27   737 |             if(this.domainAdmin&&isValidLonlat&&this.network){//是组织管理员以及没有完善经纬度--强提醒
10:08:27   738 |                 this.domainLonLatPopDialogVisible=true
10:08:27   739 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1001:17:
10:08:27    999 |             {
10:08:27   1000 |               onSucess: res => {
10:08:27 > 1001 |                 console.log('res', res)
10:08:27        |                 ^
10:08:27   1002 |                 let shopToken = res.data && res.data.accessToken || ''
10:08:27   1003 |                 resolve(shopToken)
10:08:27   1004 |               }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1045:17:
10:08:27   1043 |             {
10:08:27   1044 |               onSucess: res => {
10:08:27 > 1045 |                 console.log('res', res)
10:08:27        |                 ^
10:08:27   1046 |                 let shopToken = res.data && res.data.accessToken || ''
10:08:27   1047 |                 resolve(shopToken)
10:08:27   1048 |               }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1096:13:
10:08:27   1094 |         onSucess: response => {
10:08:27   1095 |           if (response.data && response.data.errmsg == "ok") {
10:08:27 > 1096 |             console.log(response.data)
10:08:27        |             ^
10:08:27   1097 |             if (response.data.data.data.length) {
10:08:27   1098 |               let arr = []
10:08:27   1099 |               response.data.data.data.forEach((item, index) => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1115:15:
10:08:27   1113 |
10:08:27   1114 |               })
10:08:27 > 1115 |               console.log(arr)
10:08:27        |               ^
10:08:27   1116 |               arr.sort((a, b) => { return Number(a.cateSort) - Number(b.cateSort) }) //分类排序cateSort 
10:08:27   1117 |
10:08:27   1118 |               const titleMap = {}
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1162:15:
10:08:27   1160 |                 }
10:08:27   1161 |               }
10:08:27 > 1162 |               console.log(arr3)
10:08:27        |               ^
10:08:27   1163 |               this.applistArr = arr3
10:08:27   1164 |
10:08:27   1165 |             }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1203:13:
10:08:27   1201 |         onSucess: res => {
10:08:27   1202 |           if (res.status == 200) {
10:08:27 > 1203 |             console.log("res--->", res.status);
10:08:27        |             ^
10:08:27   1204 |           }
10:08:27   1205 |         }
10:08:27   1206 |       })
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1306:11:
10:08:27   1304 |         },
10:08:27   1305 |         onError: error => {
10:08:27 > 1306 |           console.log(error);
10:08:27        |           ^
10:08:27   1307 |         }
10:08:27   1308 |       });
10:08:27   1309 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1424:7:
10:08:27   1422 |
10:08:27   1423 |     closeTab: function (tab, tabindex) {//关闭当前选项卡,选中前一个选项卡
10:08:27 > 1424 |       console.log(tab)
10:08:27        |       ^
10:08:27   1425 |       console.log(tabindex)
10:08:27   1426 |       if (this.$store.state.searchDataStore.length) {
10:08:27   1427 |         this.$store.state.searchDataStore.forEach((item, index) => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1425:7:
10:08:27   1423 |     closeTab: function (tab, tabindex) {//关闭当前选项卡,选中前一个选项卡
10:08:27   1424 |       console.log(tab)
10:08:27 > 1425 |       console.log(tabindex)
10:08:27        |       ^
10:08:27   1426 |       if (this.$store.state.searchDataStore.length) {
10:08:27   1427 |         this.$store.state.searchDataStore.forEach((item, index) => {
10:08:27   1428 |           if (item.appId == tab.appId && item.viewId == tab.actionContent) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1440:7:
10:08:27   1438 |         })
10:08:27   1439 |       }
10:08:27 > 1440 |       console.log(this.$store.state.searchDataStore)
10:08:27        |       ^
10:08:27   1441 |       let tabs = this.tabs;
10:08:27   1442 |       if (tabindex >= 0) { //点击X关闭
10:08:27   1443 |         console.log(JSON.stringify(this.tabs))
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1443:9:
10:08:27   1441 |       let tabs = this.tabs;
10:08:27   1442 |       if (tabindex >= 0) { //点击X关闭
10:08:27 > 1443 |         console.log(JSON.stringify(this.tabs))
10:08:27        |         ^
10:08:27   1444 |         tabs.splice(tabindex, 1);
10:08:27   1445 |         if (tab.active) {
10:08:27   1446 |           if (tabs.length > 0 && ((tabs.length - 1) >= tabindex)) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/views/HomeBKT.vue:1519:13:
10:08:27   1517 |           onSucess: res => {
10:08:27   1518 |             this.isOrganizationPromoter = res.data.data.isOrganizationPromoter;
10:08:27 > 1519 |             console.info('promoter', this.isOrganizationPromoter);
10:08:27        |             ^
10:08:27   1520 |           }
10:08:27   1521 |         })
10:08:27   1522 |     }
10:08:27 
10:08:27 
10:08:27 25 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/views/Main.vue:423:11:
10:08:27   421 |         },
10:08:27   422 |         onError: (error) => {
10:08:27 > 423 |           console.log(error);
10:08:27       |           ^
10:08:27   424 |         },
10:08:27   425 |       });
10:08:27   426 |     },
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/views/main_pending.vue:677:9:
10:08:27   675 |     activate() {
10:08:27   676 |       if (this.backlogRight.length === 0) {
10:08:27 > 677 |         console.log("--->0");
10:08:27       |         ^
10:08:27   678 |       }
10:08:27   679 |     },
10:08:27   680 |     //点击左侧导航触发待办事项
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected console statement (no-console) at src/views/mixin_LockScreen.vue:85:29:
10:08:27   83 |                             }
10:08:27   84 |                         }, catch: error => {
10:08:27 > 85 |                             console.log('error1', error)
10:08:27      |                             ^
10:08:27   86 |                         }
10:08:27   87 |
10:08:27   88 |
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected side effect in "activeColor" computed property (vue/no-side-effects-in-computed-properties) at src/components/activity.vue:103:15:
10:08:27   101 |         case 10: //返回
10:08:27   102 |           if(this.$route.query.isPopup == '1') {
10:08:27 > 103 |               this.isShowBtn = false;
10:08:27       |               ^
10:08:27   104 |               return
10:08:27   105 |           }
10:08:27   106 |           data = {
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "activeColor" computed property (vue/no-side-effects-in-computed-properties) at src/components/activity.vue:357:11:
10:08:27   355 |           return data;
10:08:27   356 |         case 0: //流程处理在流程的表单权限里设置了隐藏,type返回0
10:08:27 > 357 |           this.isShowBtn = false
10:08:27       |           ^
10:08:27   358 |         default:
10:08:27   359 |           break;
10:08:27   360 |       }
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_tab.vue:323:7:
10:08:27   321 |       }
10:08:27   322 |       // this.tabWidth = document.documentElement.clientWidth - 327;
10:08:27 > 323 |       this.tabWidth = document.documentElement.clientWidth - 0;
10:08:27       |       ^
10:08:27   324 |       return this.setField(formData);
10:08:27   325 |       //return this.$parent.findField(this.id);
10:08:27   326 |     },
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/o_tab.vue:475:7:
10:08:27   473 |
10:08:27   474 |     handleChange(val) {
10:08:27 > 475 |       console.log(val);
10:08:27       |       ^
10:08:27   476 |     },
10:08:27   477 |
10:08:27   478 |     handleClick(tab) {
10:08:27 
10:08:27 
10:08:27 2 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:84:11:
10:08:27   82 |       if (formData.divWidth) {
10:08:27   83 |         if (formData.divWidth.indexOf("px") > -1) {
10:08:27 > 84 |           this.dialogWidth = formData.divWidth;
10:08:27      |           ^
10:08:27   85 |         } else if (formData.divWidth.indexOf("%") > -1) {
10:08:27   86 |           this.dialogWidth = formData.divWidth;
10:08:27   87 |         } else {
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:86:11:
10:08:27   84 |           this.dialogWidth = formData.divWidth;
10:08:27   85 |         } else if (formData.divWidth.indexOf("%") > -1) {
10:08:27 > 86 |           this.dialogWidth = formData.divWidth;
10:08:27      |           ^
10:08:27   87 |         } else {
10:08:27   88 |           this.dialogWidth = formData.divWidth + "px";
10:08:27   89 |         }
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:88:11:
10:08:27   86 |           this.dialogWidth = formData.divWidth;
10:08:27   87 |         } else {
10:08:27 > 88 |           this.dialogWidth = formData.divWidth + "px";
10:08:27      |           ^
10:08:27   89 |         }
10:08:27   90 |       }
10:08:27   91 |       if (formData.divHeight) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:96:11:
10:08:27   94 |         if (formData.divHeight.indexOf("px") > -1) {
10:08:27   95 |           h = formData.divHeight.split("px")[0];
10:08:27 > 96 |           this.dialogHidth = parseInt(h) - 100 + "px";
10:08:27      |           ^
10:08:27   97 |         } else if (formData.divHeight.indexOf("%") > -1) {
10:08:27   98 |           h = formData.divHeight;
10:08:27   99 |           let num = h.split("%")[0];
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:101:11:
10:08:27    99 |           let num = h.split("%")[0];
10:08:27   100 |           let he = (screen * parseInt(num)) / 100;
10:08:27 > 101 |           this.dialogHidth = he - 124 + "px";
10:08:27       |           ^
10:08:27   102 |         } else {
10:08:27   103 |           let t = screen * 0.15;
10:08:27   104 |           //let t = 1 - (formData.divHeight / screen);
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:106:13:
10:08:27   104 |           //let t = 1 - (formData.divHeight / screen);
10:08:27   105 |           if (parseInt(formData.divHeight) >= screen) {
10:08:27 > 106 |             this.dialogTop = "1%";
10:08:27       |             ^
10:08:27   107 |           } else {
10:08:27   108 |             let hd = screen - parseInt(formData.divHeight);
10:08:27   109 |             if (hd < t) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:112:17:
10:08:27   110 |               let d = Math.ceil(hd / t);
10:08:27   111 |               if (d >= 15) {
10:08:27 > 112 |                 this.dialogTop = "15%";
10:08:27       |                 ^
10:08:27   113 |               } else {
10:08:27   114 |                 this.dialogTop = d + "%";
10:08:27   115 |               }
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:114:17:
10:08:27   112 |                 this.dialogTop = "15%";
10:08:27   113 |               } else {
10:08:27 > 114 |                 this.dialogTop = d + "%";
10:08:27       |                 ^
10:08:27   115 |               }
10:08:27   116 |             }
10:08:27   117 |           }
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:118:11:
10:08:27   116 |             }
10:08:27   117 |           }
10:08:27 > 118 |           this.dialogHidth = parseInt(formData.divHeight) - 124 + "px";
10:08:27       |           ^
10:08:27   119 |         }
10:08:27   120 |       } else {
10:08:27   121 |         let screen = document.documentElement.clientHeight;
10:08:27 
10:08:27 
10:08:27 error: Unexpected side effect in "field" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_view_dialog.vue:122:9:
10:08:27   120 |       } else {
10:08:27   121 |         let screen = document.documentElement.clientHeight;
10:08:27 > 122 |         this.dialogHidth = screen / 2 + 24 + "px";
10:08:27       |         ^
10:08:27   123 |       }
10:08:27   124 |
10:08:27   125 |       formData.obpmFilePath = obpmConfig.obpmFilePath;
10:08:27 
10:08:27 
10:08:27 10 errors found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected side effect in "options" computed property (vue/no-side-effects-in-computed-properties) at src/components/o_select_about.vue:137:7:
10:08:27   135 |         });
10:08:27   136 |       });
10:08:27 > 137 |       this.selectData = selectData;
10:08:27       |       ^
10:08:27   138 |       return data;
10:08:27   139 |     }
10:08:27   140 |     
10:08:27 
10:08:27 
10:08:27 1 error found.
10:08:27 
10:08:27 Module Warning (from ./node_modules/eslint-loader/index.js):
10:08:27 error: Unexpected side effect in "template" computed property (vue/no-side-effects-in-computed-properties) at src/components/form_normalform.vue:378:11:
10:08:27   376 |
10:08:27   377 |         if (!data.formTemplate.template) {
10:08:27 > 378 |           this.isShowFormActivity = false;
10:08:27       |           ^
10:08:27   379 |           return {
10:08:27   380 |             components: { authority },
10:08:27   381 |             template: "<div><authority /></div>",
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:433:7:
10:08:27   431 |     let that=this;
10:08:27   432 |     window.addEventListener('message',function(e){//监听弹窗关闭-bcx
10:08:27 > 433 |       console.log('e',e)
10:08:27       |       ^
10:08:27   434 |       if(e.data){
10:08:27   435 |          that.jumpPopup=false
10:08:27   436 |       }      
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:448:7:
10:08:27   446 |     // 处理include-control 自动增大逻辑
10:08:27   447 |     handleIncludeControlBug() {
10:08:27 > 448 |       console.log('触发了')
10:08:27       |       ^
10:08:27   449 |       this.timeIds.forEach(id => {
10:08:27   450 |         clearInterval(id)
10:08:27   451 |       })
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:463:7:
10:08:27   461 |     },
10:08:27   462 |     handleIncludeControlRefresh(controls, cb) {
10:08:27 > 463 |       console.log('controls', controls)
10:08:27       |       ^
10:08:27   464 |       // resize 计算会走这里
10:08:27   465 |       // include可能原本就被隐藏 这里要集合
10:08:27   466 |       let affectedIncludeControls = []
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:473:7:
10:08:27   471 |         }
10:08:27   472 |       })
10:08:27 > 473 |       console.log('affectedIncludeControls获取Dom对象', affectedIncludeControls)
10:08:27       |       ^
10:08:27   474 |       this.$nextTick(() => {
10:08:27   475 |         cb() //这个执行的是handleIncludeControlComputed(controls)();
10:08:27   476 |         affectedIncludeControls.forEach(itm => {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:483:9:
10:08:27   481 |     handleIncludeControlComputed(controls) {
10:08:27   482 |       controls.forEach(item => {
10:08:27 > 483 |         console.log('item.parentNode', item.parentNode)
10:08:27       |         ^
10:08:27   484 |         let pw = item.parentNode.clientWidth - (parseFloat(getComputedStyle(item.parentNode).paddingLeft) + parseFloat(getComputedStyle(item.parentNode).paddingRight))
10:08:27   485 |         console.log('pw', pw)
10:08:27   486 |         if (pw > 0) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:485:9:
10:08:27   483 |         console.log('item.parentNode', item.parentNode)
10:08:27   484 |         let pw = item.parentNode.clientWidth - (parseFloat(getComputedStyle(item.parentNode).paddingLeft) + parseFloat(getComputedStyle(item.parentNode).paddingRight))
10:08:27 > 485 |         console.log('pw', pw)
10:08:27       |         ^
10:08:27   486 |         if (pw > 0) {
10:08:27   487 |           item.style.width = pw + 'px'  //增加父元素固定宽度'.include-control' 与 '.tab-control'
10:08:27   488 |         } else {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:490:13:
10:08:27   488 |         } else {
10:08:27   489 |           let id = setTimeout(() => {
10:08:27 > 490 |             console.log(111)
10:08:27       |             ^
10:08:27   491 |             // resize 计算会走这里
10:08:27   492 |             // include可能原本就被隐藏 这里要集合
10:08:27   493 |             if (item.style.display !== 'none') {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:500:15:
10:08:27   498 |             }
10:08:27   499 |             this.$nextTick(() => {
10:08:27 > 500 |               console.log('bb', parseFloat(getComputedStyle(item.parentNode).paddingLeft));
10:08:27       |               ^
10:08:27   501 |               let pw = item.parentNode.clientWidth - (parseFloat(getComputedStyle(item.parentNode).paddingLeft) + parseFloat(getComputedStyle(item.parentNode).paddingRight))
10:08:27   502 |               if (pw > 0) {
10:08:27   503 |                 console.log('item.parentNode', item.parentNode)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:503:17:
10:08:27   501 |               let pw = item.parentNode.clientWidth - (parseFloat(getComputedStyle(item.parentNode).paddingLeft) + parseFloat(getComputedStyle(item.parentNode).paddingRight))
10:08:27   502 |               if (pw > 0) {
10:08:27 > 503 |                 console.log('item.parentNode', item.parentNode)
10:08:27       |                 ^
10:08:27   504 |                 item.style.width = pw + 'px' //增加父元素固定宽度'.include-control' 与 '.tab-control'
10:08:27   505 |                 item.style.display = "block"
10:08:27   506 |                 clearInterval(id)
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:609:15:
10:08:27   607 |             signatureid,
10:08:27   608 |             function (data) {
10:08:27 > 609 |               console.log(data);
10:08:27       |               ^
10:08:27   610 |             }
10:08:27   611 |           );
10:08:27   612 |           break;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:774:7:
10:08:27   772 |     initForm({ appId, formId, docId }) {
10:08:27   773 |       let openParams = this.openParams;
10:08:27 > 774 |       console.log(docId);
10:08:27       |       ^
10:08:27   775 |       if (openParams.appId) {
10:08:27   776 |         this.$root.appid = openParams.appId; //如果有多个软件,当从首页进入表单,需要把当前页当前数据的appId赋值给全局变量,否则有可能导致软件的appId拿错
10:08:27   777 |       }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:799:9:
10:08:27   797 |           obj = this.setParams(openParams.urlParams, obj);
10:08:27   798 |         }
10:08:27 > 799 |         console.log("获取表单。。。");
10:08:27       |         ^
10:08:27   800 |         API.getForm(
10:08:27   801 |           appId,
10:08:27   802 |           formId,
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:938:29:
10:08:27   936 |                           signatureid,
10:08:27   937 |                           function (data) {
10:08:27 > 938 |                             console.log(data);
10:08:27       |                             ^
10:08:27   939 |                           }
10:08:27   940 |                         );
10:08:27   941 |                         break;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:996:21:
10:08:27   994 |                 for (let i = 0; i < data.fields.length; i++) {
10:08:27   995 |                   if (data.fields[i].isModified) {
10:08:27 > 996 |                     console.log("111", showLog);
10:08:27       |                     ^
10:08:27   997 |                     showLog = true;
10:08:27   998 |                     break;
10:08:27   999 |                   }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:1179:7:
10:08:27   1177 |         params = { ...params, ...this.$route.query };
10:08:27   1178 |       }
10:08:27 > 1179 |       console.log(params);
10:08:27        |       ^
10:08:27   1180 |       API.getForm(appId, formId, docId, params, {
10:08:27   1181 |         onSucess: (res) => {
10:08:27   1182 |           let fd = res.data.data;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:1236:19:
10:08:27   1234 |                   //表单嵌套tab判断传递参数
10:08:27   1235 |                   fields[i].exparams = op.exparams;
10:08:27 > 1236 |                   console.log(fields[i].exparams);
10:08:27        |                   ^
10:08:27   1237 |                 }
10:08:27   1238 |                 if (fields[i].tabs && fields[i].tabs.length > 0) {
10:08:27   1239 |                   for (let j = 0; j < fields[i].tabs.length; j++) {
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:1470:19:
10:08:27   1468 |               fields.forEach((f, i) => {
10:08:27   1469 |                 if (field.id == f.id) {
10:08:27 > 1470 |                   console.log(fields[i].type);
10:08:27        |                   ^
10:08:27   1471 |                   fields[i].value = field.value; //只能更新value,而不能简单做对象替换,field.value绑定在组件v-model上,如果直接替换只是数组内存指针简单变更
10:08:27   1472 |                   fields[i].options = field.options;
10:08:27   1473 |                   fields[i].tabs = field.tabs;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:1511:7:
10:08:27   1509 |
10:08:27   1510 |     handleClose(done) {
10:08:27 > 1511 |       console.log('done',done)
10:08:27        |       ^
10:08:27   1512 |       done();
10:08:27   1513 |       if (this.isDialogOpenExternalLink) {
10:08:27   1514 |         let appId = this.openParams.appId;
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:2405:15:
10:08:27   2403 |               }
10:08:27   2404 |             } else if (response.data.errcode == 0) {//请求成功返回
10:08:27 > 2405 |               console.log('response.data', response.data)
10:08:27        |               ^
10:08:27   2406 |               console.log('activityType', activityType)
10:08:27   2407 |               if (response.data.actionStep === 'AfterAction' && activityType == 34) {//activityType=34才提示
10:08:27   2408 |                 this.$message({ type: 'success', message: '操作成功' })
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:2406:15:
10:08:27   2404 |             } else if (response.data.errcode == 0) {//请求成功返回
10:08:27   2405 |               console.log('response.data', response.data)
10:08:27 > 2406 |               console.log('activityType', activityType)
10:08:27        |               ^
10:08:27   2407 |               if (response.data.actionStep === 'AfterAction' && activityType == 34) {//activityType=34才提示
10:08:27   2408 |                 this.$message({ type: 'success', message: '操作成功' })
10:08:27   2409 |               }
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:2591:7:
10:08:27   2589 |     doSave(num, actId, withOld, subDoc, act) {
10:08:27   2590 |       // debugger
10:08:27 > 2591 |       console.log(777);
10:08:27        |       ^
10:08:27   2592 |       let openParams = this.openParams;
10:08:27   2593 |       let that = this;
10:08:27   2594 |       let transferrData = "";
10:08:27 
10:08:27 
10:08:27 error: Unexpected console statement (no-console) at src/components/form_normalform.vue:3456:13:
10:08:27   3454 |         API.executeCustom(appId, actId, obj, params, {
10:08:27   3455 |           onSucess: (res) => {
10:08:27 > 3456 |             console.log(res);
10:08:27        |             ^
10:08:27   3457 |             let errcode = res.data.errcode;
10:08:27   3458 |             if (errcode == 0) {
10:08:27   3459 |               let errmsg = act.name + this.$t("success");
10:08:27 
10:08:27 
10:08:27 23 errors found.
10:08:27 
10:08:27 You may use special comments to disable some warnings.
10:08:27 Use // eslint-disable-next-line to ignore the next line.
10:08:27 Use /* eslint-disable */ to ignore all warnings in a file.
10:08:27  warning  
10:08:27 
10:08:27 asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
10:08:27 This can impact web performance.
10:08:27 Assets: 
10:08:27   fonts/Source Han Sans CN Regular.552b3917.eot (8.14 MiB)
10:08:27   fonts/Source Han Sans CN Regular.d1fb7855.woff (5.1 MiB)
10:08:27   img/fontawesome-webfont.912ec66d.svg (434 KiB)
10:08:27   img/background.646883a5.jpg (363 KiB)
10:08:27   fonts/Source Han Sans CN Regular.50f2d6d6.ttf (8.14 MiB)
10:08:27   img/Source Han Sans CN Regular.63d44fde.svg (17.8 MiB)
10:08:27   js/about.851f1434.js (2.81 MiB)
10:08:27   js/app.93dfde97.js (4.67 MiB)
10:08:27   js/chunk-332c1540.7f6d4456.js (306 KiB)
10:08:27   js/rail.ef0a817f.js (2.49 MiB)
10:08:27   iwebapp/pdfjs/core/pdf.js (584 KiB)
10:08:27   iwebapp/pdfjs/core/pdf.worker.js (723 KiB)
10:08:27   js/esdk-obs-browserjs.min.js (304 KiB)
10:08:27   pdf/word/pdfjs/build/pdf.js (774 KiB)
10:08:27   iwebapp/pdfjs/pdf-34bd0a9d29.viewer.js (1.36 MiB)
10:08:27   iwebapp/pdfjs/pdf-8cc3ba5958.viewer.js (1.37 MiB)
10:08:27   pdf/word/pdfjs/build/pdf.js.map (1.48 MiB)
10:08:27   pdf/word/pdfjs/build/pdf.worker.js (1.66 MiB)
10:08:27   pdf/word/pdfjs/build/pdf.worker.js.map (3.39 MiB)
10:08:27   pdf/word/pdfjs/web/viewer.js.map (751 KiB)
10:08:27   pdf/word/pdfjs/web/viewer.js (655 KiB)
10:08:27   UEditor/jsp/lib/commons-codec-1.9.jar (258 KiB)
10:08:27   pdf/word/iWebOffice2015.cab (12.4 MiB)
10:08:27   UEditor/third-party/highcharts/highcharts.src.js (434 KiB)
10:08:27   UEditor/third-party/jquery-1.10.2.js (267 KiB)
10:08:27   UEditor/third-party/snapscreen/UEditorSnapscreen.exe (508 KiB)
10:08:27   UEditor/ueditor.all.min.js (373 KiB)
10:08:27   UEditor/ueditor.all.js (1.06 MiB)
10:08:27 
10:08:27  warning  
10:08:27 
10:08:27 entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
10:08:27 Entrypoints:
10:08:27   app (7.49 MiB)
10:08:27       js/about.851f1434.js
10:08:27       js/app.93dfde97.js
10:08:27 
10:08:27 
10:08:28   File                                      Size             Gzipped
10:08:28 
10:08:28   dist/UEditor/ueditor.all.min.js           373.46 KiB       100.76 KiB
10:08:28   dist/js/esdk-obs-browserjs.min.js         303.80 KiB       78.74 KiB
10:08:28   dist/iwebapp/pdfjs/jquery-1.11.3.min.j    93.71 KiB        32.54 KiB
10:08:28   s
10:08:28   dist/js/jquery-1.11.3.min.js              93.71 KiB        32.54 KiB
10:08:28   dist/pdf/word/jquery.min.js               93.54 KiB        32.48 KiB
10:08:28   dist/UEditor/third-party/jquery-1.10.2    90.92 KiB        32.06 KiB
10:08:28   .min.js
10:08:28   dist/js/swiper.min.js                     64.88 KiB        16.44 KiB
10:08:28   dist/UEditor/third-party/webuploader/w    56.91 KiB        18.66 KiB
10:08:28   ebuploader.min.js
10:08:28   dist/UEditor/third-party/webuploader/w    45.99 KiB        14.37 KiB
10:08:28   ebuploader.html5only.min.js
10:08:28   dist/UEditor/third-party/webuploader/w    45.81 KiB        15.77 KiB
10:08:28   ebuploader.custom.min.js
10:08:28   dist/UEditor/third-party/webuploader/w    38.87 KiB        12.03 KiB
10:08:28   ebuploader.withoutimage.min.js
10:08:28   dist/UEditor/third-party/webuploader/w    32.81 KiB        10.64 KiB
10:08:28   ebuploader.flashonly.min.js
10:08:28   dist/UEditor/third-party/xss.min.js       27.11 KiB        6.38 KiB
10:08:28   dist/pdf/word/viewer.min.js               20.21 KiB        6.41 KiB
10:08:28   dist/UEditor/third-party/zeroclipboard    18.51 KiB        6.52 KiB
10:08:28   /ZeroClipboard.min.js
10:08:28   dist/pdf/word/sweetalert.min.js           16.58 KiB        5.29 KiB
10:08:28   dist/pdf/word/toastr.min.js               16.47 KiB        3.19 KiB
10:08:28   dist/iwebapp/pdfjs/require.min.js         14.86 KiB        6.08 KiB
10:08:28   dist/pdf/word/require.min.js              14.86 KiB        6.08 KiB
10:08:28   dist/UEditor/ueditor.parse.min.js         14.45 KiB        5.01 KiB
10:08:28   dist/js/app.93dfde97.js                   4785.01 KiB      956.33 KiB
10:08:28   dist/js/about.851f1434.js                 2881.11 KiB      819.63 KiB
10:08:28   dist/js/rail.ef0a817f.js                  2550.63 KiB      848.61 KiB
10:08:28   dist/pdf/word/pdfjs/build/pdf.worker.j    1700.94 KiB      322.13 KiB
10:08:28   s
10:08:28   dist/iwebapp/pdfjs/pdf-8cc3ba5958.view    1404.33 KiB      367.49 KiB
10:08:28   er.js
10:08:28   dist/iwebapp/pdfjs/pdf-34bd0a9d29.view    1397.68 KiB      362.42 KiB
10:08:28   er.js
10:08:28   dist/UEditor/ueditor.all.js               1086.60 KiB      213.79 KiB
10:08:28   dist/pdf/word/pdfjs/build/pdf.js          774.32 KiB       145.03 KiB
10:08:28   dist/iwebapp/pdfjs/core/pdf.worker.js     723.11 KiB       213.91 KiB
10:08:28   dist/pdf/word/pdfjs/web/viewer.js         654.78 KiB       99.17 KiB
10:08:28   dist/iwebapp/pdfjs/core/pdf.js            584.12 KiB       161.00 KiB
10:08:28   dist/UEditor/third-party/highcharts/hi    433.95 KiB       123.75 KiB
10:08:28   ghcharts.src.js
10:08:28   dist/js/chunk-332c1540.7f6d4456.js        305.58 KiB       98.21 KiB
10:08:28   dist/UEditor/third-party/jquery-1.10.2    266.80 KiB       79.12 KiB
10:08:28   .js
10:08:28   dist/UEditor/third-party/webuploader/w    226.46 KiB       48.94 KiB
10:08:28   ebuploader.js
10:08:28   dist/UEditor/third-party/video-js/vide    212.98 KiB       56.36 KiB
10:08:28   o.dev.js
10:08:28   dist/UEditor/third-party/webuploader/w    193.52 KiB       43.01 KiB
10:08:28   ebuploader.custom.js
10:08:28   dist/UEditor/third-party/webuploader/w    182.25 KiB       39.11 KiB
10:08:28   ebuploader.html5only.js
10:08:28   dist/UEditor/third-party/SyntaxHighlig    155.77 KiB       43.52 KiB
10:08:28   hter/shCore.js
10:08:28   dist/UEditor/third-party/codemirror/co    154.89 KiB       35.91 KiB
10:08:28   demirror.js
10:08:28   dist/UEditor/third-party/webuploader/w    148.40 KiB       31.44 KiB
10:08:28   ebuploader.withoutimage.js
10:08:28   dist/js/chunk-696a1e1b.f47a1429.js        146.84 KiB       46.24 KiB
10:08:28   dist/UEditor/third-party/highcharts/hi    137.55 KiB       50.63 KiB
10:08:28   ghcharts.js
10:08:28   dist/UEditor/third-party/webuploader/w    135.64 KiB       29.89 KiB
10:08:28   ebuploader.flashonly.js
10:08:28   dist/pdf/word/WebOffice.js                135.19 KiB       30.89 KiB
10:08:28   dist/UEditor/dialogs/image/image.js       125.19 KiB       55.10 KiB
10:08:28   dist/pdf/word/iWebOffice2015.js           112.08 KiB       50.77 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    98.32 KiB        22.42 KiB
10:08:28   dules/canvas-tools.src.js
10:08:28   dist/js/china.js                          61.26 KiB        43.82 KiB
10:08:28   dist/iwebapp/pdfjs/stamp/laydate/layda    58.98 KiB        15.29 KiB
10:08:28   te.js
10:08:28   dist/UEditor/third-party/highcharts/hi    58.77 KiB        16.33 KiB
10:08:28   ghcharts-more.src.js
10:08:28   dist/js/certificate.fe44d4eb.js           57.22 KiB        16.61 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    56.52 KiB        15.35 KiB
10:08:28   dules/canvas-tools.js
10:08:28   dist/UEditor/third-party/video-js/vide    54.09 KiB        16.62 KiB
10:08:28   o.js
10:08:28   dist/UEditor/dialogs/wordimage/tangram    46.41 KiB        12.48 KiB
10:08:28   .js
10:08:28   dist/UEditor/third-party/zeroclipboard    42.20 KiB        9.15 KiB
10:08:28   /ZeroClipboard.js
10:08:28   dist/UEditor/ueditor.parse.js             35.91 KiB        7.93 KiB
10:08:28   dist/pdf/word/util.js                     30.10 KiB        8.77 KiB
10:08:28   dist/UEditor/dialogs/video/video.js       29.78 KiB        7.62 KiB
10:08:28   dist/UEditor/dialogs/attachment/attach    29.67 KiB        6.63 KiB
10:08:28   ment.js
10:08:28   dist/UEditor/lang/en/en.js                28.72 KiB        8.24 KiB
10:08:28   dist/pdf/word/l10n.js                     28.57 KiB        8.09 KiB
10:08:28   dist/UEditor/dialogs/scrawl/scrawl.js     26.51 KiB        5.97 KiB
10:08:28   dist/UEditor/lang/zh-cn/zh-cn.js          25.88 KiB        8.55 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    25.16 KiB        7.84 KiB
10:08:28   dules/map.src.js
10:08:28   dist/UEditor/ueditor.config.js            22.75 KiB        8.44 KiB
10:08:28   dist/UEditor/third-party/highcharts/hi    21.30 KiB        7.91 KiB
10:08:28   ghcharts-more.js
10:08:28   dist/pdf/word/pdfjs/web/debugger.js       18.48 KiB        4.89 KiB
10:08:28   dist/pdf/word/compatibility.js            17.70 KiB        5.38 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    16.86 KiB        5.73 KiB
10:08:28   dules/exporting.src.js
10:08:28   dist/UEditor/third-party/highcharts/mo    15.14 KiB        4.81 KiB
10:08:28   dules/data.src.js
10:08:28   dist/UEditor/dialogs/background/backgr    14.04 KiB        3.56 KiB
10:08:28   ound.js
10:08:28   dist/pdf/word/tray.js                     12.95 KiB        3.86 KiB
10:08:28   dist/iwebapp/pdfjs/require.config.js      12.60 KiB        3.15 KiB
10:08:28   dist/pdf/word/require.config.js           12.38 KiB        3.05 KiB
10:08:28   dist/UEditor/dialogs/template/config.j    12.19 KiB        2.50 KiB
10:08:28   s
10:08:28   dist/UEditor/third-party/highcharts/ad    11.38 KiB        3.82 KiB
10:08:28   apters/standalone-framework.src.js
10:08:28   dist/UEditor/dialogs/charts/charts.js     10.89 KiB        3.34 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    10.69 KiB        3.16 KiB
10:08:28   dules/drilldown.src.js
10:08:28   dist/UEditor/third-party/highcharts/mo    9.88 KiB         4.03 KiB
10:08:28   dules/map.js
10:08:28   dist/UEditor/dialogs/table/edittable.j    8.72 KiB         2.01 KiB
10:08:28   s
10:08:28   dist/UEditor/third-party/highcharts/ad    8.72 KiB         3.18 KiB
10:08:28   apters/prototype-adapter.src.js
10:08:28   dist/UEditor/third-party/highcharts/mo    8.18 KiB         2.56 KiB
10:08:28   dules/annotations.src.js
10:08:28   dist/UEditor/dialogs/music/music.js       7.64 KiB         2.16 KiB
10:08:28   dist/UEditor/third-party/highcharts/ad    7.61 KiB         2.91 KiB
10:08:28   apters/mootools-adapter.src.js
10:08:28   dist/pdf/word/watermark.js                7.55 KiB         1.90 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    7.08 KiB         3.07 KiB
10:08:28   dules/exporting.js
10:08:28   dist/UEditor/third-party/highcharts/mo    6.38 KiB         2.33 KiB
10:08:28   dules/funnel.src.js
10:08:28   dist/UEditor/dialogs/emotion/emotion.j    6.15 KiB         2.03 KiB
10:08:28   s
10:08:28   dist/UEditor/third-party/highcharts/mo    5.42 KiB         1.95 KiB
10:08:28   dules/drilldown.js
10:08:28   dist/UEditor/third-party/highcharts/ad    4.95 KiB         2.15 KiB
10:08:28   apters/standalone-framework.js
10:08:28   dist/UEditor/dialogs/spechars/spechars    4.56 KiB         2.37 KiB
10:08:28   .js
10:08:28   dist/UEditor/third-party/highcharts/th    4.38 KiB         1.21 KiB
10:08:28   emes/gray.js
10:08:28   dist/UEditor/third-party/highcharts/mo    4.33 KiB         1.89 KiB
10:08:28   dules/data.js
10:08:28   dist/UEditor/dialogs/searchreplace/sea    4.30 KiB         1.27 KiB
10:08:28   rchreplace.js
10:08:28   dist/UEditor/third-party/highcharts/th    4.25 KiB         1.20 KiB
10:08:28   emes/dark-blue.js
10:08:28   dist/UEditor/third-party/highcharts/th    4.24 KiB         1.21 KiB
10:08:28   emes/dark-green.js
10:08:28   dist/UEditor/dialogs/wordimage/wordima    4.05 KiB         1.95 KiB
10:08:28   ge.js
10:08:28   dist/UEditor/third-party/highcharts/mo    3.32 KiB         1.52 KiB
10:08:28   dules/annotations.js
10:08:28   dist/UEditor/third-party/highcharts/ad    3.23 KiB         1.33 KiB
10:08:28   apters/prototype-adapter.js
10:08:28   dist/UEditor/third-party/highcharts/mo    2.79 KiB         1.12 KiB
10:08:28   dules/no-data-to-display.src.js
10:08:28   dist/UEditor/dialogs/internal.js          2.54 KiB         0.98 KiB
10:08:28   dist/UEditor/third-party/highcharts/ad    2.21 KiB         1.06 KiB
10:08:28   apters/mootools-adapter.js
10:08:28   dist/pdf/word/obpm.showMessage.js         2.09 KiB         0.74 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    1.93 KiB         1.08 KiB
10:08:28   dules/funnel.js
10:08:28   dist/UEditor/third-party/highcharts/th    1.75 KiB         0.65 KiB
10:08:28   emes/grid.js
10:08:28   dist/UEditor/third-party/highcharts/th    1.72 KiB         0.64 KiB
10:08:28   emes/skies.js
10:08:28   dist/UEditor/dialogs/template/template    1.55 KiB         0.67 KiB
10:08:28   .js
10:08:28   dist/UEditor/dialogs/help/help.js         1.47 KiB         0.70 KiB
10:08:28   dist/UEditor/dialogs/charts/chart.conf    1.38 KiB         0.44 KiB
10:08:28   ig.js
10:08:28   dist/js/obpm.config.js                    1.36 KiB         0.57 KiB
10:08:28   dist/js/obsConfig.js                      1.33 KiB         0.70 KiB
10:08:28   dist/UEditor/third-party/highcharts/mo    1.33 KiB         0.70 KiB
10:08:28   dules/no-data-to-display.js
10:08:28   dist/UEditor/third-party/highcharts/mo    1.10 KiB         0.49 KiB
10:08:28   dules/heatmap.src.js
10:08:28   dist/UEditor/third-party/highcharts/mo    0.52 KiB         0.37 KiB
10:08:28   dules/heatmap.js
10:08:28   dist/iwebapp/pdfjs/viewer-df538bd63b.c    111.81 KiB       18.55 KiB
10:08:28   ss
10:08:28   dist/iwebapp/pdfjs/viewer-afb3d53c48.c    111.71 KiB       18.53 KiB
10:08:28   ss
10:08:28   dist/pdf/word/pdfjs/web/viewer.css        58.42 KiB        9.25 KiB
10:08:28   dist/UEditor/themes/default/css/uedito    42.73 KiB        6.84 KiB
10:08:28   r.css
10:08:28   dist/UEditor/themes/default/css/uedito    34.12 KiB        5.53 KiB
10:08:28   r.min.css
10:08:28   dist/UEditor/third-party/video-js/vide    20.82 KiB        5.45 KiB
10:08:28   o-js.css
10:08:28   dist/UEditor/dialogs/image/image.css      17.71 KiB        3.46 KiB
10:08:28   dist/UEditor/dialogs/video/video.css      14.57 KiB        3.10 KiB
10:08:28   dist/UEditor/dialogs/attachment/attach    14.05 KiB        2.81 KiB
10:08:28   ment.css
10:08:28   dist/UEditor/third-party/video-js/vide    11.18 KiB        2.53 KiB
10:08:28   o-js.min.css
10:08:28   dist/iwebapp/pdfjs/stamp/laydate/theme    9.16 KiB         2.21 KiB
10:08:28   /default/laydate.css
10:08:28   dist/UEditor/third-party/SyntaxHighlig    6.95 KiB         1.31 KiB
10:08:28   hter/shCoreDefault.css
10:08:28   dist/UEditor/dialogs/scrawl/scrawl.css    3.73 KiB         0.97 KiB
10:08:28   dist/UEditor/third-party/codemirror/co    2.82 KiB         0.90 KiB
10:08:28   demirror.css
10:08:28   dist/UEditor/dialogs/charts/charts.css    2.54 KiB         0.81 KiB
10:08:28   dist/UEditor/dialogs/background/backgr    2.34 KiB         0.87 KiB
10:08:28   ound.css
10:08:28   dist/UEditor/dialogs/emotion/emotion.c    1.76 KiB         0.53 KiB
10:08:28   ss
10:08:28   dist/UEditor/themes/default/dialogbase    1.65 KiB         0.81 KiB
10:08:28   .css
10:08:28   dist/UEditor/dialogs/music/music.css      1.64 KiB         0.63 KiB
10:08:28   dist/UEditor/dialogs/table/edittable.c    1.16 KiB         0.41 KiB
10:08:28   ss
10:08:28   dist/UEditor/dialogs/template/template    1.01 KiB         0.49 KiB
10:08:28   .css
10:08:28   dist/UEditor/third-party/webuploader/w    0.50 KiB         0.29 KiB
10:08:28   ebuploader.css
10:08:28   dist/UEditor/dialogs/help/help.css        0.38 KiB         0.20 KiB
10:08:28   dist/UEditor/themes/iframe.css            0.04 KiB         0.06 KiB
10:08:28 
10:08:28   Images and other types of assets omitted.
10:08:28 
10:08:28  DONE  Build complete. The dist directory is ready to be deployed.
10:08:28  INFO  Check out deployment instructions at https://cli.vuejs.org/guide/deployment.html
10:08:28       
10:08:29 + rm -rf /data/workspace/badp-bcxin-web-5.x-vue
10:08:29 + cp -r dist /data/workspace/badp-bcxin-web-5.x-vue
10:08:29 + chmod 755 /data/workspace/badp-bcxin-web-5.x-vue -R
10:08:29 Finished: SUCCESS