You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
4.0 KiB
Vue
158 lines
4.0 KiB
Vue
<template>
|
|
<view
|
|
:class="['wd-cell', isBorder ? 'is-border' : '', size ? 'is-' + size : '', center ? 'is-center' : '', customClass]"
|
|
:hover-class="isLink || clickable ? 'is-hover' : 'none'"
|
|
hover-stay-time="70"
|
|
@click="onClick"
|
|
>
|
|
<view :class="['wd-cell__wrapper', vertical ? 'is-vertical' : '']">
|
|
<view
|
|
:class="['wd-cell__left', isRequired ? 'is-required' : '']"
|
|
:style="titleWidth ? 'min-width:' + titleWidth + ';max-width:' + titleWidth + ';' : ''"
|
|
>
|
|
<!--左侧icon部位-->
|
|
<wd-icon v-if="icon" :name="icon" :custom-class="`wd-cell__icon ${customIconClass}`"></wd-icon>
|
|
<slot v-else name="icon" />
|
|
|
|
<view class="wd-cell__title">
|
|
<!--title BEGIN-->
|
|
<view v-if="title" :class="customTitleClass">{{ title }}</view>
|
|
<slot v-else name="title"></slot>
|
|
<!--title END-->
|
|
|
|
<!--label BEGIN-->
|
|
<view v-if="label" :class="`wd-cell__label ${customLabelClass}`">{{ label }}</view>
|
|
<slot v-else name="label" />
|
|
<!--label END-->
|
|
</view>
|
|
</view>
|
|
<!--right content BEGIN-->
|
|
<view class="wd-cell__right">
|
|
<view class="wd-cell__body">
|
|
<!--文案内容-->
|
|
<view :class="`wd-cell__value ${customValueClass}`">
|
|
<template v-if="value">{{ value }}</template>
|
|
<slot v-else></slot>
|
|
</view>
|
|
<!--箭头-->
|
|
<wd-icon v-if="isLink" custom-class="wd-cell__arrow-right" name="arrow-right" />
|
|
<slot v-else name="right-icon" />
|
|
</view>
|
|
<view v-if="errorMessage" class="wd-cell__error-message">{{ errorMessage }}</view>
|
|
</view>
|
|
<!--right content END-->
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'wd-cell',
|
|
options: {
|
|
addGlobalClass: true,
|
|
virtualHost: true,
|
|
styleIsolation: 'shared'
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue'
|
|
import { useCell } from '../composables/useCell'
|
|
import { useParent } from '../composables/useParent'
|
|
import { FORM_KEY, type FormItemRule } from '../wd-form/types'
|
|
|
|
interface Props {
|
|
title?: string
|
|
value?: string
|
|
icon?: string
|
|
label?: string
|
|
isLink?: boolean
|
|
to?: string
|
|
replace?: boolean
|
|
clickable?: boolean
|
|
size?: string
|
|
border?: boolean
|
|
titleWidth?: string
|
|
center?: boolean
|
|
required?: boolean
|
|
vertical?: boolean
|
|
prop?: string
|
|
rules?: FormItemRule[]
|
|
customClass?: string
|
|
customIconClass?: string
|
|
customLabelClass?: string
|
|
customValueClass?: string
|
|
customTitleClass?: string
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
customClass: '',
|
|
customIconClass: '',
|
|
customLabelClass: '',
|
|
customValueClass: '',
|
|
customTitleClass: '',
|
|
isLink: false,
|
|
clickable: false,
|
|
replace: false,
|
|
center: false,
|
|
required: false,
|
|
vertical: false,
|
|
rules: () => []
|
|
})
|
|
|
|
const cell = useCell()
|
|
|
|
const isBorder = computed(() => {
|
|
return cell.border.value
|
|
})
|
|
|
|
const { parent: form } = useParent(FORM_KEY)
|
|
|
|
const errorMessage = computed(() => {
|
|
if (form && props.prop && form.errorMessages && form.errorMessages[props.prop]) {
|
|
return form.errorMessages[props.prop]
|
|
} else {
|
|
return ''
|
|
}
|
|
})
|
|
|
|
// 是否展示必填
|
|
const isRequired = computed(() => {
|
|
let formRequired = false
|
|
if (form && form.rules) {
|
|
const rules = form.rules
|
|
for (const key in rules) {
|
|
if (Object.prototype.hasOwnProperty.call(rules, key) && key === props.prop && Array.isArray(rules[key])) {
|
|
formRequired = rules[key].some((rule: FormItemRule) => rule.required)
|
|
}
|
|
}
|
|
}
|
|
return props.required || props.rules.some((rule) => rule.required) || formRequired
|
|
})
|
|
|
|
const emit = defineEmits(['click'])
|
|
|
|
/**
|
|
* @description 点击cell的handle
|
|
*/
|
|
function onClick() {
|
|
const url = props.to
|
|
|
|
if (props.clickable || props.isLink) {
|
|
emit('click')
|
|
}
|
|
if (url && props.isLink) {
|
|
if (props.replace) {
|
|
uni.redirectTo({ url })
|
|
} else {
|
|
uni.navigateTo({ url })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './index.scss';
|
|
</style>
|