123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546 |
- <template>
- <div class="form-main">
- <a-card :body-style="{padding: '24px 32px'}" :bordered="false">
- <!-- <a-form @submit="handleSubmit" :form="form">
- <a-form-item
- label="标题"
- :labelCol="{lg: {span: 7}, sm: {span: 7}}"
- :wrapperCol="{lg: {span: 10}, sm: {span: 17} }">
- <a-input :disabled="disabled"
- v-decorator="[
- 'name',
- {rules: [{ required: true, message: '请输入标题' }]}
- ]"
- name="name"
- placeholder="给目标起个名字" />
- </a-form-item>
- <a-form-item v-if="!disabled"
- :wrapperCol="{ span: 24 }"
- style="text-align: center"
- >
- <a-button htmlType="submit" 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>-->
- <k-form-build
- :value="jsonData"
- @change="handleChange"
- :dynamicData="dynamicData"
- ref="KFB"
- @submit="handleSubmit"
- />
- <div style="text-align:center">
- <a-button
- htmlType="submit"
- type="primary"
- :disabled="disabled||btndisabled"
- @click="handleSubmit"
- >保存</a-button>
- <todoManageOperation
- v-if="processData.operationType&&processData.operationType=='1'"
- :processData="processData"
- :todoManageOperationObject="todoManageOperationObject"
- :disabled="disabled"
- :btndisabled="btndisabled"
- @refreshToDo="refreshToDo"
- @handleSubmit2="handleSubmit2"
- ></todoManageOperation>
- <a-button style="margin-left: 8px;" :disabled="disabled||disabled2" @click="close">取消</a-button>
- </div>
- </a-card>
- </div>
- </template>
- <script>
- import pick from 'lodash.pick'
- import todoManageOperation from '../operation/todoManageOperation'
- import { postAction } from '@/api/manage'
- export default {
- name: 'demoForm',
- props: {
- /*全局禁用,可表示查看*/
- disabled: {
- type: Boolean,
- default: false,
- required: false
- },
- /*流程数据*/
- processData: {
- type: Object,
- default: () => {
- return {}
- },
- required: false
- },
- /*是否新增*/
- isNew: { type: Boolean, default: false, required: false }
- },
- components: {
- todoManageOperation
- },
- data() {
- return {
- todoManageOperationObject: {
- isSave: false,
- formData: {}
- },
- disabled2: false, //用来取决于表单时不同流程节点填写不同表单信息使用
- jsonData: {},
- url: {
- getForm: '/actBusiness/getForm',
- addApply: '/actBusiness/add',
- editForm: '/actBusiness/editForm',
- leaveType: '/sys/dict/getDictItems'
- },
- description: '流程表单demo,按例开发表单。需在 activitiMixin.js 中加入写好的表单',
- // form
- form: this.$form.createForm(this),
- /*表单回显数据*/
- data: {},
- btndisabled: false,
- ceshi_file: null,
- dynamicData: {
- typeData: [], //请假类型下拉数据
- reimbursementTypeList: [], //报销类型下拉数据
- invoiceTypeList: [] //发票类型下拉数据
- }
- }
- },
- created() {
- console.log('流程数据', this.processData)
- //加载一些下拉选择数据等
- // this.getDataList()
- let businessTable = ''
- //如果没有值则在另一个属性上有值
- if (!this.processData.businessTable) {
- this.processData.businessTable = this.processData.tableName
- }
- this.getAction('/tbTableInfo/query', {
- businessTable: this.processData.businessTable,
- taskNodeId: this.processData.key
- }).then(res => {
- // this.$refs.KFB.setData({aaa:null,bbb:null,name:"123"})
- // this.$refs.KFB.getData().then(res => {
- // console.log('aaa',res)
- // })
- var jsonString = JSON.stringify(res.result.jsonContent)
- // var jsonString='123d"dynamicKey":"666"'
- var index = 1
- var dynamicKeyValueList = []
- for (var index = 1; index !== -1; ) {
- //动态字符位置
- index = jsonString.indexOf('"dynamicKey"', index)
- if (index !== -1) {
- //从指定字符的周后一个字符后开始找(")
- var ihStart = jsonString.indexOf('"', index + 12)
- //再从 (") 后面位置还是找下一个 (")
- var ihEnd = jsonString.indexOf('"', ihStart + 1)
- //获取引号之间的字符
- var dynamicKeyValue = jsonString.substring(ihStart + 1, ihEnd)
- //如果动态表示不为空则获取
- if (dynamicKeyValue != '') {
- dynamicKeyValueList.push(dynamicKeyValue)
- }
- index = ihEnd + 1
- }
- }
- //循环动态数据源表示获取数据
- // if(dynamicKeyValueList.length>0){
- // dynamicKeyValueList.forEach(async element => {
- // await this.getDataListByName(element);
- // });
- // }
- console.log(dynamicKeyValueList)
- if (dynamicKeyValueList.length > 0) {
- //获取数据字典数据源
- postAction('/sys/dict/getDictItems/getDictList', dynamicKeyValueList).then(dictData => {
- if (dictData.success) {
- this.dynamicData = dictData.result.dicList
- //获取用户下拉数据
- this.getAction('/sys/user/list',{pageSize:20000}).then(userData => {
- if (res.success) {
- userData.result.records.forEach(user => {
- user.label = user.realname
- user.value = user.username
- })
- //存到动态数据源中
- this.dynamicData.userList = userData.result.records
- //获取json
- this.jsonData = res.result.jsonContent
- if (!this.isNew) {
- this.init()
- }
- } else {
- this.$message.error(userData.message)
- }
- })
- } else {
- this.$message.error(dictData.message)
- }
- })
- } else {
- //获取json
- this.jsonData = res.result.jsonContent
- if (!this.isNew) {
- this.init()
- }
- }
- //后台检测到流程节点有关联表单且前台处于我的待办界面打开表单详情
- if (res.result.isSave && this.processData.isSuspended != undefined) {
- this.disabled = false
- this.btndisabled = false
- }
- })
- },
- methods: {
- //根据字典名字获取数据源
- getDataListByName(name) {
- this.getAction(this.url.leaveType + '/' + name).then(res => {
- if (res.success) {
- this.dynamicData[name] = res.result
- console.log(111)
- } else {
- this.$message.error(res.message)
- }
- })
- },
- //获取获取下拉数据等
- getDataList() {
- //获取请假类型下拉数据
- this.getAction(this.url.leaveType + '/leave_type').then(res => {
- if (res.success) {
- this.dynamicData.typeData = res.result
- } else {
- this.$message.error(res.message)
- }
- })
- //获取报销类型下拉数据
- this.getAction(this.url.leaveType + '/reimbursement_type').then(res => {
- if (res.success) {
- this.dynamicData.reimbursementTypeList = res.result
- } else {
- this.$message.error(res.message)
- }
- })
- //获取发票类型下拉数据
- this.getAction(this.url.leaveType + '/invoice_type').then(res => {
- if (res.success) {
- this.dynamicData.invoiceTypeList = res.result
- } else {
- this.$message.error(res.message)
- }
- })
- },
- /*回显数据*/
- 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)
- console.log(this.data)
- this.$refs.KFB.setData(this.data)
- // this.$nextTick(() => {
- // this.$refs.KFB.form.setFieldsValue(pick(this.data, 'name'))
- // })
- this.btndisabled = false
- } else {
- this.$message.error(res.message)
- }
- })
- },
- //表单字段数值发生改变事件
- handleChange(value, key) {
- // 数据变化时触发
- //如果开始时间发生变化
- if (key == 'start_time') {
- //判断结束时间是否存在
- if (this.$refs.KFB.form.getFieldValue('end_time')) {
- //获取时间差
- let duration = startEndFun(value, this.$refs.KFB.form.getFieldValue('end_time'))
- if (duration) {
- // 使用k-form-design组件的form属性修改表单数据
- this.$refs.KFB.setData({
- duration: duration
- })
- }
- }
- }
- //如果结束时间发生变化
- if (key == 'end_time') {
- //判断结束时间是否存在
- if (this.$refs.KFB.form.getFieldValue('start_time')) {
- //获取时间差
- let duration = startEndFun(this.$refs.KFB.form.getFieldValue('start_time'), value)
- if (duration) {
- // 使用k-form-design组件的form属性修改表单数据
- this.$refs.KFB.setData({
- duration: duration
- })
- }
- }
- }
- },
- // handler
- handleSubmit(e) {
- // return new Promise((resolve)=>{
- //通过函数获取数据
- this.$refs.KFB.getData()
- .then(res => {
- //清除为空的表单数据
- _.keys(res).forEach(r => {
- if (!res[r]) {
- delete res[r]
- }
- })
- // 获取数据成功
- let formData = JSON.parse(JSON.stringify(res))
- console.log(formData)
- formData.id = this.data.id
- formData.procDefId = this.processData.id
- formData.procDeTitle = this.processData.name
- if (!formData.tableName) formData.tableName = this.processData.businessTable
- formData.filedNames = _.keys(res).join(',')
- formData.filedNames = getFiledNames(formData) //获取主表字段,排除子表标识
- var url = this.url.addApply
- if (!this.isNew) {
- url = this.url.editForm
- }
- //是否存在子表
- let ischild = false
- //循环表单字段属性判断是否属性中包含数组对象
- let i = 0 //子表数量
- _.keys(res)
- .join(',')
- .split(',')
- .forEach(element => {
- if (formData[element] instanceof Array) {
- //判断是否符合子表命名规则
- if (element.indexOf('&') != -1) {
- let tableChildNameList = element.split('&')
- //判断是否能拆分两个字符,子表标识和子表数据库名称
- if (tableChildNameList.length == 2) {
- i++
- let childName = tableChildNameList[1] //子表数据库名称
- if (!formData.table_name_children) {
- //第一次拼接
- formData.table_name_children = childName //表名
- } else {
- //后面的表明拼接用“,”隔开
- formData.table_name_children = formData.table_name_children + ',' + childName //表名
- }
- //定义属性名和值
- formData['childFiledNames' + i] = _.keys(formData[element][0]).join(',') //子表字段名
- formData['childList' + i] = JSON.stringify(formData[element]) //子表数据
- ischild = true
- }
- } else {
- //如果不是子表则是上传文件,则转字符串
- formData[element] = JSON.stringify(formData[element])
- }
- }
- // formData[element];
- })
- //判断需不需要存子表
- if (ischild) {
- formData.filedNames = formData.filedNames + ',table_name_children'
- }
- console.log(formData)
- //子表数据
- //调用保存接口
- this.btndisabled = true
- this.todoManageOperationObject.formData = formData
- this.todoManageOperationObject.url = url
- //非我的待办节点打卡表单界面
- this.postFormAction(url, formData)
- .then(res => {
- if (res.success) {
- this.todoManageOperationObject.isSave = true
- this.$message.success('保存成功!')
- console.log('123')
- this.$emit('afterSubmit', formData)
- this.$emit('close')
- // resolve(true);
- } else {
- this.$message.error(res.message)
- // resolve(false);
- }
- })
- .finally(() => {
- this.btndisabled = false
- // resolve(false);
- })
- })
- .catch(err => {
- console.log(err, '校验失败')
- // resolve(false);
- })
- // })
- },
- //我的待办点击通过保存专用
- handleSubmit2(e) {
- // return new Promise((resolve)=>{
- //通过函数获取数据
- this.$refs.KFB.getData()
- .then(res => {
- // 获取数据成功
- let formData = JSON.parse(JSON.stringify(res))
- console.log(formData)
- formData.id = this.data.id
- formData.procDefId = this.processData.id
- formData.procDeTitle = this.processData.name
- if (!formData.tableName) formData.tableName = this.processData.businessTable
- formData.filedNames = _.keys(res).join(',')
- formData.filedNames = getFiledNames(formData) //获取主表字段,排除子表标识
- var url = this.url.addApply
- if (!this.isNew) {
- url = this.url.editForm
- }
- //是否存在子表
- let ischild = false
- //循环表单字段属性判断是否属性中包含数组对象
- let i = 0 //子表数量
- _.keys(res)
- .join(',')
- .split(',')
- .forEach(element => {
- if (formData[element] instanceof Array) {
- //判断是否符合子表命名规则
- if (element.indexOf('&') != -1) {
- let tableChildNameList = element.split('&')
- //判断是否能拆分两个字符,子表标识和子表数据库名称
- if (tableChildNameList.length == 2) {
- i++
- let childName = tableChildNameList[1] //子表数据库名称
- if (!formData.table_name_children) {
- //第一次拼接
- formData.table_name_children = childName //表名
- } else {
- //后面的表明拼接用“,”隔开
- formData.table_name_children = formData.table_name_children + ',' + childName //表名
- }
- //定义属性名和值
- formData['childFiledNames' + i] = _.keys(formData[element][0]).join(',') //子表字段名
- formData['childList' + i] = JSON.stringify(formData[element]) //子表数据
- ischild = true
- }
- } else {
- //如果不是子表则是上传文件,则转字符串
- formData[element] = JSON.stringify(formData[element])
- }
- }
- // formData[element];
- })
- //判断需不需要存子表
- if (ischild) {
- formData.filedNames = formData.filedNames + ',table_name_children'
- }
- console.log(formData)
- //子表数据
- //调用保存接口
- this.btndisabled = true
- this.todoManageOperationObject.formData = formData
- this.todoManageOperationObject.url = url
- })
- .catch(err => {
- console.log(err, '校验失败')
- // resolve(false);
- })
- // })
- },
- close() {
- this.$emit('close')
- },
- getData() {
- // 通过函数获取数据
- this.$refs.KFB.getData()
- .then(res => {
- // 获取数据成功
- alert(JSON.stringify(res))
- })
- .catch(err => {
- console.log(err, '校验失败')
- })
- },
- //刷新待办列表
- refreshToDo() {
- this.close()
- this.$emit('getDataList')
- }
- }
- }
- //获取主表字段,排除子表标识
- function getFiledNames(formData) {
- let filedNames = ''
- let list = formData.filedNames.split(',') //获取表单属性名集合
- list.forEach(element => {
- if (element.indexOf('&') == -1) {
- //查询是否有这个字段
- if (filedNames == '') {
- //第一次则直接等于
- filedNames = element
- } else {
- //后面用逗号隔开
- filedNames = filedNames + ',' + element
- }
- }
- })
- return filedNames
- }
- //根据开始时间 结束时间计算天数
- function startEndFun(start, end) {
- if (start && end) {
- let startTime = new Date(start) // 开始时间
- let endTime = new Date(end) // 结束时间
- let usedTime = endTime - startTime // 相差的毫秒数
- let days = (usedTime / 1000 / 60 / 60).toFixed(2) // 计算出天数
- return days
- } else {
- return null
- }
- }
- //格式化时间
- function formatDate(date, fmt) {
- if (/(y+)/.test(fmt)) {
- fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
- }
- let o = {
- 'M+': date.getMonth() + 1,
- 'd+': date.getDate(),
- 'h+': date.getHours(),
- 'm+': date.getMinutes(),
- 's+': date.getSeconds()
- }
- for (let k in o) {
- if (new RegExp(`(${k})`).test(fmt)) {
- let str = o[k] + ''
- fmt = fmt.replace(RegExp.$1, RegExp.$1.length === 1 ? str : padLeftZero(str))
- }
- }
- return fmt
- }
- function padLeftZero(str) {
- return ('00' + str).substr(str.length)
- }
- </script>
- <style lang="less" scoped>
- .form-main {
- }
- </style>
|