style: 去除底边距

This commit is contained in:
2026-04-28 15:05:02 +08:00
parent f30a749f65
commit 4b8554f41e

View File

@@ -1009,7 +1009,8 @@ const openEdit = (record: SubscriptionPlan) => {
if (record.organizationId) { if (record.organizationId) {
const orgExists = organizationOptions.value.some( const orgExists = organizationOptions.value.some(
(org: any) => (org: any) =>
org.id === record.organizationId || String(org.id) === String(record.organizationId) org.id === record.organizationId ||
String(org.id) === String(record.organizationId)
) )
if (!orgExists) { if (!orgExists) {
const orgName = (record as any).organizationName const orgName = (record as any).organizationName
@@ -1262,7 +1263,7 @@ const filterOption = (input: string, option: any) => {
<style lang="less" scoped> <style lang="less" scoped>
.subscription-plan { .subscription-plan {
padding: 2rem 2.4rem 3.2rem 0; padding: 2rem 2.4rem 0 0;
display: flex; display: flex;
height: 100%; height: 100%;
min-height: 0; min-height: 0;
@@ -1285,7 +1286,7 @@ const filterOption = (input: string, option: any) => {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
padding: 2.4rem; padding: 2.4rem 2.4rem 0;
min-height: 0; min-height: 0;
} }