f0542fe8 by renchao@pashanhoo.com

style:税务信息

1 parent a0bb3c03
<template>
<div class="slxx swxx">
<!--
<div>缴税信息</div> -->
<el-form
:model="ruleForm"
ref="ruleForm"
......@@ -90,6 +88,13 @@
</el-form-item>
</el-col>
</el-row>
<div class="slxx_title title-block">
缴税信息
<div class="triangle"></div>
</div>
<lb-table :column="column2" :pagination="false" :heightNumSetting="true"
:data="ruleForm.tableDataList">
</lb-table>
</div>
<el-row class="btn" v-if="viewEdit">
<el-form-item>
......@@ -152,7 +157,32 @@
{
prop: "zjhm",
label: "证件号码"
},],
}],
column2: [{
type: 'index',
label: "序号",
width: '50'
},
{
prop: "nsr",
label: "纳税人"
},
{
prop: "sz",
label: "税种"
},
{
prop: "jsyj",
label: "计税依据"
},
{
prop: "sl",
label: "税率"
},
{
prop: "jsje",
label: "计税金额"
}],
ruleForm: {
tableDataList: []
}
......