|
@@ -8,12 +8,8 @@
|
|
|
<addFlow v-model="flowShow2" :sureFlowAction="sureFlowAction"></addFlow>
|
|
|
</el-row>
|
|
|
<div :style="'width: 100%;padding:8px;height:calc(100% - ' + rowHeight + 'px);'">
|
|
|
- <tableCom
|
|
|
- v-if="tableConfig.method || tableConfig.testData"
|
|
|
- ref="tableCom"
|
|
|
- v-model="tableInfo"
|
|
|
- :config="tableConfig"
|
|
|
- ></tableCom>
|
|
|
+ <tableCom v-if="tableConfig.method || tableConfig.testData" ref="tableCom" v-model="tableInfo"
|
|
|
+ :config="tableConfig"></tableCom>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -159,6 +155,16 @@ export default {
|
|
|
field: 'amount', //对应的字段
|
|
|
width: '150'
|
|
|
},
|
|
|
+ {
|
|
|
+ label: '结算总金额(元)', //表头显示
|
|
|
+ field: 'settlementSum', //对应的字段
|
|
|
+ width: '170'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '实收总金额(元)', //表头显示
|
|
|
+ field: 'totalAmount', //对应的字段
|
|
|
+ width: '170'
|
|
|
+ },
|
|
|
{
|
|
|
label: '缴费日期', //表头显示
|
|
|
field: 'paymentDate', //对应的字段
|
|
@@ -210,7 +216,7 @@ export default {
|
|
|
this.sureFlowAction = this.$store.state.routeSetting.registerShow && true
|
|
|
this.$store.dispatch('routeSetting/registerShow', false)
|
|
|
},
|
|
|
- destroyed() {},
|
|
|
+ destroyed() { },
|
|
|
watch: {
|
|
|
flowShow() {
|
|
|
if (!this.flowShow) {
|
|
@@ -379,9 +385,10 @@ export default {
|
|
|
</script>
|
|
|
<style lang='scss' scoped>
|
|
|
.pageContentDiv {
|
|
|
- .searchDiv > * {
|
|
|
+ .searchDiv>* {
|
|
|
margin-top: 10px;
|
|
|
}
|
|
|
+
|
|
|
.el-button {
|
|
|
position: relative;
|
|
|
float: left;
|