|
@@ -47,6 +47,11 @@
|
|
|
<el-form-item
|
|
<el-form-item
|
|
|
style="margin-bottom: 20px"
|
|
style="margin-bottom: 20px"
|
|
|
:prop="'datasource.' + scope.$index + '.taxRate'"
|
|
:prop="'datasource.' + scope.$index + '.taxRate'"
|
|
|
|
|
+ :rules="{
|
|
|
|
|
+ required: true,
|
|
|
|
|
+ message: '请输入税率',
|
|
|
|
|
+ trigger: 'change'
|
|
|
|
|
+ }"
|
|
|
>
|
|
>
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="scope.row.taxRate"
|
|
v-model="scope.row.taxRate"
|
|
@@ -176,6 +181,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'taxRate',
|
|
prop: 'taxRate',
|
|
|
|
|
+ headerSlot: 'headerTaxRate',
|
|
|
slot: 'taxRate',
|
|
slot: 'taxRate',
|
|
|
label: '税率',
|
|
label: '税率',
|
|
|
align: 'center'
|
|
align: 'center'
|