f0542fe8 by renchao@pashanhoo.com

style:税务信息

1 parent a0bb3c03
1 <template> 1 <template>
2 <div class="slxx swxx"> 2 <div class="slxx swxx">
3 <!--
4 <div>缴税信息</div> -->
5 <el-form 3 <el-form
6 :model="ruleForm" 4 :model="ruleForm"
7 ref="ruleForm" 5 ref="ruleForm"
...@@ -90,6 +88,13 @@ ...@@ -90,6 +88,13 @@
90 </el-form-item> 88 </el-form-item>
91 </el-col> 89 </el-col>
92 </el-row> 90 </el-row>
91 <div class="slxx_title title-block">
92 缴税信息
93 <div class="triangle"></div>
94 </div>
95 <lb-table :column="column2" :pagination="false" :heightNumSetting="true"
96 :data="ruleForm.tableDataList">
97 </lb-table>
93 </div> 98 </div>
94 <el-row class="btn" v-if="viewEdit"> 99 <el-row class="btn" v-if="viewEdit">
95 <el-form-item> 100 <el-form-item>
...@@ -152,7 +157,32 @@ ...@@ -152,7 +157,32 @@
152 { 157 {
153 prop: "zjhm", 158 prop: "zjhm",
154 label: "证件号码" 159 label: "证件号码"
155 },], 160 }],
161 column2: [{
162 type: 'index',
163 label: "序号",
164 width: '50'
165 },
166 {
167 prop: "nsr",
168 label: "纳税人"
169 },
170 {
171 prop: "sz",
172 label: "税种"
173 },
174 {
175 prop: "jsyj",
176 label: "计税依据"
177 },
178 {
179 prop: "sl",
180 label: "税率"
181 },
182 {
183 prop: "jsje",
184 label: "计税金额"
185 }],
156 ruleForm: { 186 ruleForm: {
157 tableDataList: [] 187 tableDataList: []
158 } 188 }
......