|
@@ -80,6 +80,13 @@ const Upsert = useUpsert({
|
|
component: { name: "el-input" },
|
|
component: { name: "el-input" },
|
|
span: 12
|
|
span: 12
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ prop: "currency",
|
|
|
|
+ label: "货币单位",
|
|
|
|
+ required: true,
|
|
|
|
+ component: { name: "el-input" },
|
|
|
|
+ span: 12
|
|
|
|
+ },
|
|
{
|
|
{
|
|
prop: "payType",
|
|
prop: "payType",
|
|
label: "支付方式",
|
|
label: "支付方式",
|
|
@@ -161,8 +168,9 @@ const Table = useTable({
|
|
{ type: "selection" },
|
|
{ type: "selection" },
|
|
{ prop: "name", label: "通道名" },
|
|
{ prop: "name", label: "通道名" },
|
|
{ prop: "code", label: "通道编码" },
|
|
{ prop: "code", label: "通道编码" },
|
|
|
|
+ { prop: "currency", label: "货币单位" },
|
|
{ prop: "payType", label: "支付方式" },
|
|
{ prop: "payType", label: "支付方式" },
|
|
- { prop: "service", label: "代码服务" },
|
|
|
|
|
|
+ // { prop: "service", label: "代码服务" },
|
|
{
|
|
{
|
|
prop: "rate",
|
|
prop: "rate",
|
|
label: "手续费",
|
|
label: "手续费",
|
|
@@ -180,7 +188,7 @@ const Table = useTable({
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{ prop: "status", label: "状态", component: { name: "cl-switch" } },
|
|
{ prop: "status", label: "状态", component: { name: "cl-switch" } },
|
|
- { prop: "remark", label: "备注", showOverflowTooltip: true },
|
|
|
|
|
|
+ // { prop: "remark", label: "备注", showOverflowTooltip: true },
|
|
// { prop: "createTime", label: "创建时间", sortable: "desc", width: 160 },
|
|
// { prop: "createTime", label: "创建时间", sortable: "desc", width: 160 },
|
|
{ type: "op", buttons: ["edit", "delete"] }
|
|
{ type: "op", buttons: ["edit", "delete"] }
|
|
]
|
|
]
|