Commit 1f105b96 by zhousil

合并冲突

parents 5874af92 f99c45d2
Showing with 9 additions and 1 deletions
......@@ -16,6 +16,8 @@ class ChatCacheDatabaseController {
private setuping = false;
private setupError = false;
public readonly historyOrderModelName = 'order_info';
private waitSetupCompleted() {
return new Promise<void>((resolve, reject) => {
const checker = () => {
......
import { Chat } from "../xim/models/chat";
import { GeneralOrderDirection } from './order-product';
export interface ChatGroup extends Chat {
children?: ChatGroup[];
......@@ -58,9 +59,13 @@ export interface OrderTableListItem {
lastMsgContent: string;
lastMsgTime: string;
unreadCount: number;
PayPaymentNum?: string | number; //付款笔数
logo?: string;
orderId?: string;
/**
* 付款笔数
*/
PayPaymentNum?: string | number;
product: GeneralOrderDirection;
}
export const orderPredict = {
......@@ -84,6 +89,7 @@ export const orderPredict = {
lastMsgTime: "UniplatLastMsgTime",
unreadCount: 0,
PayPaymentNum: "PayPaymentNum",
product: 'ProductId#product.Code'
};
export const enum PayStatus {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment