mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(AddressEdit): avoid using innerHTML
This commit is contained in:
parent
cce3ceb5b6
commit
17c2022a6f
@ -41,17 +41,6 @@ export default defineComponent({
|
||||
emit('input', `${express.address || ''} ${express.name || ''}`.trim());
|
||||
};
|
||||
|
||||
const renderSearchTitle = (express: AddressEditSearchItem) => {
|
||||
if (express.name) {
|
||||
const text = express.name.replace(
|
||||
props.value!,
|
||||
`<span class=${bem('keyword')}>${props.value}</span>`
|
||||
);
|
||||
|
||||
return <div innerHTML={text} />;
|
||||
}
|
||||
};
|
||||
|
||||
const renderSearchResult = () => {
|
||||
if (!showSearchResult()) {
|
||||
return;
|
||||
@ -60,12 +49,10 @@ export default defineComponent({
|
||||
const { searchResult } = props;
|
||||
return searchResult!.map((express) => (
|
||||
<Cell
|
||||
v-slots={{
|
||||
title: () => renderSearchTitle(express),
|
||||
}}
|
||||
clickable
|
||||
key={express.name + express.address}
|
||||
key={(express.name || '') + (express.address || '')}
|
||||
icon="location-o"
|
||||
title={express.name}
|
||||
label={express.address}
|
||||
class={bem('search-item')}
|
||||
border={false}
|
||||
|
@ -33,13 +33,7 @@ body {
|
||||
font-size: var(--van-address-edit-button-font-size);
|
||||
}
|
||||
|
||||
&-detail {
|
||||
&__search-item {
|
||||
background: var(--van-gray-2);
|
||||
}
|
||||
|
||||
&__keyword {
|
||||
color: var(--van-danger-color);
|
||||
}
|
||||
&-detail__search-item {
|
||||
background: var(--van-gray-2);
|
||||
}
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ app.use(CellGroup);
|
||||
<!-- Use the title slot to customize the title -->
|
||||
<template #title>
|
||||
<span class="custom-title">Title</span>
|
||||
<van-tag type="danger">Tag</van-tag>
|
||||
<van-tag type="primary">Tag</van-tag>
|
||||
</template>
|
||||
</van-cell>
|
||||
|
||||
|
@ -107,7 +107,7 @@ app.use(CellGroup);
|
||||
<!-- 使用 title 插槽来自定义标题 -->
|
||||
<template #title>
|
||||
<span class="custom-title">单元格</span>
|
||||
<van-tag type="danger">标签</van-tag>
|
||||
<van-tag type="primary">标签</van-tag>
|
||||
</template>
|
||||
</van-cell>
|
||||
|
||||
|
@ -105,7 +105,7 @@ const t = useTranslate({
|
||||
<van-cell :value="t('content')" is-link>
|
||||
<template #title>
|
||||
<span class="custom-title">{{ t('cell') }}</span>
|
||||
<van-tag type="danger">{{ t('tag') }}</van-tag>
|
||||
<van-tag type="primary">{{ t('tag') }}</van-tag>
|
||||
</template>
|
||||
</van-cell>
|
||||
|
||||
|
@ -237,7 +237,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
Cell title
|
||||
</span>
|
||||
<transition-stub>
|
||||
<span class="van-tag van-tag--danger">
|
||||
<span class="van-tag van-tag--primary">
|
||||
Tag
|
||||
</span>
|
||||
</transition-stub>
|
||||
|
@ -57,7 +57,7 @@ Use the image prop to display different placeholder images.
|
||||
|
||||
```html
|
||||
<van-empty description="Description">
|
||||
<van-button round type="danger" class="bottom-button">Button</van-button>
|
||||
<van-button round type="primary" class="bottom-button">Button</van-button>
|
||||
</van-empty>
|
||||
|
||||
<style>
|
||||
|
@ -62,7 +62,7 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下
|
||||
|
||||
```html
|
||||
<van-empty description="描述文字">
|
||||
<van-button round type="danger" class="bottom-button">按钮</van-button>
|
||||
<van-button round type="primary" class="bottom-button">按钮</van-button>
|
||||
</van-empty>
|
||||
|
||||
<style>
|
||||
|
@ -59,7 +59,7 @@ const active = ref('error');
|
||||
|
||||
<demo-block :title="t('bottomContent')">
|
||||
<van-empty :description="t('description')">
|
||||
<van-button round type="danger" class="bottom-button">
|
||||
<van-button round type="primary" class="bottom-button">
|
||||
{{ t('button') }}
|
||||
</van-button>
|
||||
</van-empty>
|
||||
|
@ -113,7 +113,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</p>
|
||||
<div class="van-empty__bottom">
|
||||
<button type="button"
|
||||
class="van-button van-button--danger van-button--normal van-button--round bottom-button"
|
||||
class="van-button van-button--primary van-button--normal van-button--round bottom-button"
|
||||
>
|
||||
<div class="van-button__content">
|
||||
<span class="van-button__text">
|
||||
|
Loading…
x
Reference in New Issue
Block a user