发票结算申请

This commit is contained in:
chenjianan
2019-03-04 19:00:34 +08:00
parent 64730157f6
commit 43e7a6ffb3
6 changed files with 923 additions and 25 deletions

View File

@@ -0,0 +1,67 @@
<template>
<div class="app-container">
<el-card>
<span>申请时间:</span>
<el-date-picker v-model="date1" size="small" type="date" format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择日期"/>&nbsp;~
<el-date-picker v-model="date2" size="small" type="date" format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择日期"/>
<el-button type="success" size="small" icon="el-icon-search" style="margin-left:10px" @click="total1=0;pageCurrent1=1;pageSize1=10;searchTable1()">查询</el-button>
</el-card>
<el-card>
登录角色采购部负责人生产部负责人财务部负责人总经理
表1
发票结算申请单点击查看发票附件信息 及表2点击审批通过/不通过原因审批时间
表2
采购入库单列表点击查询表3
表3
采购入库单明细表
</el-card>
</div>
</template>
<script>
import {} from '@/api/PurchasingCenter/InvoiceSettlementApprove'
import { mapGetters } from 'vuex'
export default {
name: '', // 发票结算审批
data() {
return {
date1: '',
date2: '',
total1: 0,
pageCurrent1: 1,
pageSize1: 10
}
},
computed: {
...mapGetters([
'sidebar',
'name',
'id' // 人员编号
])
},
created() {
this.fetchData()
this.searchTable1()
},
methods: {
fetchData() {
},
searchTable1() {}
}
}
</script>
<style scoped>
.el-card{
margin-bottom: 15px;
}
.el-select{
width:200px
}
.el-input{
width:200px
}
span{
margin: 10px 0 10px 10px;
}
</style>