Browse Source

添加所有流程表单提交功能

dev
long 2 years ago
parent
commit
abee022ced
  1. 6
      src/views/activiti/applyList.vue
  2. 18
      src/views/activiti/doneManage.vue
  3. 76
      src/views/activiti/form/ProcessMaterialBorrowingForm.vue
  4. 77
      src/views/activiti/form/ProcessMaterialWarehousingForm.vue
  5. 76
      src/views/activiti/form/ProcessMaterialsAllotForm.vue
  6. 76
      src/views/activiti/form/ProcessMaterialsDeliveryForm.vue
  7. 76
      src/views/activiti/form/ProcessMaterialsReturnForm.vue
  8. 76
      src/views/activiti/form/ProcessSmaterialsScrapForm.vue
  9. 76
      src/views/activiti/form/ProcessSpecialMaterialsForm.vue
  10. 15
      src/views/activiti/form/ProcessUdgetPlanForm.vue
  11. 4
      src/views/system/modules/PasswordModal.vue

6
src/views/activiti/applyList.vue

@ -219,10 +219,10 @@
<a-select-option :value="2">紧急</a-select-option>
</a-select>
</a-form-item>
<a-form-item label="消息通知">
<a-form-item label="消息通知" v-show="false">
<a-checkbox v-model="form.sendMessage">站内消息通知</a-checkbox>
<a-checkbox v-model="form.sendSms" disabled>短信通知</a-checkbox>
<a-checkbox v-model="form.sendEmail" disabled>邮件通知</a-checkbox>
<!-- <a-checkbox v-model="form.sendSms" disabled>短信通知</a-checkbox>
<a-checkbox v-model="form.sendEmail" disabled>邮件通知</a-checkbox>-->
</a-form-item>
<div slot="footer">
<a-button type="text" @click="modalVisible=false">取消</a-button>

18
src/views/activiti/doneManage.vue

@ -109,7 +109,7 @@
</a-card>
<!---->
<a-modal title="审批历史" v-model="modalLsVisible" :mask-closable="false" :width="'80%'" :footer="null">
<div v-if="modalLsVisible">
<div v-if="modalLsVisible">
<component :is="historicDetail" :procInstId="procInstId"></component>
</div>
</a-modal>
@ -213,6 +213,13 @@ export default {
);
return;
}
this.lcModa.disabled = true
this.lcModa.title = '查看流程业务信息:' + r.processName
this.lcModa.formComponent = this.getFormComponent(r.routeName).component
this.lcModa.processData = r
this.lcModa.isNew = false
this.lcModa.isTask = true
this.lcModa.visible = true
},
history(r) {
if (!r.procInstId) {
@ -221,15 +228,6 @@ export default {
}
this.procInstId = r.procInstId;
this.modalLsVisible = true;
this.lcModa.disabled = true
this.lcModa.title = '查看流程业务信息:' + r.processName
this.lcModa.formComponent = this.getFormComponent(r.routeName).component
this.lcModa.processData = r
this.lcModa.isNew = false
this.lcModa.isTask = true
this.lcModa.visible = true
},
remove(v) {
this.postFormAction(this.url.deleteHistoricTask+v.id).then(res => {

76
src/views/activiti/form/ProcessMaterialBorrowingForm.vue

@ -73,8 +73,8 @@
<script>
import pick from 'lodash.pick'
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { getAction,httpAction } from '@/api/manage'
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
import JFormContainer from '@/components/jeecg/JFormContainer'
@ -221,6 +221,7 @@
]
},
url: {
getForm:'/actBusiness/getForm',
add: "/hy/processMaterialBorrowing/add",
edit: "/hy/processMaterialBorrowing/edit",
queryById: "/hy/processMaterialBorrowing/queryById",
@ -300,9 +301,7 @@
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'name'))
});
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -331,13 +330,13 @@
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model,'updateFirm','createTime','sysOrgCode','createBy','materialType','borrowedDepartments','fileId')
let fieldval = pick(this.data,'updateFirm','createTime','sysOrgCode','createBy','materialType','borrowedDepartments','fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processMaterialBorrowingList.list, params, this.processMaterialBorrowingListTable)
}
},
@ -368,34 +367,45 @@
},
// handler
handleSubmit (e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
let formData = Object.assign(this.data||{}, values)
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
formData.filedNames = _.keys(values).join(",");
console.log('formData', values)
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues=>{
console.log('所有数据',allValues)
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
var url = this.url.addApply;
if (!this.isNew){
url = this.url.editForm;
}
this.btndisabled = true;
this.postFormAction(url,formData).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
}).finally(()=>{
this.btndisabled = false;
})
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
})
},
}

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

@ -84,8 +84,8 @@
<script>
import pick from 'lodash.pick'
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { getAction,httpAction } from '@/api/manage'
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import { validateDuplicateValue } from '@/utils/util'
import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
@ -309,6 +309,7 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
]
},
url: {
getForm:'/actBusiness/getForm',
add: "/hy/processMaterialWarehousing/add",
edit: "/hy/processMaterialWarehousing/edit",
queryById: "/hy/processMaterialWarehousing/queryById",
@ -388,9 +389,7 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'name'))
});
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -410,34 +409,44 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
this.$emit('backTask')
},
handleSubmit (e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
let formData = Object.assign(this.data||{}, values)
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
formData.filedNames = _.keys(values).join(",");
console.log('formData', values)
var url = this.url.addApply;
if (!this.isNew){
url = this.url.editForm;
}
this.btndisabled = true;
this.postFormAction(url,formData).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues=>{
console.log('所有数据',allValues)
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
})
},
addBefore(){
this.form.resetFields()
@ -449,13 +458,13 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model,'company','createTime','sysOrgCode','createBy','processUdgetPlanId','materialType','targetLibrary','warehousingBatch','fileId')
let fieldval = pick(this.data,'company','createTime','sysOrgCode','createBy','processUdgetPlanId','materialType','targetLibrary','warehousingBatch','fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processMaterialWarehousingList.list, params, this.processMaterialWarehousingListTable)
}
},

76
src/views/activiti/form/ProcessMaterialsAllotForm.vue

@ -73,8 +73,8 @@
<script>
import pick from 'lodash.pick'
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { getAction,httpAction } from '@/api/manage'
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
import JFormContainer from '@/components/jeecg/JFormContainer'
@ -222,6 +222,7 @@
]
},
url: {
getForm:'/actBusiness/getForm',
add: "/hy/processMaterialsAllot/add",
edit: "/hy/processMaterialsAllot/edit",
queryById: "/hy/processMaterialsAllot/queryById",
@ -301,9 +302,7 @@
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'name'))
});
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -323,34 +322,45 @@
this.$emit('backTask')
},
handleSubmit (e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
let formData = Object.assign(this.data||{}, values)
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
formData.filedNames = _.keys(values).join(",");
console.log('formData', values)
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues=>{
console.log('所有数据',allValues)
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
var url = this.url.addApply;
if (!this.isNew){
url = this.url.editForm;
}
this.btndisabled = true;
this.postFormAction(url,formData).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
}).finally(()=>{
this.btndisabled = false;
})
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
})
},
addBefore(){
this.form.resetFields()
@ -362,13 +372,13 @@
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model,'company','createTime','sysOrgCode','createBy','materialType','beAllotDepartment','fileId')
let fieldval = pick(this.data,'company','createTime','sysOrgCode','createBy','materialType','beAllotDepartment','fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processMaterialsAllotList.list, params, this.processMaterialsAllotListTable)
}
},

76
src/views/activiti/form/ProcessMaterialsDeliveryForm.vue

@ -73,8 +73,8 @@
<script>
import pick from 'lodash.pick'
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { getAction,httpAction } from '@/api/manage'
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
@ -230,6 +230,7 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
]
},
url: {
getForm:'/actBusiness/getForm',
add: "/hy/processMaterialsDelivery/add",
edit: "/hy/processMaterialsDelivery/edit",
queryById: "/hy/processMaterialsDelivery/queryById",
@ -309,9 +310,7 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'name'))
});
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -331,34 +330,45 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
this.$emit('backTask')
},
handleSubmit (e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
let formData = Object.assign(this.data||{}, values)
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
formData.filedNames = _.keys(values).join(",");
console.log('formData', values)
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues=>{
console.log('所有数据',allValues)
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
var url = this.url.addApply;
if (!this.isNew){
url = this.url.editForm;
}
this.btndisabled = true;
this.postFormAction(url,formData).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
}).finally(()=>{
this.btndisabled = false;
})
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
})
},
addBefore(){
this.form.resetFields()
@ -370,13 +380,13 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model,'company','createTime','sysOrgCode','createBy','materialType','deliveryTime','fileId')
let fieldval = pick(this.data,'company','createTime','sysOrgCode','createBy','materialType','deliveryTime','fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processMaterialsDeliveryList.list, params, this.processMaterialsDeliveryListTable)
}
},

76
src/views/activiti/form/ProcessMaterialsReturnForm.vue

@ -73,8 +73,8 @@
<script>
import pick from 'lodash.pick'
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { getAction,httpAction } from '@/api/manage'
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
@ -223,6 +223,7 @@
]
},
url: {
getForm:'/actBusiness/getForm',
add: "/hy/processMaterialsReturn/add",
edit: "/hy/processMaterialsReturn/edit",
queryById: "/hy/processMaterialsReturn/queryById",
@ -302,9 +303,7 @@
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'name'))
});
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -324,34 +323,45 @@
this.$emit('backTask')
},
handleSubmit (e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
let formData = Object.assign(this.data||{}, values)
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
formData.filedNames = _.keys(values).join(",");
console.log('formData', values)
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues=>{
console.log('所有数据',allValues)
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
var url = this.url.addApply;
if (!this.isNew){
url = this.url.editForm;
}
this.btndisabled = true;
this.postFormAction(url,formData).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
}).finally(()=>{
this.btndisabled = false;
})
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
})
},
addBefore(){
this.form.resetFields()
@ -363,13 +373,13 @@
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model,'company','createTime','sysOrgCode','createBy','materialType','processBorrowId','fileId')
let fieldval = pick(this.data,'company','createTime','sysOrgCode','createBy','materialType','processBorrowId','fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processMaterialsReturnList.list, params, this.processMaterialsReturnListTable)
}
},

76
src/views/activiti/form/ProcessSmaterialsScrapForm.vue

@ -73,8 +73,8 @@
<script>
import pick from 'lodash.pick'
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { getAction,httpAction } from '@/api/manage'
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
@ -224,6 +224,7 @@
]
},
url: {
getForm:'/actBusiness/getForm',
add: "/hy/processSmaterialsScrap/add",
edit: "/hy/processSmaterialsScrap/edit",
queryById: "/hy/processSmaterialsScrap/queryById",
@ -300,9 +301,7 @@
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'name'))
});
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -322,34 +321,45 @@
this.$emit('backTask')
},
handleSubmit (e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
let formData = Object.assign(this.data||{}, values)
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
formData.filedNames = _.keys(values).join(",");
console.log('formData', values)
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues=>{
console.log('所有数据',allValues)
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
var url = this.url.addApply;
if (!this.isNew){
url = this.url.editForm;
}
this.btndisabled = true;
this.postFormAction(url,formData).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
}).finally(()=>{
this.btndisabled = false;
})
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
})
},
addBefore(){
this.form.resetFields()
@ -361,13 +371,13 @@
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model,'company','createTime','sysOrgCode','createBy','materialType','processOutflowId','fileId')
let fieldval = pick(this.data,'company','createTime','sysOrgCode','createBy','materialType','processOutflowId','fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processSmaterialsScrapList.list, params, this.processSmaterialsScrapListTable)
}
},

76
src/views/activiti/form/ProcessSpecialMaterialsForm.vue

@ -73,8 +73,8 @@
<script>
import pick from 'lodash.pick'
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { getAction,httpAction } from '@/api/manage'
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
@ -216,6 +216,7 @@
]
},
url: {
getForm:'/actBusiness/getForm',
add: "/hy/processSpecialMaterials/add",
edit: "/hy/processSpecialMaterials/edit",
queryById: "/hy/processSpecialMaterials/queryById",
@ -295,9 +296,7 @@
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'name'))
});
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -317,34 +316,45 @@
this.$emit('backTask')
},
handleSubmit (e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
let formData = Object.assign(this.data||{}, values)
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
formData.filedNames = _.keys(values).join(",");
console.log('formData', values)
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues=>{
console.log('所有数据',allValues)
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
var url = this.url.addApply;
if (!this.isNew){
url = this.url.editForm;
}
this.btndisabled = true;
this.postFormAction(url,formData).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
}).finally(()=>{
this.btndisabled = false;
})
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
})
},
addBefore(){
this.form.resetFields()
@ -356,13 +366,13 @@
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model,'company','createTime','sysOrgCode','createBy','materialType','processReturnId','fileId')
let fieldval = pick(this.data,'company','createTime','sysOrgCode','createBy','materialType','processReturnId','fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processSpecialMaterialsList.list, params, this.processSpecialMaterialsListTable)
}
},

15
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -389,14 +389,7 @@
formData.tableName = r.tableName;
this.data = formData;
console.log("表单回显数据",this.data)
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.data,'id','company', 'createTime', 'sysOrgCode', 'createBy', 'materialType', 'processPlan', 'needTime', 'orderNumber', 'fileId'))
});
//
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processUdgetPlanMaterial.list, params, this.processUdgetPlanMaterialTable)
}
this.editAfter();
this.btndisabled = false;
}else {
this.$message.error(res.message)
@ -429,13 +422,13 @@
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
let fieldval = pick(this.model, 'company', 'createTime', 'sysOrgCode', 'createBy', 'materialType', 'processPlan', 'needTime', 'orderNumber', 'fileId')
let fieldval = pick(this.data, 'company', 'createTime', 'sysOrgCode', 'createBy', 'materialType', 'processPlan', 'needTime', 'orderNumber', 'fileId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
//
if (this.model.id) {
let params = { id: this.model.id }
if (this.data.id) {
let params = { id: this.data.id }
this.requestSubTableData(this.url.processUdgetPlanMaterial.list, params, this.processUdgetPlanMaterialTable)
}
},

4
src/views/system/modules/PasswordModal.vue

@ -41,7 +41,7 @@
confirmLoading: false,
confirmDirty: false,
validatorRules:{
password:{
/* password:{
// rules: [{
// required: true,
// pattern:/^(?=.*[a-zA-Z])(?=.*\d)(?=.*[~!@#$%^&*()_+`\-={}:";'<>?,./]).{8,}$/,
@ -49,7 +49,7 @@
// }, {
// validator: this.validateToNextPassword,
// }],
},
},*/
confirmpassword:{
rules: [{
required: true, message: '请重新输入登录密码!',

Loading…
Cancel
Save