console.log
parent
cf67d08bfd
commit
f8d408b612
|
|
@ -68,13 +68,11 @@ const resetBaseInfo = () => {
|
||||||
console.log(bpmnElement.value, 'bpmnElement')
|
console.log(bpmnElement.value, 'bpmnElement')
|
||||||
|
|
||||||
bpmnElement.value = bpmnInstances()?.bpmnElement
|
bpmnElement.value = bpmnInstances()?.bpmnElement
|
||||||
console.log(bpmnElement.value, 'resetBaseInfo11111111111')
|
|
||||||
elementBaseInfo.value = bpmnElement.value.businessObject
|
elementBaseInfo.value = bpmnElement.value.businessObject
|
||||||
needProps.value['type'] = bpmnElement.value.businessObject.$type
|
needProps.value['type'] = bpmnElement.value.businessObject.$type
|
||||||
// elementBaseInfo.value['typess'] = bpmnElement.value.businessObject.$type
|
// elementBaseInfo.value['typess'] = bpmnElement.value.businessObject.$type
|
||||||
|
|
||||||
// elementBaseInfo.value = JSON.parse(JSON.stringify(bpmnElement.value.businessObject))
|
// elementBaseInfo.value = JSON.parse(JSON.stringify(bpmnElement.value.businessObject))
|
||||||
console.log(elementBaseInfo.value, 'elementBaseInfo22222222222')
|
|
||||||
}
|
}
|
||||||
const handleKeyUpdate = (value) => {
|
const handleKeyUpdate = (value) => {
|
||||||
// 校验 value 的值,只有 XML NCName 通过的情况下,才进行赋值。否则,会导致流程图报错,无法绘制的问题
|
// 校验 value 的值,只有 XML NCName 通过的情况下,才进行赋值。否则,会导致流程图报错,无法绘制的问题
|
||||||
|
|
@ -121,7 +119,6 @@ const updateBaseInfo = (key) => {
|
||||||
// id: elementBaseInfo.value[key]
|
// id: elementBaseInfo.value[key]
|
||||||
// // di: { id: `${elementBaseInfo.value[key]}_di` }
|
// // di: { id: `${elementBaseInfo.value[key]}_di` }
|
||||||
// }
|
// }
|
||||||
console.log(elementBaseInfo, 'elementBaseInfo11111111111')
|
|
||||||
needProps.value = { ...elementBaseInfo.value, ...needProps.value }
|
needProps.value = { ...elementBaseInfo.value, ...needProps.value }
|
||||||
|
|
||||||
if (key === 'id') {
|
if (key === 'id') {
|
||||||
|
|
@ -144,14 +141,12 @@ onMounted(() => {
|
||||||
console.log(props.model, 'props.model')
|
console.log(props.model, 'props.model')
|
||||||
handleKeyUpdate(props.model.key)
|
handleKeyUpdate(props.model.key)
|
||||||
handleNameUpdate(props.model.name)
|
handleNameUpdate(props.model.name)
|
||||||
console.log(props, 'propsssssssssssssssssssss')
|
|
||||||
}, 1000)
|
}, 1000)
|
||||||
})
|
})
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.businessObject,
|
() => props.businessObject,
|
||||||
(val) => {
|
(val) => {
|
||||||
console.log(val, 'val11111111111111111111')
|
|
||||||
if (val) {
|
if (val) {
|
||||||
// nextTick(() => {
|
// nextTick(() => {
|
||||||
resetBaseInfo()
|
resetBaseInfo()
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,6 @@ const attributeFormRef = ref()
|
||||||
const bpmnInstances = () => (window as any)?.bpmnInstances
|
const bpmnInstances = () => (window as any)?.bpmnInstances
|
||||||
|
|
||||||
const resetAttributesList = () => {
|
const resetAttributesList = () => {
|
||||||
console.log(window, 'windowwindowwindowwindowwindowwindowwindow')
|
|
||||||
bpmnElement.value = bpmnInstances().bpmnElement
|
bpmnElement.value = bpmnInstances().bpmnElement
|
||||||
otherExtensionList.value = [] // 其他扩展配置
|
otherExtensionList.value = [] // 其他扩展配置
|
||||||
bpmnElementProperties.value =
|
bpmnElementProperties.value =
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@ const { t } = useI18n() // 国际化
|
||||||
const tenantPackageOption = []
|
const tenantPackageOption = []
|
||||||
const getTenantPackageOptions = async () => {
|
const getTenantPackageOptions = async () => {
|
||||||
const res = await smsApi.getSimpleSmsChannels()
|
const res = await smsApi.getSimpleSmsChannels()
|
||||||
console.log(res, 'resresres')
|
|
||||||
res.forEach((tenantPackage: TenantPackageVO) => {
|
res.forEach((tenantPackage: TenantPackageVO) => {
|
||||||
tenantPackageOption.push({
|
tenantPackageOption.push({
|
||||||
key: tenantPackage.id,
|
key: tenantPackage.id,
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ const validateName = (rule: any, value: any, callback: any) => {
|
||||||
if (value === '') {
|
if (value === '') {
|
||||||
callback(new Error('请输入用户名称'))
|
callback(new Error('请输入用户名称'))
|
||||||
} else {
|
} else {
|
||||||
console.log(reg.test(rule), 'reg.test(rule)')
|
// console.log(reg.test(rule), 'reg.test(rule)')
|
||||||
if (!reg.test(value)) {
|
if (!reg.test(value)) {
|
||||||
callback(new Error('用户名称由 数字、字母 组成'))
|
callback(new Error('用户名称由 数字、字母 组成'))
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue