|
@@ -9,11 +9,23 @@
|
|
|
style="width: 210px"
|
|
|
/>
|
|
|
</div>
|
|
|
+ <div class="form" style="width: 380px">
|
|
|
+ <span class="formSpan">申请时间:</span>
|
|
|
+ <el-date-picker
|
|
|
+ v-model="queryParams.applyTime"
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ type="daterange"
|
|
|
+ unlink-panels
|
|
|
+ range-separator="到"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
<div class="form">
|
|
|
<span class="formSpan">状态:</span>
|
|
|
<el-select v-model="queryParams.status" placeholder="状态" clearable class="!w-240px">
|
|
|
<el-option
|
|
|
- v-for="dict in getIntDictOptions(DICT_TYPE.FINANCE_STATUS)"
|
|
|
+ v-for="dict in getIntDictOptions(DICT_TYPE.FINANCE_STATUS2)"
|
|
|
:key="dict.value"
|
|
|
:label="dict.label"
|
|
|
:value="dict.value"
|
|
@@ -48,7 +60,11 @@
|
|
|
label="申请时间"
|
|
|
/>
|
|
|
<el-table-column align="center" prop="totalAmount" label="报销总金额" />
|
|
|
- <el-table-column align="center" prop="status" label="状态" />
|
|
|
+ <el-table-column label="状态" align="center" prop="flowStatus">
|
|
|
+ <template #default="scope">
|
|
|
+ <dict-tag :type="DICT_TYPE.FINANCE_STATUS2" :value="scope.row.flowStatus" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" label="操作" width="80" fixed="right">
|
|
|
<template #default="scope">
|
|
|
<div class="operateBtn" @click="operateClick(scope.row)">
|