chore(AddressEdit): avoid using innerHTML

This commit is contained in:
chenjiahan 2022-02-20 20:36:04 +08:00
parent cce3ceb5b6
commit 17c2022a6f
10 changed files with 12 additions and 31 deletions

View File

@ -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}

View File

@ -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);
}
}

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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">