Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3d579b3a
authored
Apr 19, 2023
by
puhui999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复流程表单:新建的时候id传的是event需要排除
parent
7a0202e2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
27 deletions
+39
-27
src/views/bpm/form/index.vue
+39
-27
No files found.
src/views/bpm/form/index.vue
View file @
3d579b3a
...
@@ -2,26 +2,33 @@
...
@@ -2,26 +2,33 @@
<ContentWrap>
<ContentWrap>
<!-- 搜索工作栏 -->
<!-- 搜索工作栏 -->
<el-form
<el-form
class=
"-mb-15px"
:model=
"queryParams"
ref=
"queryFormRef"
ref=
"queryFormRef"
:inline=
"true"
:inline=
"true"
:model=
"queryParams"
class=
"-mb-15px"
label-width=
"68px"
label-width=
"68px"
>
>
<el-form-item
label=
"表单名"
prop=
"name"
>
<el-form-item
label=
"表单名"
prop=
"name"
>
<el-input
<el-input
v-model=
"queryParams.name"
v-model=
"queryParams.name"
placeholder=
"请输入表单名
"
class=
"!w-240px
"
clearable
clearable
placeholder=
"请输入表单名"
@
keyup
.
enter=
"handleQuery"
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item>
<el-form-item>
<el-button
@
click=
"handleQuery"
><Icon
icon=
"ep:search"
class=
"mr-5px"
/>
搜索
</el-button>
<el-button
@
click=
"handleQuery"
>
<el-button
@
click=
"resetQuery"
><Icon
icon=
"ep:refresh"
class=
"mr-5px"
/>
重置
</el-button>
<Icon
class=
"mr-5px"
icon=
"ep:search"
/>
<el-button
type=
"primary"
plain
@
click=
"openForm"
v-hasPermi=
"['bpm:form:create']"
>
搜索
<Icon
icon=
"ep:plus"
class=
"mr-5px"
/>
新增
</el-button>
<el-button
@
click=
"resetQuery"
>
<Icon
class=
"mr-5px"
icon=
"ep:refresh"
/>
重置
</el-button>
<el-button
v-hasPermi=
"['bpm:form:create']"
plain
type=
"primary"
@
click=
"openForm"
>
<Icon
class=
"mr-5px"
icon=
"ep:plus"
/>
新增
</el-button>
</el-button>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
...
@@ -30,38 +37,38 @@
...
@@ -30,38 +37,38 @@
<!-- 列表 -->
<!-- 列表 -->
<ContentWrap>
<ContentWrap>
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
label=
"编号"
align=
"center
"
prop=
"id"
/>
<el-table-column
align=
"center"
label=
"编号
"
prop=
"id"
/>
<el-table-column
label=
"表单名"
align=
"center
"
prop=
"name"
/>
<el-table-column
align=
"center"
label=
"表单名
"
prop=
"name"
/>
<el-table-column
label=
"状态"
align=
"center
"
prop=
"status"
>
<el-table-column
align=
"center"
label=
"状态
"
prop=
"status"
>
<template
#
default=
"scope"
>
<template
#
default=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.COMMON_STATUS"
:value=
"scope.row.status"
/>
<dict-tag
:type=
"DICT_TYPE.COMMON_STATUS"
:value=
"scope.row.status"
/>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"备注"
align=
"center
"
prop=
"remark"
/>
<el-table-column
align=
"center"
label=
"备注
"
prop=
"remark"
/>
<el-table-column
<el-table-column
label=
"创建时间
"
:formatter=
"dateFormatter
"
align=
"center"
align=
"center"
label=
"创建时间"
prop=
"createTime"
prop=
"createTime"
:formatter=
"dateFormatter"
/>
/>
<el-table-column
label=
"操作"
align=
"center
"
>
<el-table-column
align=
"center"
label=
"操作
"
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
<el-button
<el-button
v-hasPermi=
"['bpm:form:update']"
link
link
type=
"primary"
type=
"primary"
@
click=
"openForm(scope.row.id)"
@
click=
"openForm(scope.row.id)"
v-hasPermi=
"['bpm:form:update']"
>
>
编辑
编辑
</el-button>
</el-button>
<el-button
link
@
click=
"openDetail(scope.row.id)"
v-hasPermi=
"['bpm:form:query']
"
>
<el-button
v-hasPermi=
"['bpm:form:query']"
link
@
click=
"openDetail(scope.row.id)
"
>
详情
详情
</el-button>
</el-button>
<el-button
<el-button
v-hasPermi=
"['bpm:form:delete']"
link
link
type=
"danger"
type=
"danger"
@
click=
"handleDelete(scope.row.id)"
@
click=
"handleDelete(scope.row.id)"
v-hasPermi=
"['bpm:form:delete']"
>
>
删除
删除
</el-button>
</el-button>
...
@@ -70,24 +77,25 @@
...
@@ -70,24 +77,25 @@
</el-table>
</el-table>
<!-- 分页 -->
<!-- 分页 -->
<Pagination
<Pagination
:total=
"total"
v-model:page=
"queryParams.pageNo"
v-model:limit=
"queryParams.pageSize"
v-model:limit=
"queryParams.pageSize"
v-model:page=
"queryParams.pageNo"
:total=
"total"
@
pagination=
"getList"
@
pagination=
"getList"
/>
/>
</ContentWrap>
</ContentWrap>
<!-- 表单详情的弹窗 -->
<!-- 表单详情的弹窗 -->
<Dialog
title=
"表单详情"
v-model=
"detailVisible
"
width=
"800"
>
<Dialog
v-model=
"detailVisible"
title=
"表单详情
"
width=
"800"
>
<form-create
:
rule=
"detailData.rule"
:option=
"detailData.option
"
/>
<form-create
:
option=
"detailData.option"
:rule=
"detailData.rule
"
/>
</Dialog>
</Dialog>
</template>
</template>
<
script
setup
lang=
"ts"
name=
"BpmForm"
>
<
script
lang=
"ts"
name=
"BpmForm"
setup
>
import
{
DICT_TYPE
}
from
'@/utils/dict'
import
{
DICT_TYPE
}
from
'@/utils/dict'
import
{
dateFormatter
}
from
'@/utils/formatTime'
import
{
dateFormatter
}
from
'@/utils/formatTime'
import
*
as
FormApi
from
'@/api/bpm/form'
import
*
as
FormApi
from
'@/api/bpm/form'
import
{
setConfAndFields2
}
from
'@/utils/formCreate'
import
{
setConfAndFields2
}
from
'@/utils/formCreate'
const
message
=
useMessage
()
// 消息弹窗
const
message
=
useMessage
()
// 消息弹窗
const
{
t
}
=
useI18n
()
// 国际化
const
{
t
}
=
useI18n
()
// 国际化
const
{
push
}
=
useRouter
()
// 路由
const
{
push
}
=
useRouter
()
// 路由
...
@@ -128,12 +136,16 @@ const resetQuery = () => {
...
@@ -128,12 +136,16 @@ const resetQuery = () => {
/** 添加/修改操作 */
/** 添加/修改操作 */
const
openForm
=
(
id
?:
number
)
=>
{
const
openForm
=
(
id
?:
number
)
=>
{
push
({
const
toRouter
:
{
name
:
string
;
query
?:
{
id
:
number
}
}
=
{
name
:
'BpmFormEditor'
,
name
:
'BpmFormEditor'
query
:
{
}
// 表单新建的时候id传的是event需要排除
if
(
typeof
id
===
'number'
)
{
toRouter
.
query
=
{
id
id
}
}
})
}
push
(
toRouter
)
}
}
/** 删除按钮操作 */
/** 删除按钮操作 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment