You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
help_user/src/ui/TestData.ts

23 lines
719 B

import {UserType} from "../entity";
export const userObj={
//发送人名称
name:"张三",
//发送人头像
headImg:"logo512.png",
//发送内容
content:"发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容发送内容",
//发送时间
time:new Date().getTime(),
userId:"admin",
age:22,
mobile:"1234567879",
email:"admin@qq.com",
address:"上海高新区",
serviceAddress:"上海",
info:"个人简介",
//性别
sex:"男",
flag:false,
userType:UserType.seekHelp.toString()
}