- 添加了.dockerignore、.env.example和.gitignore配置文件 - 实现了文件服务器、模块API和服务器API的代理功能 - 创建了动态路由页面用于展示文章列表和详情 - 实现了商品详情页面包括图片展示和价格信息 - 添加了静态页面展示功能支持富文本内容渲染 - 配置了SEO元数据和面包屑导航组件
60 lines
1.1 KiB
TypeScript
60 lines
1.1 KiB
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 支付方式
|
|
*/
|
|
export interface Payment {
|
|
// ID
|
|
id?: number;
|
|
// 支付方式
|
|
name?: string;
|
|
// 支付类型
|
|
type?: number;
|
|
// 标识
|
|
code?: string;
|
|
// 支付图标
|
|
image?: string;
|
|
// 微信商户号类型 1普通商户2子商户
|
|
wechatType?: number;
|
|
// 应用ID
|
|
appId?: string;
|
|
// 商户号
|
|
mchId?: string;
|
|
// 设置APIv3密钥
|
|
apiKey?: string;
|
|
// 证书文件 (CERT)
|
|
apiclientCert?: string;
|
|
// 证书文件 (KEY)
|
|
apiclientKey?: string;
|
|
// 商户证书序列号
|
|
merchantSerialNumber?: string;
|
|
// 支付宝公钥
|
|
pubKey?: string;
|
|
// 支付宝公钥ID
|
|
pubKeyId?: string;
|
|
// 支付结果通过
|
|
notifyUrl?: string;
|
|
// 备注
|
|
comments?: string;
|
|
// 文章排序(数字越小越靠前)
|
|
sortNumber?: number;
|
|
// 状态, 0启用, 1禁用
|
|
status?: boolean;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 注册时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 支付方式搜索条件
|
|
*/
|
|
export interface PaymentParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|