审批流程显示方式更新,多个视图页面及组件修改。

This commit is contained in:
zmj 2024-05-29 11:15:21 +08:00
parent ff803fa78d
commit def0c35f4e
3 changed files with 20 additions and 24 deletions

View File

@ -22,7 +22,7 @@
</el-table-column>
<el-table-column label="报销项目" show-overflow-tooltip prop="cate_id">
<template #default="{ row }">
<dict-value :options="dictData.oa_approve_cate" :value="row.cate_id" />
{{ cateIdToText(row.cate_id) }}
</template>
</el-table-column>
<el-table-column label="备注信息" show-overflow-tooltip prop="remark">
@ -131,14 +131,6 @@ const userStore = useUserStore().userInfo;
const showBackDialog = ref(false)
defineProps({
dictData: {
type: Object as PropType<Record<string, any[]>>,
default: () => ({})
},
})
//
const formData = reactive({
id: 0,
@ -184,6 +176,17 @@ const submituser = (e) => {
};
const cateIdToText = (id) => {
// 1- 2-宿 3- 4- 5- 6-
if (id == 1) return '交通费';
if (id == 2) return '住宿费';
if (id == 3) return '餐补费';
if (id == 4) return '招待费';
if (id == 5) return '汽油费';
if (id == 6) return '其他费';
}
//
const open = () => {
popupRef.value?.open()

View File

@ -43,9 +43,12 @@
<el-table-column label="报销项目" show-overflow-tooltip>
<template #default="{ row }">
<el-select v-model="row.cate_id" placeholder="请选择报销项目" class="flex-1">
<el-option :label="item.name" :value="item.value"
v-for="item in dictData.oa_approve_cate">
</el-option>
<el-option label="交通费" :value="1"></el-option>
<el-option label="住宿费" :value="2"></el-option>
<el-option label="餐补费" :value="3"></el-option>
<el-option label="招待费" :value="4"></el-option>
<el-option label="汽油费" :value="5"></el-option>
<el-option label="其他费" :value="6"></el-option>
</el-select>
</template>
</el-table-column>
@ -83,13 +86,6 @@ const mode = ref("add");
defineProps({
dictData: {
type: Object as PropType<Record<string, any[]>>,
default: () => ({})
},
})
//
const popupTitle = computed(() => {
return "新增审批"

View File

@ -74,16 +74,14 @@
<pagination v-model="pager" @change="getLists" />
</div>
</el-card>
<edit-popup v-if="showEdit" ref="editRef" :deptList="deptList" :dict-data="dictData" @success="getLists"
@close="showEdit = false" />
<detailPopup v-if="showDetail" ref="detailRef" :dict-data="dictData" @success="showDetail = false, getLists()"
<edit-popup v-if="showEdit" ref="editRef" :deptList="deptList" @success="getLists" @close="showEdit = false" />
<detailPopup v-if="showDetail" ref="detailRef" @success="showDetail = false, getLists()"
@close="showDetail = false, getLists()" />
</div>
</template>
<script lang="ts" setup name="oaPersonalQuitLists">
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
import { apiExpenseList, apiExpenseDetail } from '@/api/oa_financial'
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
@ -114,7 +112,6 @@ const handleSelectionChange = (val: any[]) => {
}
//
const { dictData } = useDictData('oa_approve_cate')
//
const { pager, getLists, resetParams, resetPage } = usePaging({