diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/list.vue index f36cbdc35..95a7aea6c 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/list.vue @@ -191,7 +191,7 @@ export default { methods: { // 页面初始化 async init() { - this.ON('LogisticsManagement-Purchase_Edu-list-change', this.reset) + this.ON('LogisticsManagement-Purchase_Edu-list-change', this.reset) // 拉取加载列表和数据源 await Promise.all([ () => {} @@ -211,7 +211,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/single.vue index a4189eeab..5575cbefb 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/single.vue @@ -175,6 +175,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, }, }, diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/singleFlow.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/singleFlow.vue index 79b03ff25..0d416689d 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/singleFlow.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Edu/singleFlow.vue @@ -89,6 +89,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/list.vue index aa3f01ccf..64e17785a 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/list.vue @@ -191,7 +191,7 @@ export default { methods: { // 页面初始化 async init() { - this.ON('LogisticsManagement-Purchase_Info-list-change', this.reset) + this.ON('LogisticsManagement-Purchase_Info-list-change', this.reset) // 拉取加载列表和数据源 await Promise.all([ () => {} @@ -211,7 +211,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/single.vue index b0522ee59..718250efc 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/single.vue @@ -175,6 +175,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, }, }, diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/singleFlow.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/singleFlow.vue index f5eb05554..044c572ef 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/singleFlow.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Info/singleFlow.vue @@ -89,6 +89,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/list.vue index 7dee237aa..5d57906b4 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/list.vue @@ -211,7 +211,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/single.vue index c71842b19..f03e9a307 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/single.vue @@ -175,6 +175,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, }, }, diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/singleFlow.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/singleFlow.vue index ddac5cfdc..344e0e59b 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/singleFlow.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Logistic/singleFlow.vue @@ -89,6 +89,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/list.vue index e4ad052c5..b5a95b253 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/list.vue @@ -191,7 +191,7 @@ export default { methods: { // 页面初始化 async init() { - this.ON('LogisticsManagement-Purchase_Other-list-change', this.reset) + this.ON('LogisticsManagement-Purchase_Other-list-change', this.reset) // 拉取加载列表和数据源 await Promise.all([ () => {} @@ -211,7 +211,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/single.vue index 3a733a14e..a4900e1d6 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/single.vue @@ -175,6 +175,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, }, }, diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/singleFlow.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/singleFlow.vue index a467a5e54..631e6d9ca 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/singleFlow.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Other/singleFlow.vue @@ -89,6 +89,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/list.vue index 5147522fe..205ad7476 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/list.vue @@ -211,7 +211,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/single.vue index 6b997537f..fbe9fc1d4 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/single.vue @@ -176,6 +176,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, }, }, diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/singleFlow.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/singleFlow.vue index eccc4f9e5..aa416ce4c 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/singleFlow.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Print/singleFlow.vue @@ -89,6 +89,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Service/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Service/list.vue index 3804886ee..eae031380 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Service/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Service/list.vue @@ -212,7 +212,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/list.vue index 712d6a2a2..abdcd43ba 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/list.vue @@ -212,7 +212,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/single.vue index 0ef806ad7..e699c3108 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/single.vue @@ -175,6 +175,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, }, }, diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/singleFlow.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/singleFlow.vue index 0e284e8de..b9bf79c46 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/singleFlow.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Student/singleFlow.vue @@ -97,6 +97,7 @@ export default { { field:'Quantity', type:'input', name:'采购数量' }, { field:'Unit', type:'input', name:'单位' }, { field:'UseTo', type:'input', name:'用途' }, + { field:'Spec', type:'input', name:'规格' }, ]}, } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/list.vue index b4c9f078f..5787660e0 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/list.vue @@ -205,7 +205,7 @@ export default { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, - queryJson: JSON.stringify(this.searchData) + queryJson: JSON.stringify({...this.searchData,CreatorId:this.GET_GLOBAL('loginUser').userId}) }, '加载数据时出错' ) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/single.vue index 36a08cab8..0c8195dbe 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/Purchase_Travel/single.vue @@ -19,13 +19,13 @@ required readonly /> - + />