content.config.ts 1.2 KB

12345678910111213141516171819202122
  1. const contentConfig = {
  2. pageName: 'rentalCompany',
  3. header: {
  4. title: '费用输入列表',
  5. },
  6. propsList: [
  7. { type: 'index', label: '序号' },
  8. { type: 'normal', label: '单位名称', prop: 'rentalCompanyCode', fixed: true },
  9. { type: 'normal', label: '所属部门', prop: 'rentalCompanyName', width: 140 },
  10. { type: 'normal', label: '职务', prop: 'deptName', width: 140 },
  11. { type: 'normal', label: '联络人姓名', prop: 'energyElectricName', width: 140 },
  12. { type: 'normal', label: '联系方式', prop: 'energyElectricNameMin', width: 140 },
  13. { type: 'normal', label: '固定电话', prop: 'energyGasName', width: 140 },
  14. { type: 'normal', label: '短信接收人', prop: 'energyGasNameMin', width: 140 },
  15. { type: 'normal', label: '传真号', prop: 'energyWaterName', width: 140 },
  16. { type: 'normal', label: '电子邮箱', prop: 'energyWaterNameMin', width: 140 },
  17. { type: 'normal', label: '通讯录状态', prop: 'createTime', width: 180 },
  18. { type: 'handler', label: '操作', slotName: 'operate', width: 180 },
  19. ],
  20. };
  21. export default contentConfig;