123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * @description: 报销单交互Data
- * @Author: CP
- * @Date: 2020-11-14 08:37:31
- * @FilePath: \cld\global\vue\fee\fee_receipt_data.js
- */
- let data = {
- receiptTypeMenu: [
- {
- id: 0,
- name: "日常相关费用",
- show: true,
- anchor: "officeAnchor",
- active: true,
- daily: accountItem.daily,
- other: accountItem.other,
- officeExplain: [{ officeExplain: "" }],
- },
- {
- id: 1,
- name: "差旅相关费用",
- show: false,
- anchor: "traveAnchor",
- active: false,
- trave: accountItem.trave,
- traveList: [],
- traveExplain: [{ traveExplain: "" }],
- },
- {
- id: 2,
- name: "内部培训费用",
- show: false,
- anchor: "trainAnchor",
- train: accountItem.train,
- active: false,
- trainExplain: [{ trainExplain: "" }],
- },
- ],
- verify: verify,
- verifyId: '',
- remittanceBankType:0,
- enclosurFiles:[],
-
- aletMsg: '', // 弹出框中的提示语
- displayStsates: 'none',
- }
|