work
Go to file
2019-03-04 14:14:25 +08:00
build first commit 2019-02-12 17:46:33 +08:00
config first commit 2019-02-12 17:46:33 +08:00
src jingxiaoshang 2019-03-04 14:14:25 +08:00
static first commit 2019-02-12 17:46:33 +08:00
.babelrc first commit 2019-02-12 17:46:33 +08:00
.editorconfig first commit 2019-02-12 17:46:33 +08:00
.eslintignore employee add 2019-02-26 09:13:20 +08:00
.eslintrc.js first commit 2019-02-12 17:46:33 +08:00
.gitignore first commit 2019-02-12 17:46:33 +08:00
.postcssrc.js first commit 2019-02-12 17:46:33 +08:00
.travis.yml first commit 2019-02-12 17:46:33 +08:00
favicon.ico first commit 2019-02-12 17:46:33 +08:00
index.html 2019/3/1客户和仓库部分 2019-03-01 18:00:24 +08:00
LICENSE first commit 2019-02-12 17:46:33 +08:00
package.json first commit 2019-02-12 17:46:33 +08:00
README.md 写问题 2019-03-01 18:03:04 +08:00

ERP

work for nwow

ERP project

2019/2/12 add topmenu

2019/2/25 遇到的一些问题以及解决方案

tagsview的页面关闭操作
const view = { 
path: '/EmployeeInformation/NewEmployeeInformation',
 name: 'NewEmployeeInformation',
  fullPath: '/EmployeeInformation/NewEmployeeInformation',
   title: 'NewEmployeeInformation' 
   }  
   
this.$store.dispatch('delView', view).then(({ visitedViews }) => {})
拼接json 方法
         var resultJsonObject = {}
         for (const attr in jsonbject1) {
           resultJsonObject[attr] = jsonbject1[attr]
         }
         for (const attr in jsonbject2) {
           resultJsonObject[attr] = jsonbject2[attr]
         }
         return resultJsonObject} 

2019/2/26 遇到的一些问题以及解决方案

axios 向后端发送请求数据时如果为空或者underfined时判断一下
     var params = new URLSearchParams()
     // 判断是否为空值
     if (query.jobnumber !== '') {
       params.append('jobnumber', query.jobnumber) // 你要传给后台的参数值 key/value
     }
     return request({
       url: 'xxxx',
       method: 'post',
       data: params
     })
   }

2019/2/26

用map取用数组中的莫一项并且把这一项变成字符串组
 ids =  [{id: 2, name: xxx},{id: 3, name: xxx}, {id: 4, name: xxx}, {id: 5, name: xxx}]
 const ids = this.moreaction.map(item => item.id).join()
 ids = 2, 3, 4, 5, 6
导出功能中名字拼接还有点问题待解决!!!!!

2019/2/28

select 回显问题
      this.employeeName = String( row.empName)
      this.contractNumber =String(row.contractNumber) 
     // 需要把Number类型的数据转化成String类型这样回显才没问题

2019/03/01

客户和仓库问题 批量导入