12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import xcrud from 'xcrud'
- import golbalConfig from 'xcrud/package/common/config'
- import showConfig from '../flowable/showConfig'
- golbalConfig.set({
- input: {
- // size: 'mini'
- },
- select: {
- // size: 'mini'
- },
- colorPicker: {
- showAlpha: true
- },
- xform: {
- form: {
- labelWidth: 'auto'
- // size: 'mini'
- }
- }
- })
- export default {
- components: { xForm: xcrud.xForm },
- props: {
- modeler: {
- type: Object,
- required: true
- },
- element: {
- type: Object,
- required: true
- },
- categorys: {
- type: Array,
- default: () => []
- }
- },
- watch: {
- 'formData.id': function(val) {
- this.updateProperties({ id: val })
- },
- 'formData.name': function(val) {
- this.updateProperties({ name: val })
- },
- 'formData.documentation': function(val) {
- if (!val) {
- this.updateProperties({ documentation: [] })
- return
- }
- const documentationElement = this.modeler.get('moddle').create('bpmn:Documentation', { text: val })
- this.updateProperties({ documentation: [documentationElement] })
- }
- },
- methods: {
- updateProperties(properties) {
- const modeling = this.modeler.get('modeling')
- modeling.updateProperties(this.element, properties)
- }
- },
- computed: {
- elementType() {
- const bizObj = this.element.businessObject
- return bizObj.eventDefinitions
- ? bizObj.eventDefinitions[0].$type
- : bizObj.$type
- },
- showConfig() {
- return showConfig[this.elementType] || {}
- }
- }
- }
|