根据uniapp调整工程结构
This commit is contained in:
134
components/AiItem.vue
Normal file
134
components/AiItem.vue
Normal file
@@ -0,0 +1,134 @@
|
||||
<template>
|
||||
<section class="AiItem" :class="{border,readonly}">
|
||||
<div v-if="topLabel" class="topLabel">
|
||||
<div class="labelPane flex">
|
||||
<slot v-if="$slots.label" name="label"/>
|
||||
<template v-else>
|
||||
<div class="label" :class="{required,labelBold}" :style="{color}" v-text="label"/>
|
||||
<slot name="sub" v-if="$slots.sub"/>
|
||||
</template>
|
||||
</div>
|
||||
<div class="itemContent">
|
||||
<slot v-if="$slots.default"/>
|
||||
<div v-else v-text="value"/>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else class="normal flex">
|
||||
<div class="fill flex">
|
||||
<slot v-if="$slots.label" name="label"/>
|
||||
<template v-else>
|
||||
<div class="label" :class="{required,labelBold}" :style="{color}" v-text="label"/>
|
||||
<slot name="sub" v-if="$slots.sub"/>
|
||||
</template>
|
||||
</div>
|
||||
<div class="flexContent">
|
||||
<slot v-if="$slots.default"/>
|
||||
<div v-else v-text="value"/>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "AiItem",
|
||||
inject: {
|
||||
labelColor: {default: "#333"},
|
||||
description: {default: false}
|
||||
},
|
||||
props: {
|
||||
value: {default: ""},
|
||||
label: {default: ""},
|
||||
required: Boolean,
|
||||
topLabel: Boolean,
|
||||
border: {default: true},
|
||||
labelBold: Boolean,
|
||||
},
|
||||
computed: {
|
||||
color: v => v.labelColor,
|
||||
readonly: v => !!v.description
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.AiItem {
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
|
||||
&.border {
|
||||
.normal {
|
||||
border-bottom: 2px solid #ddd;
|
||||
}
|
||||
|
||||
.topLabel {
|
||||
border-bottom: 2px solid #ddd;
|
||||
}
|
||||
}
|
||||
|
||||
.normal {
|
||||
width: 100%;
|
||||
padding-right: 32px;
|
||||
box-sizing: border-box;
|
||||
height: 112px;
|
||||
|
||||
.flexContent {
|
||||
max-width: 62vw;
|
||||
}
|
||||
}
|
||||
|
||||
.label {
|
||||
padding-left: 20px;
|
||||
font-weight: 400;
|
||||
margin-right: 20px;
|
||||
position: relative;
|
||||
|
||||
&.required:before {
|
||||
position: absolute;
|
||||
display: block;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
content: "*";
|
||||
color: #f46;
|
||||
}
|
||||
|
||||
&.labelBold {
|
||||
font-weight: bold;
|
||||
font-size: 34px;
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep.topLabel {
|
||||
padding: 32px 32px 32px 0;
|
||||
|
||||
.labelPane {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.itemContent {
|
||||
padding-left: 20px;
|
||||
|
||||
uni-textarea {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.AiMore > .u-icon {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//展示模式下的特有样式
|
||||
&.readonly {
|
||||
.label, .itemContent {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.AiStep:last-of-type {
|
||||
.stepLine {
|
||||
display: none
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user