|
|
|
<template>
|
|
|
|
<a-spin :spinning="confirmLoading">
|
|
|
|
<j-form-container :disabled="formDisabled">
|
|
|
|
<a-form :form="form" slot="detail">
|
|
|
|
<a-row>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="流程发起公司" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['company']" :trigger-change="true" dictCode="" placeholder="请选择流程发起公司" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="流程发起时间" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-date placeholder="请选择流程发起时间" v-decorator="['createTime']" :trigger-change="true" style="width: 100%" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="流程发起部门" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['sysOrgCode']" :trigger-change="true" dictCode="" placeholder="请选择流程发起部门" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="流程发起人" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['createBy']" :trigger-change="true" dictCode="" placeholder="请选择流程发起人" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="授权人" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['authorizationPerson']" :trigger-change="true" dictCode="" placeholder="请选择授权人" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="被授权人" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['authorizedPerson']" :trigger-change="true" dictCode="" placeholder="请选择被授权人" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="授权时间(开启时间)" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-date placeholder="请选择授权时间(开启时间)" v-decorator="['privilegedTimeStart']" :trigger-change="true" style="width: 100%" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="授权时间(结束时间)" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-date placeholder="请选择授权时间(结束时间)" v-decorator="['privilegedTimeEnd']" :trigger-change="true" style="width: 100%" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="是否继续授权" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<j-switch v-decorator="['continueAuthorize']" ></j-switch>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="授权时间(确认时间)" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<a-input v-decorator="['privilegedAffirmedTime']" placeholder="请输入授权时间(确认时间)" ></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="授权天数" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<a-input-number v-decorator="['authorizationNumberDays']" placeholder="请输入授权天数" style="width: 100%" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-form-item label="文件id" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
|
<a-input v-decorator="['fileId']" placeholder="请输入文件id" ></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center">
|
|
|
|
<a-button @click="submitForm">提 交</a-button>
|
|
|
|
</a-col>
|
|
|
|
</a-row>
|
|
|
|
</a-form>
|
|
|
|
</j-form-container>
|
|
|
|
<div class="div_process">
|
|
|
|
<a-form-item v-if="!disabled" :wrapperCol="{ span: 24 }" style="text-align: center">
|
|
|
|
<a-button type="primary" :disabled="disabled||btndisabled" @click="handleSubmit">保存</a-button>
|
|
|
|
<a-button style="margin-left: 8px" :disabled="disabled" @click="close">取消</a-button>
|
|
|
|
</a-form-item>
|
|
|
|
<a-form-item v-if="task" :wrapperCol="{ span: 24 }" style="text-align: center">
|
|
|
|
<a-button type="primary" @click="passTask">通过</a-button>
|
|
|
|
<a-button style="margin-left: 8px" @click="backTask">驳回</a-button>
|
|
|
|
</a-form-item>
|
|
|
|
</div>
|
|
|
|
</a-spin>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
import { httpAction, getAction } from '@/api/manage'
|
|
|
|
import pick from 'lodash.pick'
|
|
|
|
import { FormTypes, getRefPromise,validateFormAndTables } from '@/utils/JEditableTableUtil'
|
|
|
|
import JFormContainer from '@/components/jeecg/JFormContainer'
|
|
|
|
import JDate from '@/components/jeecg/JDate'
|
|
|
|
import JDictSelectTag from "@/components/dict/JDictSelectTag"
|
|
|
|
import JSwitch from '@/components/jeecg/JSwitch'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ProcessPermissionAuthorizationForm',
|
|
|
|
components: {
|
|
|
|
JFormContainer,
|
|
|
|
JDate,
|
|
|
|
JDictSelectTag,
|
|
|
|
JSwitch,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
/*流程数据*/
|
|
|
|
processData:{
|
|
|
|
type:Object,
|
|
|
|
default:()=>{return {}},
|
|
|
|
required:false
|
|
|
|
},
|
|
|
|
/*是否新增*/
|
|
|
|
isNew: {type: Boolean, default: false, required: false},
|
|
|
|
/*是否处理流程*/
|
|
|
|
task: {type: Boolean, default: false, required: false},
|
|
|
|
//流程表单data
|
|
|
|
formData: {
|
|
|
|
type: Object,
|
|
|
|
default: ()=>{},
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
//表单模式:true流程表单 false普通表单
|
|
|
|
formBpm: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
//表单禁用
|
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
form: this.$form.createForm(this),
|
|
|
|
model: {},
|
|
|
|
labelCol: {
|
|
|
|
xs: { span: 24 },
|
|
|
|
sm: { span: 5 },
|
|
|
|
},
|
|
|
|
wrapperCol: {
|
|
|
|
xs: { span: 24 },
|
|
|
|
sm: { span: 16 },
|
|
|
|
},
|
|
|
|
confirmLoading: false,
|
|
|
|
validatorRules: {
|
|
|
|
},
|
|
|
|
url: {
|
|
|
|
getForm:'/actBusiness/getForm',
|
|
|
|
add: "/processpermissionauthorization/processPermissionAuthorization/add",
|
|
|
|
edit: "/processpermissionauthorization/processPermissionAuthorization/edit",
|
|
|
|
queryById: "/processpermissionauthorization/processPermissionAuthorization/queryById"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
formDisabled(){
|
|
|
|
if(this.formBpm===true){
|
|
|
|
if(this.formData.disabled===false){
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return this.disabled
|
|
|
|
},
|
|
|
|
showFlowSubmitButton(){
|
|
|
|
if(this.formBpm===true){
|
|
|
|
if(this.formData.disabled===false){
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created () {
|
|
|
|
//如果是流程中表单,则需要加载流程表单data
|
|
|
|
this.showFlowData();
|
|
|
|
if (!this.isNew){
|
|
|
|
this.init();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/*回显数据*/
|
|
|
|
init(){
|
|
|
|
this.btndisabled = true;
|
|
|
|
var r = this.processData;
|
|
|
|
this.getAction(this.url.getForm,{
|
|
|
|
tableId:r.tableId,
|
|
|
|
tableName:r.tableName,
|
|
|
|
}).then((res)=>{
|
|
|
|
if (res.success){
|
|
|
|
let formData = res.result;
|
|
|
|
formData.tableName = r.tableName;
|
|
|
|
this.data = formData;
|
|
|
|
console.log("表单回显数据",this.data)
|
|
|
|
this.editAfter();
|
|
|
|
this.btndisabled = false;
|
|
|
|
}else {
|
|
|
|
this.$message.error(res.message)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
add () {
|
|
|
|
this.edit({});
|
|
|
|
},
|
|
|
|
edit (record) {
|
|
|
|
this.form.resetFields();
|
|
|
|
this.model = Object.assign({}, record);
|
|
|
|
this.visible = true;
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.form.setFieldsValue(pick(this.data,'company','createTime','sysOrgCode','createBy','authorizationPerson','authorizedPerson','privilegedTimeStart','privilegedTimeEnd','continueAuthorize','privilegedAffirmedTime','authorizationNumberDays','fileId'))
|
|
|
|
})
|
|
|
|
},
|
|
|
|
//渲染流程表单数据
|
|
|
|
showFlowData(){
|
|
|
|
if(this.formBpm === true){
|
|
|
|
let params = {id:this.formData.dataId};
|
|
|
|
getAction(this.url.queryById,params).then((res)=>{
|
|
|
|
if(res.success){
|
|
|
|
this.edit (res.result);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
handleSubmit () {
|
|
|
|
const that = this;
|
|
|
|
// 触发表单验证
|
|
|
|
this.form.validateFields((err, values) => {
|
|
|
|
if (!err) {
|
|
|
|
that.confirmLoading = true;
|
|
|
|
let httpurl = '';
|
|
|
|
let method = '';
|
|
|
|
if(!this.model.id){
|
|
|
|
httpurl+=this.url.add;
|
|
|
|
method = 'post';
|
|
|
|
}else{
|
|
|
|
httpurl+=this.url.edit;
|
|
|
|
method = 'put';
|
|
|
|
}
|
|
|
|
let formData = Object.assign(this.model, values);
|
|
|
|
console.log("表单提交数据",formData)
|
|
|
|
httpAction(httpurl,formData,method).then((res)=>{
|
|
|
|
if(res.success){
|
|
|
|
that.$message.success(res.message);
|
|
|
|
that.$emit('ok');
|
|
|
|
}else{
|
|
|
|
that.$message.warning(res.message);
|
|
|
|
}
|
|
|
|
}).finally(() => {
|
|
|
|
that.confirmLoading = false;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
},
|
|
|
|
popupCallback(row){
|
|
|
|
this.form.setFieldsValue(pick(row,'company','createTime','sysOrgCode','createBy','authorizationPerson','authorizedPerson','privilegedTimeStart','privilegedTimeEnd','continueAuthorize','privilegedAffirmedTime','authorizationNumberDays','fileId'))
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
.div_process{
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
</style>
|