|
@@ -44,7 +44,7 @@
|
|
|
<span v-else>{{ scope.$index + 1 }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="costNo" label="编号">
|
|
|
+ <el-table-column prop="costNo" label="编号" width="100px">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="feeType" label="类型">
|
|
|
<template slot-scope="scope">
|
|
@@ -52,7 +52,7 @@
|
|
|
<div v-if='scope.row.expensesType==2'>支出</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="purpose" label="用途">
|
|
|
+ <el-table-column prop="purpose" label="用途" width="150px">
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if='scope.row.expensesPurpose==1'>合同费用
|
|
|
<span v-if='scope.row.costType==1'>-粮款</span>
|
|
@@ -71,6 +71,18 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="purpose" label="流向" width="200px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if='scope.row.expensesPurpose==1'>
|
|
|
+ <span>{{ scope.row.contractNo }}</span>
|
|
|
+ </div>
|
|
|
+ <div v-if='scope.row.expensesPurpose==3'>
|
|
|
+ <span>{{scope.row.warehouseName}}</span>
|
|
|
+ </div>
|
|
|
+ <div v-if='scope.row.expensesPurpose==5'>中天昊元
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="expenseName" label="费用名称"></el-table-column>
|
|
|
<el-table-column prop="amountMoney" width="120" label="费用金额(元)"></el-table-column>
|
|
|
<el-table-column prop="unallocatedAmount" width="100" label="未分配(元)"></el-table-column>
|
|
@@ -88,14 +100,14 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="agent" label="经办人"></el-table-column>
|
|
|
- <el-table-column prop="expenseDate" label="发起日期"></el-table-column>
|
|
|
- <el-table-column prop="status" label="费用状态" width="120">
|
|
|
+ <el-table-column prop="createDate" label="发起日期" width="90"></el-table-column>
|
|
|
+ <el-table-column prop="status" label="费用状态" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if='scope.row.approveStatus'>{{scope.row.approveStatus}}</span><span v-else>{{scope.row.status}}</span>
|
|
|
<i @click="handlerecord(scope.row)" class="el-icon-s-claim"></i>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="address" label="操作" width="500">
|
|
|
+ <el-table-column prop="address" label="操作" width="300">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button @click="look(scope.row)" type="primary">查看</el-button>
|
|
|
<el-button v-if='scope.row.status=="待确认"&&scope.row.expensesType==1' @click="shoukuanqueren(scope.row)" type="primary">确认</el-button>
|