|
@@ -44,27 +44,27 @@
|
|
|
<el-form :model="data.formData" label-position="top">
|
|
|
<el-form-item label="报销明细">
|
|
|
<el-table :data="data.formData.T_reimburse_details" style="width: 100%">
|
|
|
- <el-table-column type="index" label="序号" width="70" />
|
|
|
- <el-table-column label="出差时间">
|
|
|
+ <el-table-column show-overflow-tooltip type="index" label="序号" width="70" />
|
|
|
+ <el-table-column show-overflow-tooltip label="出差时间">
|
|
|
<el-table-column label="起" width="120">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_trip_start_time }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="city" label="止" width="120">
|
|
|
+ <el-table-column show-overflow-tooltip prop="city" label="止" width="120">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_trip_end_time }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="出差地点">
|
|
|
- <el-table-column label="起" width="150">
|
|
|
+ <el-table-column show-overflow-tooltip label="出差地点">
|
|
|
+ <el-table-column show-overflow-tooltip label="起" width="150">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_trip_terminus }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="city" label="止" width="150">
|
|
|
+ <el-table-column show-overflow-tooltip prop="city" label="止" width="150">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_trip_origin }}
|
|
|
</template>
|
|
@@ -72,43 +72,43 @@
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
- <el-table-column label="费用类型" width="150">
|
|
|
+ <el-table-column show-overflow-tooltip label="费用类型" width="150">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_fee_type_name }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="费用明细" width="150">
|
|
|
+ <el-table-column show-overflow-tooltip label="费用明细" width="150">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_fee_details_name }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="费用金额" width="100">
|
|
|
+ <el-table-column show-overflow-tooltip label="费用金额" width="100">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_money }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="审批金额" width="100">
|
|
|
+ <el-table-column show-overflow-tooltip label="审批金额" width="100">
|
|
|
<template #default="scope">
|
|
|
<el-input v-model="scope.row.T_approval_money" :disabled="data.drawerTiti=='详情'?true:false" placeholder="审批金额" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="审批意见" width="100" show-overflow-tooltip>
|
|
|
+ <el-table-column show-overflow-tooltip label="审批意见" width="100">
|
|
|
<template #default="scope">
|
|
|
<el-input v-model="scope.row.T_approval_opinion" v-if="data.drawerTiti!='详情'" placeholder="审批意见" />
|
|
|
<div v-if="data.drawerTiti=='详情'" style="overflow:hidden; white-space: nowrap; text-overflow: ellipsis;">{{ scope.row.T_approval_opinion }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="费用事由" width="150">
|
|
|
+ <el-table-column show-overflow-tooltip label="费用事由" width="150">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_reasons }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="涉及项目" width="150" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column show-overflow-tooltip label="涉及项目" width="150">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.T_project }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="附件" min-width="80">
|
|
|
+ <el-table-column show-overflow-tooltip label="附件" min-width="80">
|
|
|
<template #default="scope">
|
|
|
<upImg v-model:upImg="scope.row.T_img" :imgData="scope.row.T_img" :disabled="true"></upImg>
|
|
|
</template>
|
|
@@ -127,18 +127,18 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="打款明细">
|
|
|
<el-table :data="data.formData.T_remit_detail" :header-cell-style="{ background: '#f5f7fa' }" border>
|
|
|
- <el-table-column type="index" label="序号" fixed width="70" />
|
|
|
- <el-table-column label="打款时间" :width="data.drawerTiti == '编辑'?'300':''">
|
|
|
+ <el-table-column show-overflow-tooltip type="index" label="序号" fixed width="70" />
|
|
|
+ <el-table-column show-overflow-tooltip label="打款时间" :width="data.drawerTiti == '编辑'?'300':''">
|
|
|
<template #default="scope">
|
|
|
<el-date-picker v-model="scope.row.T_time" type="date" value-format="YYYY-MM-DD" placeholder="打款时间" :disabled="data.drawerTiti == '详情'?true:false"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="打款金额" :width="data.drawerTiti == '编辑'?'300':''">
|
|
|
+ <el-table-column show-overflow-tooltip label="打款金额" :width="data.drawerTiti == '编辑'?'300':''">
|
|
|
<template #default="scope">
|
|
|
<el-input v-model="scope.row.T_money" placeholder="打款金额" :disabled="data.drawerTiti == '详情'?true:false" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column fixed="right" min-width="300" v-if="data.drawerTiti == '编辑'">
|
|
|
+ <el-table-column show-overflow-tooltip fixed="right" min-width="300" v-if="data.drawerTiti == '编辑'">
|
|
|
<template #default="scope">
|
|
|
<el-popconfirm title="删除当前明细,确定删除吗?" @confirm="newDel" width="235"
|
|
|
confirm-button-text="立即删除" cancel-button-text="取消">
|