Authored by 李奇

添加帮助说明

@@ -23,6 +23,9 @@ @@ -23,6 +23,9 @@
23 <Button type="primary" @click="search">筛选</Button> 23 <Button type="primary" @click="search">筛选</Button>
24 <Button @click="reset">清空条件</Button> 24 <Button @click="reset">清空条件</Button>
25 <Button @click="exportData" type="warning">导出</Button> 25 <Button @click="exportData" type="warning">导出</Button>
  26 + <Tooltip class="help-tooltip" :content="helpTip" placement="top-start">
  27 + <span class="tip">帮助说明</span>
  28 + </Tooltip>
26 </filter-item> 29 </filter-item>
27 </layout-filter> 30 </layout-filter>
28 <layout-list> 31 <layout-list>
@@ -127,7 +130,8 @@ export default { @@ -127,7 +130,8 @@ export default {
127 </action-group> 130 </action-group>
128 ); 131 );
129 } 132 }
130 - }] 133 + }],
  134 + helpTip: '结算单每月16号系统自动生成,用于与财务结算本月之前的所有已对账账单,未对账以及发生退货的账单不会出现在结算单中。系统生成结算单后,请尽快按照应付金额提供相应发票,进行结算。'
131 }; 135 };
132 }, 136 },
133 computed: { 137 computed: {
@@ -237,4 +241,32 @@ export default { @@ -237,4 +241,32 @@ export default {
237 right: 0; 241 right: 0;
238 left: auto !important; 242 left: auto !important;
239 } 243 }
  244 +
  245 +.help-tooltip {
  246 + .ivu-tooltip-inner {
  247 + max-width: 600px;
  248 + white-space: normal;
  249 + }
  250 +
  251 + .tip {
  252 + margin-left: 10px;
  253 + color: #00b0ff;
  254 + cursor: pointer;
  255 + text-decoration: underline;
  256 +
  257 + &:before {
  258 + display: inline-block;
  259 + content: "?";
  260 + font-size: 12px;
  261 + height: 12px;
  262 + width: 12px;
  263 + color: #fff;
  264 + line-height: 12px;
  265 + margin-right: 4px;
  266 + background-color: #00b0ff;
  267 + border-radius: 6px;
  268 + text-align: center;
  269 + }
  270 + }
  271 +}
240 </style> 272 </style>