Authored by 王水玲

红人修改

1 <template> 1 <template>
2 <layout-body> 2 <layout-body>
3 - <Alert type="warning" show-icon class="warning-box">每个月16号生成本月之前的结算单,请大家务必在1号之前对账完毕。否则未对账的账单将移至下个月合并结算。若对账单存在疑问,可线下联系xx解决X</Alert> 3 + <Alert type="warning" show-icon class="warning-box" closable>每个月16号生成本月之前的结算单,请大家务必在1号之前对账完毕。否则未对账的账单将移至下个月合并结算。若对账单存在疑问,可线下联系xx解决</Alert>
4 <layout-filter ref="filter" :model="query"> 4 <layout-filter ref="filter" :model="query">
5 <filter-item label="对帐单号"> 5 <filter-item label="对帐单号">
6 <Input v-model.trim="query.id" :maxlength="9"></Input> 6 <Input v-model.trim="query.id" :maxlength="9"></Input>
@@ -317,7 +317,7 @@ export default { @@ -317,7 +317,7 @@ export default {
317 317
318 <style lang="scss"> 318 <style lang="scss">
319 .warning-box { 319 .warning-box {
320 - width: 898px; 320 + width: 950px;
321 display: inline-block; 321 display: inline-block;
322 margin-bottom: 15px; 322 margin-bottom: 15px;
323 } 323 }
@@ -88,7 +88,10 @@ export default { @@ -88,7 +88,10 @@ export default {
88 }, { 88 }, {
89 title: '结算比例', 89 title: '结算比例',
90 key: 'clearingPercent', 90 key: 'clearingPercent',
91 - align: 'center' 91 + align: 'center',
  92 + render: (h, params) => {
  93 + return parseInt(params.row.clearingPercent * 100, 10) + '%';
  94 + }
92 }, { 95 }, {
93 title: '数量', 96 title: '数量',
94 key: 'num', 97 key: 'num',