|
@@ -89,7 +89,7 @@
|
|
|
</el-table-column> -->
|
|
</el-table-column> -->
|
|
|
<el-table-column label="保存" fixed>
|
|
<el-table-column label="保存" fixed>
|
|
|
<template slot-scope="{row}" >
|
|
<template slot-scope="{row}" >
|
|
|
- <el-button type="primary" size="mini" @click="handleSave(row)" plain>保存</el-button>
|
|
|
|
|
|
|
+ <el-button type="primary" v-if="!row.isSum" size="mini" @click="handleSave(row)" plain>保存</el-button>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="serialNumber" fixed label="序号">
|
|
<el-table-column prop="serialNumber" fixed label="序号">
|
|
@@ -119,8 +119,10 @@
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="accountName" label="账户名称" width="180">
|
|
<el-table-column prop="accountName" label="账户名称" width="180">
|
|
|
<div class="item" slot-scope="scope">
|
|
<div class="item" slot-scope="scope">
|
|
|
|
|
+ <div v-if="!scope.row.isSum">
|
|
|
<el-input size="mini" class="item__input" v-model="scope.row.accountName" @blur="save(scope.row)"></el-input>
|
|
<el-input size="mini" class="item__input" v-model="scope.row.accountName" @blur="save(scope.row)"></el-input>
|
|
|
<div class="item__txt">{{scope.row.accountName}}</div>
|
|
<div class="item__txt">{{scope.row.accountName}}</div>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="curMonthReceived" label="本月到账资金" width="200">
|
|
<el-table-column prop="curMonthReceived" label="本月到账资金" width="200">
|
|
@@ -167,7 +169,7 @@
|
|
|
<div class="item__txt">{{scope.row.incomeTimeRange}}</div>
|
|
<div class="item__txt">{{scope.row.incomeTimeRange}}</div>
|
|
|
</div> -->
|
|
</div> -->
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="incomeType" label="收入类型" width="120">
|
|
|
|
|
|
|
+ <el-table-column prop="incomeTypeN" label="收入类型" width="120">
|
|
|
<!-- <div class="item" slot-scope="scope">
|
|
<!-- <div class="item" slot-scope="scope">
|
|
|
<el-select size="mini" v-model="scope.row.incomeType" class="item__input" placeholder="请选择" @change="save(scope.row)" >
|
|
<el-select size="mini" v-model="scope.row.incomeType" class="item__input" placeholder="请选择" @change="save(scope.row)" >
|
|
|
<el-option
|
|
<el-option
|
|
@@ -196,7 +198,7 @@
|
|
|
<div class="item__txt">{{scope.row.endDateStr}}</div>
|
|
<div class="item__txt">{{scope.row.endDateStr}}</div>
|
|
|
</div> -->
|
|
</div> -->
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="incomeDepartment" label="收入实现部门" width="200">
|
|
|
|
|
|
|
+ <el-table-column prop="departmentStr" label="收入实现部门" width="200">
|
|
|
<!-- <div class="item" slot-scope="scope">
|
|
<!-- <div class="item" slot-scope="scope">
|
|
|
<el-input size="mini" class="item__input" v-model="scope.row.incomeDepartment" @blur="save(scope.row)"></el-input>
|
|
<el-input size="mini" class="item__input" v-model="scope.row.incomeDepartment" @blur="save(scope.row)"></el-input>
|
|
|
<div class="item__txt">{{scope.row.incomeDepartment}}</div>
|
|
<div class="item__txt">{{scope.row.incomeDepartment}}</div>
|
|
@@ -204,14 +206,18 @@
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="accountingName" label="会计主体名称" width="200">
|
|
<el-table-column prop="accountingName" label="会计主体名称" width="200">
|
|
|
<div class="item" slot-scope="scope">
|
|
<div class="item" slot-scope="scope">
|
|
|
|
|
+ <div v-if="!scope.row.isSum">
|
|
|
<el-input size="mini" class="item__input" v-model="scope.row.accountingName" @blur="save(scope.row)"></el-input>
|
|
<el-input size="mini" class="item__input" v-model="scope.row.accountingName" @blur="save(scope.row)"></el-input>
|
|
|
<div class="item__txt">{{scope.row.accountingName}}</div>
|
|
<div class="item__txt">{{scope.row.accountingName}}</div>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="bak" label="备注" width="180">
|
|
<el-table-column prop="bak" label="备注" width="180">
|
|
|
<div class="item" slot-scope="scope">
|
|
<div class="item" slot-scope="scope">
|
|
|
|
|
+ <div v-if="!scope.row.isSum">
|
|
|
<el-input size="mini" class="item__input" v-model="scope.row.bak" @blur="save(scope.row)"></el-input>
|
|
<el-input size="mini" class="item__input" v-model="scope.row.bak" @blur="save(scope.row)"></el-input>
|
|
|
<div class="item__txt">{{scope.row.bak}}</div>
|
|
<div class="item__txt">{{scope.row.bak}}</div>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="yearMonthStr" label="所属年月" width="120"></el-table-column>
|
|
<el-table-column prop="yearMonthStr" label="所属年月" width="120"></el-table-column>
|