Commit c8252160 by 芋道源码 Committed by GitHub

Merge pull request #63 from geekymv/fix-leave-status

修改OA请假示例审批结果字段
parents 3f3faaca db3b8285
...@@ -36,9 +36,9 @@ ...@@ -36,9 +36,9 @@
value-format="YYYY-MM-DD HH:mm:ss" value-format="YYYY-MM-DD HH:mm:ss"
/> />
</el-form-item> </el-form-item>
<el-form-item label="审批结果" prop="result"> <el-form-item label="审批结果" prop="status">
<el-select <el-select
v-model="queryParams.result" v-model="queryParams.status"
class="!w-240px" class="!w-240px"
clearable clearable
placeholder="请选择审批结果" placeholder="请选择审批结果"
...@@ -81,9 +81,9 @@ ...@@ -81,9 +81,9 @@
<ContentWrap> <ContentWrap>
<el-table v-loading="loading" :data="list"> <el-table v-loading="loading" :data="list">
<el-table-column align="center" label="申请编号" prop="id" /> <el-table-column align="center" label="申请编号" prop="id" />
<el-table-column align="center" label="状态" prop="result"> <el-table-column align="center" label="状态" prop="status">
<template #default="scope"> <template #default="scope">
<dict-tag :type="DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS" :value="scope.row.result" /> <dict-tag :type="DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS" :value="scope.row.status" />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment