chore: 腾讯云国际站类型无需加密

pull/453/head
xiaojunnuo 2025-06-20 23:18:59 +08:00
parent f1a25b21a6
commit e99a20a120
3 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ export class TencentAccess extends BaseAccess {
}, },
], ],
}, },
encrypt: true, encrypt: false,
rules: [{ required: true, message: "该项必填" }], rules: [{ required: true, message: "该项必填" }],
}) })
accountType: string; accountType: string;

View File

@ -50,7 +50,7 @@ loadProducts();
const orderModalRef = ref<any>(null); const orderModalRef = ref<any>(null);
async function doOrder(req: any) { async function doOrder(req: any) {
await orderModalRef.value.open({ await orderModalRef.value.open({
...req ...req,
}); });
} }

View File

@ -17,7 +17,7 @@ const props = withDefaults(
{ {
modelValue: 0, modelValue: 0,
edit: false, edit: false,
fontSize: 14 fontSize: 14,
} }
); );
@ -26,7 +26,7 @@ const style = computed(() => {
return {}; return {};
} }
return { return {
fontSize: props.fontSize + "px" fontSize: props.fontSize + "px",
}; };
}); });