diff --git a/src/components/jeecg/modal/ProcessDelivery.vue b/src/components/jeecg/modal/ProcessDelivery.vue index 208e6b0..e3d5833 100644 --- a/src/components/jeecg/modal/ProcessDelivery.vue +++ b/src/components/jeecg/modal/ProcessDelivery.vue @@ -199,7 +199,7 @@ // } ], url: { - list: '/hy/processMaterialsDelivery/list', + list: '/hy/processMaterialsDelivery/listByDel', delete: '/hy/processMaterialsDelivery/delete', deleteBatch: '/hy/processMaterialsDelivery/deleteBatch', exportXlsUrl: '/hy/processMaterialsDelivery/exportXls', @@ -270,10 +270,13 @@ } //加载数据 若传入参数1则加载第一页的内容 if (arg === 1) { - this.pagination.current = 1 + this.pagination.current = arg } this.onClearSelected() var params = this.queryParams()//查询条件 + if(this.changeData){ + params.id=this.changeData[0] + } this.loading = true getAction(this.url.list, params).then((res) => { if (res.success) { diff --git a/src/components/jeecg/modal/ProcessPlan.vue b/src/components/jeecg/modal/ProcessPlan.vue index 3400cac..7066d9c 100644 --- a/src/components/jeecg/modal/ProcessPlan.vue +++ b/src/components/jeecg/modal/ProcessPlan.vue @@ -297,11 +297,14 @@ return } //加载数据 若传入参数1则加载第一页的内容 - // if (arg === 1) { + if (arg === 1) { this.pagination.current = arg - // } + } this.onClearSelected() var params = this.getQueryParams()//查询条件 + if(this.changeData){ + params.id=this.changeData[0] + } this.loading = true getAction(this.url.list, params).then((res) => { if (res.success) { diff --git a/src/utils/request.js b/src/utils/request.js index cf5acf0..b010648 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -17,7 +17,7 @@ let apiBaseUrl = window._CONFIG['domianURL'] || "/jeecg-boot"; const service = axios.create({ //baseURL: '/jeecg-boot', baseURL: apiBaseUrl, // api base_url - timeout: 9000 // 请求超时时间 + timeout: 20000 // 请求超时时间 }) const err = (error) => { diff --git a/src/views/activiti/form/ProcessMaterialWarehousingForm.vue b/src/views/activiti/form/ProcessMaterialWarehousingForm.vue index 547f3d5..cdc4c38 100644 --- a/src/views/activiti/form/ProcessMaterialWarehousingForm.vue +++ b/src/views/activiti/form/ProcessMaterialWarehousingForm.vue @@ -35,7 +35,7 @@ + destFields="name" /> @@ -409,7 +409,7 @@ import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep' this.btndisabled = true httpAction(url, formData, method).then((res) => { if (res.success) { - this.$message.success('保存成功!') + //this.$message.success('保存成功!') //todo 将表单的数据传给父组件 this.$emit('afterSubmit', formData) } else {