mirror of
https://github.com/shawncai/ERP.git
synced 2025-03-04 19:33:18 +08:00
beyond
This commit is contained in:
parent
fd4f2aa9e4
commit
f6c4dfec22
114 changed files with 237 additions and 110 deletions
|
@ -83,6 +83,9 @@ export function accesslist(query) {
|
|||
if (query.regionIds !== '' && query.regionIds !== null && query.regionIds !== undefined) {
|
||||
params.append('regionIds', query.regionIds) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -61,6 +61,9 @@ export function produceplanlist(query) {
|
|||
if (query.isUse !== '' && query.isUse !== null && query.isUse !== undefined) {
|
||||
params.append('isUse', query.isUse) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -61,6 +61,9 @@ export function producetasklist(query) {
|
|||
if (query.regionIds !== '' && query.regionIds !== null && query.regionIds !== undefined) {
|
||||
params.append('regionIds', query.regionIds) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -67,6 +67,9 @@ export function qualitychecklist(query) {
|
|||
if (query.regionIds !== '' && query.regionIds !== null && query.regionIds !== undefined) {
|
||||
params.append('regionIds', query.regionIds) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -42,6 +42,9 @@ export function stocapplylist(query) {
|
|||
if (query.regionIds !== '' && query.regionIds !== null && query.regionIds !== undefined) {
|
||||
params.append('regionIds', query.regionIds) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -60,6 +60,9 @@ export function searchstockArrival(query) {
|
|||
if (query.regionIds !== '' && query.regionIds !== null && query.regionIds !== undefined) {
|
||||
params.append('regionIds', query.regionIds) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -63,6 +63,9 @@ export function stockorderlist(query) {
|
|||
if (query.regionIds !== '' && query.regionIds !== null && query.regionIds !== undefined) {
|
||||
params.append('regionIds', query.regionIds) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -63,6 +63,9 @@ export function stockplanlist(query) {
|
|||
if (query.supplierId !== '' && query.supplierId !== null && query.supplierId !== undefined) {
|
||||
params.append('supplierId', query.supplierId) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -36,6 +36,9 @@ export function stockrequirelist(query) {
|
|||
if (query.regionIds !== '' && query.regionIds !== null && query.regionIds !== undefined) {
|
||||
params.append('regionIds', query.regionIds) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
if (query.isActive !== '' && query.isActive !== null && query.isActive !== undefined) {
|
||||
params.append('isActive', query.isActive) // 你要传给后台的参数值 key/value
|
||||
}
|
||||
params.append('pageNum', query.pageNum) // 你要传给后台的参数值 key/value
|
||||
params.append('pageSize', query.pageSize) // 你要传给后台的参数值 key/value
|
||||
return request({
|
||||
|
|
|
@ -235,12 +235,13 @@ export default {
|
|||
// 加载表格
|
||||
listLoading: true,
|
||||
// 领料列表查询加展示参数
|
||||
getemplist: {
|
||||
ggetemplist: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
judgeStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -221,7 +221,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -247,7 +247,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -245,7 +245,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -229,7 +229,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -218,7 +218,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -245,7 +245,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -252,12 +252,12 @@ export default {
|
|||
// 加载表格
|
||||
listLoading: true,
|
||||
// 采购申请查询加展示参数
|
||||
getemplist: {
|
||||
ggetemplist: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
judgeStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -221,7 +221,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -245,7 +245,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -221,7 +221,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -218,7 +218,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -218,7 +218,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -218,7 +218,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -245,7 +245,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -242,7 +242,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,7 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -252,7 +252,8 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -255,7 +255,8 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -176,11 +176,12 @@ export default {
|
|||
listLoading: true,
|
||||
// 主生产任务列表查询加展示参数
|
||||
getemplist: {
|
||||
pagenum: 1,
|
||||
pagesize: 10,
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 开始时间到结束时间
|
||||
date: []
|
||||
|
|
|
@ -220,7 +220,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,7 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -221,7 +221,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -218,7 +218,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -231,7 +231,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -198,7 +198,8 @@ export default {
|
|||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -242,7 +242,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -229,7 +229,8 @@ export default {
|
|||
receiptStat: 2,
|
||||
isUse: 1,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -198,7 +198,8 @@ export default {
|
|||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isactive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -198,7 +198,8 @@ export default {
|
|||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isactive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -198,7 +198,8 @@ export default {
|
|||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isactive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,12 +228,13 @@ export default {
|
|||
// 加载表格
|
||||
listLoading: true,
|
||||
// 采购申请查询加展示参数
|
||||
getemplist: {
|
||||
ggetemplist: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
judgeStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -247,7 +247,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -242,7 +242,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -254,7 +254,7 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -233,7 +233,8 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -252,7 +252,7 @@ export default {
|
|||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId,
|
||||
supplierId: this.supp
|
||||
supplierId: this.supp,
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -245,7 +245,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -250,7 +250,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -247,7 +247,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -228,7 +228,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
|
@ -234,7 +234,8 @@ export default {
|
|||
pageSize: 10,
|
||||
judgeStat: 2, receiptStat: 2,
|
||||
repositoryId: this.$store.getters.repositoryId,
|
||||
regionIds: this.$store.getters.regionId
|
||||
regionIds: this.$store.getters.regionId,
|
||||
isActive: 1
|
||||
},
|
||||
// 传给组件的数据
|
||||
personalForm: {},
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue