Browse Source

入库流程,报废流程关联

dev
0.0 2 years ago
parent
commit
9d722a539c
  1. 7
      src/components/jeecg/modal/ProcessDelivery.vue
  2. 7
      src/components/jeecg/modal/ProcessPlan.vue
  3. 2
      src/utils/request.js
  4. 4
      src/views/activiti/form/ProcessMaterialWarehousingForm.vue

7
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) {

7
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) {

2
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) => {

4
src/views/activiti/form/ProcessMaterialWarehousingForm.vue

@ -35,7 +35,7 @@
<!-- <a-input v-decorator="['processUdgetPlanId']" placeholder="请输入关联预算流程" ></a-input>-->
<h-plan v-decorator="['processUdgetPlanId',validatorRules.processUdgetPlanId]" :trigger-change="true"
code="demo" field="name" orgFields="name" @mounted="getPlanList" @callType="getcallType"
destFields="name" :multi="true" />
destFields="name" />
<!-- <j-popup-->
<!-- v-decorator="['one']"-->
<!-- :trigger-change="true"-->
@ -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 {

Loading…
Cancel
Save