|
|
@ -12,23 +12,23 @@ |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-form-item label="流程发起人" :labelCol="labelCol" :wrapperCol="wrapperCol" > |
|
|
|
<a-form-item label="流程发起人" :labelCol="labelCol" :wrapperCol="wrapperCol" > |
|
|
|
<j-select-user-by-dep v-decorator="['createBy']"/> |
|
|
|
<j-select-user-by-dep v-decorator="['createBy']" disabled/> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-form-item label="流程发起公司" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
<a-form-item label="流程发起公司" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
<j-select-company v-decorator="['company']" multi/> |
|
|
|
<j-select-company v-decorator="['company']" multi disabled/> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-form-item label="流程发起部门" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
<a-form-item label="流程发起部门" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
<j-select-depart @orgCodeTxt="orgCodeTxt" v-decorator="['sysOrgCode']" multi/> |
|
|
|
<j-select-depart v-decorator="['sysOrgCode']" multi disabled/> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-form-item label="流程发起时间" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
<a-form-item label="流程发起时间" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
<j-date placeholder="请选择流程发起时间" v-decorator="['createTime']" :trigger-change="true" :show-time="true" |
|
|
|
<j-date placeholder="请选择流程发起时间" v-decorator="['createTime']" :show-time="true" |
|
|
|
date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%"/> |
|
|
|
date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%" disabled/> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-col :span="8"> |
|
|
@ -94,7 +94,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
const VALIDATE_NO_PASSED = Symbol() |
|
|
|
const VALIDATE_NO_PASSED = Symbol() |
|
|
|
import pick from 'lodash.pick' |
|
|
|
import pick from 'lodash.pick' |
|
|
|
import { getAction,httpAction } from '@/api/manage' |
|
|
|
import { getAction,httpAction,getCurrentTime } from '@/api/manage' |
|
|
|
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil' |
|
|
|
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil' |
|
|
|
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin' |
|
|
|
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin' |
|
|
|
import JFormContainer from '@/components/jeecg/JFormContainer' |
|
|
|
import JFormContainer from '@/components/jeecg/JFormContainer' |
|
|
@ -309,6 +309,7 @@ |
|
|
|
add: '/hy/processUdgetPlan/add', |
|
|
|
add: '/hy/processUdgetPlan/add', |
|
|
|
edit: '/hy/processUdgetPlan/edit', |
|
|
|
edit: '/hy/processUdgetPlan/edit', |
|
|
|
queryById: '/hy/processUdgetPlan/queryById', |
|
|
|
queryById: '/hy/processUdgetPlan/queryById', |
|
|
|
|
|
|
|
selectdeparment:'/sys/selectByUser', |
|
|
|
processUdgetPlanMaterial: { |
|
|
|
processUdgetPlanMaterial: { |
|
|
|
list: '/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId' |
|
|
|
list: '/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId' |
|
|
|
} |
|
|
|
} |
|
|
@ -374,6 +375,11 @@ |
|
|
|
this.init(); |
|
|
|
this.init(); |
|
|
|
} |
|
|
|
} |
|
|
|
this.getAllTable() |
|
|
|
this.getAllTable() |
|
|
|
|
|
|
|
let company = sessionStorage.getItem("PARENT_ID"); |
|
|
|
|
|
|
|
let userInfo=sessionStorage.getItem("USER_INFORMATION"); |
|
|
|
|
|
|
|
console.log(userInfo) |
|
|
|
|
|
|
|
// userInfo.company=company; |
|
|
|
|
|
|
|
this.popupCallback(company,userInfo); |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
/*回显数据*/ |
|
|
|
/*回显数据*/ |
|
|
@ -422,6 +428,7 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
/** 调用完edit()方法之后会自动调用此方法 */ |
|
|
|
/** 调用完edit()方法之后会自动调用此方法 */ |
|
|
|
editAfter() { |
|
|
|
editAfter() { |
|
|
|
|
|
|
|
console.log("这是编辑回显数据",this.data) |
|
|
|
let fieldval = pick(this.data, 'id','company', 'createTime', 'sysOrgCode', 'createBy', 'materialType', 'processPlan', 'needTime', 'orderNumber', 'fileId') |
|
|
|
let fieldval = pick(this.data, 'id','company', 'createTime', 'sysOrgCode', 'createBy', 'materialType', 'processPlan', 'needTime', 'orderNumber', 'fileId') |
|
|
|
this.$nextTick(() => { |
|
|
|
this.$nextTick(() => { |
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
@ -458,8 +465,20 @@ |
|
|
|
validateError(msg) { |
|
|
|
validateError(msg) { |
|
|
|
this.$message.error(msg) |
|
|
|
this.$message.error(msg) |
|
|
|
}, |
|
|
|
}, |
|
|
|
popupCallback(row) { |
|
|
|
popupCallback(company,row) { |
|
|
|
this.form.setFieldsValue(pick(row, 'company', 'createTime', 'sysOrgCode', 'createBy', 'materialType', 'processPlan', 'needTime', 'orderNumber', 'fileId')) |
|
|
|
let res=JSON.parse(row); |
|
|
|
|
|
|
|
console.log('获取我的数据',res.id) |
|
|
|
|
|
|
|
let param={} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
param.createBy=res.username; |
|
|
|
|
|
|
|
param.company=company; |
|
|
|
|
|
|
|
param.sysOrgCode=res.departIds; |
|
|
|
|
|
|
|
param.createTime= getCurrentTime(); |
|
|
|
|
|
|
|
this.data=param; |
|
|
|
|
|
|
|
let fieldval =pick(this.data, 'createBy','company','sysOrgCode','createTime') |
|
|
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
|
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
// handler |
|
|
|
// handler |
|
|
|
handleSubmit (e) { |
|
|
|
handleSubmit (e) { |
|
|
|