Authored by 王水玲

红人修改

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