fix: lint
This commit is contained in:
@@ -17,5 +17,5 @@ defineProps<{ property: ImageBarProperty }>();
|
||||
>
|
||||
<IconifyIcon icon="ep:picture" class="text-3xl text-gray-600" />
|
||||
</div>
|
||||
<ElImage v-else class="block w-full h-full" :src="property.imgUrl" />
|
||||
<ElImage v-else class="block h-full w-full" :src="property.imgUrl" />
|
||||
</template>
|
||||
|
||||
@@ -13,8 +13,8 @@ defineProps<{ property: UserCardProperty }>();
|
||||
</script>
|
||||
<template>
|
||||
<div class="flex flex-col">
|
||||
<div class="flex items-center justify-between px-[18px] py-[24px]">
|
||||
<div class="flex flex-1 items-center gap-[16px]">
|
||||
<div class="flex items-center justify-between px-4 py-6">
|
||||
<div class="flex flex-1 items-center gap-4">
|
||||
<ElAvatar :size="60">
|
||||
<IconifyIcon icon="ep:avatar" :size="60" />
|
||||
</ElAvatar>
|
||||
@@ -22,13 +22,11 @@ defineProps<{ property: UserCardProperty }>();
|
||||
</div>
|
||||
<IconifyIcon icon="tdesign:qrcode" :size="20" />
|
||||
</div>
|
||||
<div
|
||||
class="flex items-center justify-between bg-white px-[20px] py-[8px] text-[12px]"
|
||||
>
|
||||
<div class="flex items-center justify-between bg-white px-5 py-2 text-xs">
|
||||
<span class="text-[#ff690d]">点击绑定手机号</span>
|
||||
<span class="rounded-[26px] bg-[#ff6100] px-[8px] py-[5px] text-white">
|
||||
<span class="rounded-[26px] bg-[#ff6100] px-2 py-1.5 text-white">
|
||||
去绑定
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
@@ -13,4 +13,4 @@ defineProps<{ property: UserOrderProperty }>();
|
||||
<ElImage
|
||||
src="https://shopro.sheepjs.com/admin/static/images/shop/decorate/orderCardStyle.png"
|
||||
/>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
@@ -17,4 +17,4 @@ const formData = useVModel(props, 'modelValue', emit);
|
||||
|
||||
<template>
|
||||
<ComponentContainerProperty v-model="formData.style" />
|
||||
</template>
|
||||
</template>
|
||||
|
||||
@@ -13,4 +13,4 @@ defineProps<{ property: UserWalletProperty }>();
|
||||
<ElImage
|
||||
src="https://shopro.sheepjs.com/admin/static/images/shop/decorate/walletCardStyle.png"
|
||||
/>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
@@ -40,7 +40,7 @@ const formData = useVModel(props, 'modelValue', emit);
|
||||
:file-type="['mp4']"
|
||||
:limit="1"
|
||||
:file-size="100"
|
||||
class="min-w-[80px]"
|
||||
class="min-w-20"
|
||||
/>
|
||||
</ElFormItem>
|
||||
<ElFormItem label="上传封面" prop="posterUrl">
|
||||
@@ -49,7 +49,7 @@ const formData = useVModel(props, 'modelValue', emit);
|
||||
draggable="false"
|
||||
height="80px"
|
||||
width="100%"
|
||||
class="min-w-[80px]"
|
||||
class="min-w-20"
|
||||
:show-description="false"
|
||||
>
|
||||
<template #tip> 建议宽度750 </template>
|
||||
@@ -60,4 +60,4 @@ const formData = useVModel(props, 'modelValue', emit);
|
||||
</ElFormItem>
|
||||
</ElForm>
|
||||
</ComponentContainerProperty>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
@@ -255,11 +255,11 @@ const eachCube = (callback: (x: number, y: number, cube: Cube) => void) => {
|
||||
|
||||
.cube {
|
||||
box-sizing: border-box;
|
||||
line-height: 1;
|
||||
color: var(--el-text-color-secondary);
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
border: 1px solid var(--el-border-color);
|
||||
line-height: 1;
|
||||
|
||||
:deep(.iconify) {
|
||||
display: inline-block;
|
||||
|
||||
Reference in New Issue
Block a user