会计事项平台更新
This commit is contained in:
parent
b99eaf608a
commit
cb3ea27389
|
@ -14,20 +14,20 @@
|
||||||
<div class="right" v-loading="tableLoading">
|
<div class="right" v-loading="tableLoading">
|
||||||
<div class="topBox" style="margin-bottom: 10px">
|
<div class="topBox" style="margin-bottom: 10px">
|
||||||
<div class="searchBox">
|
<div class="searchBox">
|
||||||
<div style="margin-left: 10px;display: flex;align-items: center">
|
<div style="margin-left: 5px;display: flex;align-items: center;">
|
||||||
单据号:
|
<div style="width: 100px">单据号:</div>
|
||||||
<el-input v-model="searchObjTable.billCode" clearable></el-input>
|
<el-input v-model="searchObjTable.billCode" clearable></el-input>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin-left: 10px;display: flex;align-items: center">
|
<div style="margin-left: 5px;display: flex;align-items: center">
|
||||||
单据日期起:
|
<div>单据日期起:</div>
|
||||||
<el-date-picker v-model="searchObjTable.timeStart" value-format="yyyy-MM-dd" type="date"></el-date-picker>
|
<el-date-picker v-model="searchObjTable.timeStart" value-format="yyyy-MM-dd" type="date"></el-date-picker>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin-left: 10px;display: flex;align-items: center">
|
<div style="margin-left: 5px;display: flex;align-items: center">
|
||||||
单据日期止:
|
<div>单据日期止:</div>
|
||||||
<el-date-picker v-model="searchObjTable.timeEnd" value-format="yyyy-MM-dd" type="date"></el-date-picker>
|
<el-date-picker v-model="searchObjTable.timeEnd" value-format="yyyy-MM-dd" type="date"></el-date-picker>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin-left: 10px;display: flex;align-items: center">
|
<div style="margin-left: 5px;display: flex;align-items: center">
|
||||||
生成状态:
|
<div style="width: 100px">生成状态:</div>
|
||||||
<el-select
|
<el-select
|
||||||
class="w-100"
|
class="w-100"
|
||||||
v-model="searchObjTable.billStatus"
|
v-model="searchObjTable.billStatus"
|
||||||
|
@ -59,25 +59,18 @@
|
||||||
tableHeight="calc(50vh - 100px)" :tableData="tableData" :tableColumn="tableColumn"
|
tableHeight="calc(50vh - 100px)" :tableData="tableData" :tableColumn="tableColumn"
|
||||||
@radioChange="radioChange" id="printMe"
|
@radioChange="radioChange" id="printMe"
|
||||||
>
|
>
|
||||||
|
<template #billStatus="{row}">
|
||||||
|
<div>{{ row.billStatus === 'Y' ? '已生成' : '未生成' }}</div>
|
||||||
|
</template>
|
||||||
<template #operation="{row}">
|
<template #operation="{row}">
|
||||||
<div class="btnList">
|
<div @click="generateHandle(row)" style="cursor: pointer">
|
||||||
<div class="settingBtn" @click="generateHandle(row)">
|
生成
|
||||||
生成
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</base-table>
|
</base-table>
|
||||||
</div>
|
</div>
|
||||||
<!-- 辅助核算-->
|
<!-- 辅助核算-->
|
||||||
<template v-if="this.selected.length">
|
<template v-if="this.selected.length">
|
||||||
<div class="leftTitle"
|
|
||||||
style="display: flex;align-items: center;justify-content: space-between;margin-top: 10px"
|
|
||||||
>
|
|
||||||
<div>辅助核算</div>
|
|
||||||
<div>
|
|
||||||
<el-button v-if="editFlag" size="mini" type="primary" @click="sonTableDataHandle">新增行</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="table">
|
<div class="table">
|
||||||
<base-table ref="customtable" :showIndex="false" :slotrow="false"
|
<base-table ref="customtable" :showIndex="false" :slotrow="false"
|
||||||
tableHeight="calc(50vh - 100px)" :tableData="this.selected[0].assistEntityList"
|
tableHeight="calc(50vh - 100px)" :tableData="this.selected[0].assistEntityList"
|
||||||
|
@ -198,22 +191,39 @@ export default {
|
||||||
assistTableData: [],
|
assistTableData: [],
|
||||||
assistTableColumn: [
|
assistTableColumn: [
|
||||||
{
|
{
|
||||||
label: '辅助核算类型',
|
label: '账簿',
|
||||||
prop: 'mdmName'
|
prop: 'mdmName'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '辅助核算内容',
|
label: '单据日期',
|
||||||
prop: 'fieldName'
|
prop: 'fieldName',
|
||||||
|
width: 150
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '备注',
|
label: '凭证类别',
|
||||||
prop: 'remark'
|
prop: 'remark',
|
||||||
|
width: 150
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '操作',
|
label: '凭证号',
|
||||||
prop: 'operation',
|
prop: 'operation',
|
||||||
width: 60
|
width: 100
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
label: '摘要',
|
||||||
|
prop: 'operation',
|
||||||
|
width: 160
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '借方',
|
||||||
|
prop: 'operation',
|
||||||
|
width: 160
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '贷方',
|
||||||
|
prop: 'operation',
|
||||||
|
width: 160
|
||||||
|
},
|
||||||
],
|
],
|
||||||
billTypeClickCode: '',
|
billTypeClickCode: '',
|
||||||
masterTableData: [],
|
masterTableData: [],
|
||||||
|
@ -479,8 +489,7 @@ export default {
|
||||||
tableColumn: [
|
tableColumn: [
|
||||||
{
|
{
|
||||||
label: '单据号',
|
label: '单据号',
|
||||||
prop: 'billCode',
|
prop: 'billCode'
|
||||||
width: 200
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '单据日期',
|
label: '单据日期',
|
||||||
|
@ -540,7 +549,7 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//生成方法
|
//生成方法
|
||||||
generateHandle(row){
|
generateHandle(row) {
|
||||||
|
|
||||||
},
|
},
|
||||||
async ixedValueFormelDialogClick(row) {
|
async ixedValueFormelDialogClick(row) {
|
||||||
|
@ -1844,7 +1853,13 @@ export default {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
margin-right: 10px;
|
margin-right: 5px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
>div{
|
||||||
|
width: 140px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue