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