12345678910111213141516171819202122 |
- const contentConfig = {
- pageName: 'rentalCompany',
- header: {
- title: '费用输入列表',
- },
- propsList: [
- { type: 'index', label: '序号' },
- { type: 'normal', label: '单位名称', prop: 'rentalCompanyCode', fixed: true },
- { type: 'normal', label: '所属部门', prop: 'rentalCompanyName', width: 140 },
- { type: 'normal', label: '职务', prop: 'deptName', width: 140 },
- { type: 'normal', label: '联络人姓名', prop: 'energyElectricName', width: 140 },
- { type: 'normal', label: '联系方式', prop: 'energyElectricNameMin', width: 140 },
- { type: 'normal', label: '固定电话', prop: 'energyGasName', width: 140 },
- { type: 'normal', label: '短信接收人', prop: 'energyGasNameMin', width: 140 },
- { type: 'normal', label: '传真号', prop: 'energyWaterName', width: 140 },
- { type: 'normal', label: '电子邮箱', prop: 'energyWaterNameMin', width: 140 },
- { type: 'normal', label: '通讯录状态', prop: 'createTime', width: 180 },
- { type: 'handler', label: '操作', slotName: 'operate', width: 180 },
- ],
- };
- export default contentConfig;
|