- 添加消息模板管理组件,支持模板分类、触发事件、标题内容等配置 - 实现消息接收者管理,包含未读消息计数和消息状态跟踪 - 集成通知消息下拉菜单,显示最新未读消息列表 - 添加消息模板变量系统,支持动态内容替换 - 优化移动端响应式布局,在BoxProductList中调整列宽和图片展示 - 移除PaymentTask和PaymentTaskPay中的冗余表格列配置 - 更新国际化文件,添加消息通知相关文案配置 - 修改全局样式,隐藏页面滚动条并优化代码块显示样式
94 lines
2.6 KiB
TypeScript
94 lines
2.6 KiB
TypeScript
// @ts-ignore
|
|
/* eslint-disable */
|
|
// API 更新时间:
|
|
// API 唯一标识:
|
|
import * as agreement from './agreement';
|
|
import * as audit from './audit';
|
|
import * as boxBrand from './boxBrand';
|
|
import * as boxProduct from './boxProduct';
|
|
import * as boxSpec from './boxSpec';
|
|
import * as channel from './channel';
|
|
import * as company from './company';
|
|
import * as companyPaymentAccount from './companyPaymentAccount';
|
|
import * as cost from './cost';
|
|
import * as costItem from './costItem';
|
|
import * as dealer from './dealer';
|
|
import * as dealerAccountRecord from './dealerAccountRecord';
|
|
import * as dealerPaymentAccount from './dealerPaymentAccount';
|
|
import * as dealerRebateCustomer from './dealerRebateCustomer';
|
|
import * as dealerWarehouse from './dealerWarehouse';
|
|
import * as dictionary from './dictionary';
|
|
import * as employee from './employee';
|
|
import * as expenseRecord from './expenseRecord';
|
|
import * as extraction from './extraction';
|
|
import * as giftBox from './giftBox';
|
|
import * as material from './material';
|
|
import * as materialCategory from './materialCategory';
|
|
import * as menu from './menu';
|
|
import * as messageReceiver from './messageReceiver';
|
|
import * as messageTemplate from './messageTemplate';
|
|
import * as order from './order';
|
|
import * as orderCost from './orderCost';
|
|
import * as orderRebate from './orderRebate';
|
|
import * as orderShip from './orderShip';
|
|
import * as orderSupplier from './orderSupplier';
|
|
import * as paymentRecord from './paymentRecord';
|
|
import * as paymentTask from './paymentTask';
|
|
import * as permission from './permission';
|
|
import * as platform from './platform';
|
|
import * as product from './product';
|
|
import * as reconciliation from './reconciliation';
|
|
import * as reconciliationInvoice from './reconciliationInvoice';
|
|
import * as reconciliationPayment from './reconciliationPayment';
|
|
import * as role from './role';
|
|
import * as setting from './setting';
|
|
import * as supplier from './supplier';
|
|
import * as supplierInvoice from './supplierInvoice';
|
|
import * as user from './user';
|
|
|
|
export default {
|
|
user,
|
|
supplier,
|
|
supplierInvoice,
|
|
setting,
|
|
reconciliation,
|
|
reconciliationPayment,
|
|
reconciliationInvoice,
|
|
product,
|
|
platform,
|
|
paymentTask,
|
|
paymentRecord,
|
|
order,
|
|
orderSupplier,
|
|
orderShip,
|
|
messageTemplate,
|
|
messageReceiver,
|
|
menu,
|
|
material,
|
|
materialCategory,
|
|
giftBox,
|
|
expenseRecord,
|
|
employee,
|
|
dictionary,
|
|
dealer,
|
|
dealerWarehouse,
|
|
dealerRebateCustomer,
|
|
dealerPaymentAccount,
|
|
dealerAccountRecord,
|
|
cost,
|
|
costItem,
|
|
company,
|
|
companyPaymentAccount,
|
|
channel,
|
|
boxSpec,
|
|
boxProduct,
|
|
boxBrand,
|
|
audit,
|
|
agreement,
|
|
role,
|
|
permission,
|
|
orderCost,
|
|
extraction,
|
|
orderRebate,
|
|
};
|