/* * @description: 费用-内部培训组件 * @Author: CP * @Date: 2020-11-26 15:12:47 * @FilePath: \cld\global\vue\fee\receipt_train_component.js */ Vue.component("train", { props: ['train','trainExplain'], computed: { trainTotal: function () { return trainPrice(this.train); } }, template: `
内部培训费用
{{ item.name }}
合计 ¥{{ trainTotal }}
内部培训费用合计 ¥{{ trainTotal }}
报销说明
报销单填写说明

1 此项费用,仅用于纵横内部培训;

2 用于客户的培训费用,请创建“培训班结算”。

` })