release: 1.7.0

master 1.7.0@Saber3.0.1
ssc 3 years ago
parent 6981b2364f
commit b1213dda31
  1. 2
      src/views/plugin/workflow/design/model.vue
  2. 8
      src/views/plugin/workflow/process/components/form.vue
  3. 6
      src/views/plugin/workflow/process/send.vue

@ -413,7 +413,7 @@ export default {
</script>
<style lang="scss" scoped>
/deep/ .avue-crud__img {
::v-deep .avue-crud__img {
img {
width: 32px;
height: 32px;

@ -64,8 +64,9 @@ export default {
handler(val) {
if (val) {
const param = JSON.parse(Buffer.from(val, 'base64').toString())
const { processId, processDefKey } = param
const { processId, processDefKey, params } = param
if (processId || processDefKey) this.getForm(processId, processDefKey)
if (params) this.params = params
}
},
immediate: true
@ -83,7 +84,8 @@ export default {
form: {},
option: {},
process: {},
loading: false
loading: false,
params: null
}
},
methods: {
@ -117,6 +119,8 @@ export default {
option.group = groupArr
this.option = option
if (!this.validatenull(this.params)) this.form = {...this.form, ...this.params}
if (this.permission.wf_process_draft) {
// 稿
this.initDraft(process.id).then(data => {

@ -108,9 +108,15 @@ export default {
prop: "category",
search: true,
},
{
label: '当前处理人',
prop: 'assigneeName',
overHidden: true
},
{
label: '当前节点',
prop: 'taskName',
overHidden: true
},
{
label: '申请时间',

Loading…
Cancel
Save