Conflicts:
	src/views/infra/fileConfig/fileConfig.data.ts
	src/views/system/sms/smsChannel/sms.channel.data.ts
This commit is contained in:
YunaiV
2023-03-17 01:36:21 +08:00
29 changed files with 518 additions and 524 deletions

View File

@ -45,17 +45,22 @@ const tabsList = [
const pageList = computed(() => {
if (currentPage.value === 1) {
return copyIconList[currentActiveType.value]
.filter((v) => v.includes(filterValue.value))
?.filter((v) => v.includes(filterValue.value))
.slice(currentPage.value - 1, pageSize.value)
} else {
return copyIconList[currentActiveType.value]
.filter((v) => v.includes(filterValue.value))
?.filter((v) => v.includes(filterValue.value))
.slice(
pageSize.value * (currentPage.value - 1),
pageSize.value * (currentPage.value - 1) + pageSize.value
)
}
})
const iconCount = computed(() => {
return copyIconList[currentActiveType.value] == undefined
? 0
: copyIconList[currentActiveType.value].length
})
const iconItemStyle = computed((): ParameterCSSProperties => {
return (item) => {
@ -159,7 +164,7 @@ watch(
<ElPagination
small
:total="copyIconList[currentActiveType].length as unknown as number"
:total="iconCount"
:page-size="pageSize"
:current-page="currentPage"
background

View File

@ -128,7 +128,7 @@ const getColumnsConfig = (options: XTableProps) => {
proxyForm = true
options.formConfig = {
enabled: true,
titleWidth: 100,
titleWidth: 180,
titleAlign: 'right',
items: allSchemas.searchSchema
}

View File

@ -1,6 +1,6 @@
<template>
<div class="my-process-designer">
<div class="my-process-designer__header">
<div class="my-process-designer__header" style="display: table-row-group; z-index: 999">
<slot name="control-header"></slot>
<template v-if="!$slots['control-header']">
<ElButtonGroup key="file-control">

View File

@ -3,10 +3,8 @@
<el-form label-width="90px">
<el-form-item label="回路特性">
<el-select v-model="loopCharacteristics" @change="changeLoopCharacteristicsType">
<!--bpmn:MultiInstanceLoopCharacteristics-->
<el-option label="并行多重事件" value="ParallelMultiInstance" />
<el-option label="时序多重事件" value="SequentialMultiInstance" />
<!--bpmn:StandardLoopCharacteristics-->
<el-option label="循环事件" value="StandardLoop" />
<el-option label="无" value="Null" />
</el-select>