mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
[improvement] update lint rules (#3970)
This commit is contained in:
parent
07a72307cc
commit
3a77666e49
@ -1,7 +1,4 @@
|
|||||||
{
|
{
|
||||||
"root": true,
|
"root": true,
|
||||||
"extends": ["@vant"],
|
"extends": ["@vant"]
|
||||||
"rules": {
|
|
||||||
"no-unused-vars": ["error", { "vars": "all", "args": "none" }]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
"@babel/preset-typescript": "^7.3.3",
|
"@babel/preset-typescript": "^7.3.3",
|
||||||
"@types/jest": "^24.0.15",
|
"@types/jest": "^24.0.15",
|
||||||
"@vant/doc": "^2.3.6",
|
"@vant/doc": "^2.3.6",
|
||||||
"@vant/eslint-config": "^1.2.0",
|
"@vant/eslint-config": "^1.2.3",
|
||||||
"@vant/markdown-loader": "^2.1.2",
|
"@vant/markdown-loader": "^2.1.2",
|
||||||
"@vant/markdown-vetur": "^1.0.0",
|
"@vant/markdown-vetur": "^1.0.0",
|
||||||
"@vant/touch-emulator": "^1.1.0",
|
"@vant/touch-emulator": "^1.1.0",
|
||||||
|
@ -61,7 +61,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Cell class={bem()}>
|
<Cell class={bem()}>
|
||||||
<Field
|
<Field
|
||||||
|
@ -225,7 +225,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { data, errorInfo, searchResult } = this;
|
const { data, errorInfo, searchResult } = this;
|
||||||
const onFocus = name => () => this.onFocus(name);
|
const onFocus = name => () => this.onFocus(name);
|
||||||
|
|
||||||
|
@ -183,7 +183,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const on = {
|
const on = {
|
||||||
...this.$listeners,
|
...this.$listeners,
|
||||||
change: this.onChange
|
change: this.onChange
|
||||||
|
@ -21,7 +21,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return <div class={bem()}>{this.slots()}</div>;
|
return <div class={bem()}>{this.slots()}</div>;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -112,7 +112,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem()} style={this.style}>
|
<div class={bem()} style={this.style}>
|
||||||
<svg viewBox="0 0 1060 1060">
|
<svg viewBox="0 0 1060 1060">
|
||||||
|
@ -23,7 +23,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { span, offset } = this;
|
const { span, offset } = this;
|
||||||
return (
|
return (
|
||||||
<this.tag class={bem({ [span]: span, [`offset-${offset}`]: offset })} style={this.style}>
|
<this.tag class={bem({ [span]: span, [`offset-${offset}`]: offset })} style={this.style}>
|
||||||
|
@ -107,7 +107,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { disabled, expanded } = this;
|
const { disabled, expanded } = this;
|
||||||
|
|
||||||
const titleSlots = CELL_SLOTS.reduce((slots, name) => {
|
const titleSlots = CELL_SLOTS.reduce((slots, name) => {
|
||||||
|
@ -27,7 +27,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={[bem(), { 'van-hairline--top-bottom': this.border }]}>
|
<div class={[bem(), { 'van-hairline--top-bottom': this.border }]}>
|
||||||
{this.slots()}
|
{this.slots()}
|
||||||
|
@ -88,7 +88,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { data, errorInfo } = this;
|
const { data, errorInfo } = this;
|
||||||
const onFocus = name => () => this.onFocus(name);
|
const onFocus = name => () => this.onFocus(name);
|
||||||
|
|
||||||
|
@ -117,7 +117,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem()}>
|
<div class={bem()}>
|
||||||
{this.slots('default', this.timeData) || this.formattedTime}
|
{this.slots('default', this.timeData) || this.formattedTime}
|
||||||
|
@ -85,7 +85,7 @@ test('start method', async () => {
|
|||||||
wrapper.vm.start();
|
wrapper.vm.start();
|
||||||
wrapper.vm.start();
|
wrapper.vm.start();
|
||||||
|
|
||||||
await later(20);
|
await later(50);
|
||||||
|
|
||||||
const laterShapShot = wrapper.html();
|
const laterShapShot = wrapper.html();
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { coupons, disabledCoupons } = this;
|
const { coupons, disabledCoupons } = this;
|
||||||
const title = `${this.enabledTitle || t('enable')} (${coupons.length})`;
|
const title = `${this.enabledTitle || t('enable')} (${coupons.length})`;
|
||||||
const disabledTitle = `${this.disabledTitle || t('disabled')} (${
|
const disabledTitle = `${this.disabledTitle || t('disabled')} (${
|
||||||
|
@ -61,7 +61,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { coupon, disabled } = this;
|
const { coupon, disabled } = this;
|
||||||
const description = (disabled && coupon.reason) || coupon.description;
|
const description = (disabled && coupon.reason) || coupon.description;
|
||||||
|
|
||||||
|
@ -313,7 +313,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const props = {};
|
const props = {};
|
||||||
Object.keys(pickerProps).forEach(key => {
|
Object.keys(pickerProps).forEach(key => {
|
||||||
props[key] = this[key];
|
props[key] = this[key];
|
||||||
|
@ -73,7 +73,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
if (!this.shouldRender) {
|
if (!this.shouldRender) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@ export default createComponent({
|
|||||||
this.onOpened = createEmitter('opened');
|
this.onOpened = createEmitter('opened');
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const {
|
const {
|
||||||
zIndex,
|
zIndex,
|
||||||
offset,
|
offset,
|
||||||
|
@ -76,7 +76,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const Titles = this.children.map((item, index) => (
|
const Titles = this.children.map((item, index) => (
|
||||||
<div
|
<div
|
||||||
role="button"
|
role="button"
|
||||||
|
@ -263,7 +263,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { slots, labelAlign } = this;
|
const { slots, labelAlign } = this;
|
||||||
|
|
||||||
const scopedSlots = {
|
const scopedSlots = {
|
||||||
|
@ -35,7 +35,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
class={bem([
|
class={bem([
|
||||||
|
@ -23,7 +23,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div role="button" tabindex="0" class={bem()} onClick={this.onClick}>
|
<div role="button" tabindex="0" class={bem()} onClick={this.onClick}>
|
||||||
{this.slots('icon') ? (
|
{this.slots('icon') ? (
|
||||||
|
@ -10,7 +10,7 @@ export default createComponent({
|
|||||||
safeAreaInsetBottom: Boolean
|
safeAreaInsetBottom: Boolean
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem({ 'safe-area-inset-bottom': this.safeAreaInsetBottom })}>
|
<div class={bem({ 'safe-area-inset-bottom': this.safeAreaInsetBottom })}>
|
||||||
{this.slots()}
|
{this.slots()}
|
||||||
|
@ -72,7 +72,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { center, border, square, gutter, clickable } = this.parent;
|
const { center, border, square, gutter, clickable } = this.parent;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -36,7 +36,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
style={this.style}
|
style={this.style}
|
||||||
|
@ -254,7 +254,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
if (!this.value) {
|
if (!this.value) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -141,7 +141,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem({ round: this.round })} style={this.style} onClick={this.onClick}>
|
<div class={bem({ round: this.round })} style={this.style} onClick={this.onClick}>
|
||||||
{this.renderImage()}
|
{this.renderImage()}
|
||||||
|
@ -43,7 +43,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { sticky } = this;
|
const { sticky } = this;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -154,7 +154,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
scrollToElement(element, setActive) {
|
scrollToElement(element) {
|
||||||
const { index } = element.dataset;
|
const { index } = element.dataset;
|
||||||
if (!index) {
|
if (!index) {
|
||||||
return;
|
return;
|
||||||
@ -177,7 +177,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const Indexes = this.indexList.map(index => {
|
const Indexes = this.indexList.map(index => {
|
||||||
const active = index === this.activeAnchorIndex;
|
const active = index === this.activeAnchorIndex;
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const Placeholder = <div ref="placeholder" class={bem('placeholder')}/>;
|
const Placeholder = <div ref="placeholder" class={bem('placeholder')}/>;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -46,7 +46,7 @@ export const CheckboxMixin = ({ parent, bem, role }) => ({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { slots, checked } = this;
|
const { slots, checked } = this;
|
||||||
|
|
||||||
const CheckIcon = slots('icon', { checked }) || (
|
const CheckIcon = slots('icon', { checked }) || (
|
||||||
|
@ -76,7 +76,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { slots, mode, leftIcon, onClickIcon } = this;
|
const { slots, mode, leftIcon, onClickIcon } = this;
|
||||||
|
|
||||||
const barStyle = {
|
const barStyle = {
|
||||||
|
@ -39,7 +39,7 @@ export default createComponent({
|
|||||||
this.active = true;
|
this.active = true;
|
||||||
},
|
},
|
||||||
|
|
||||||
onBlur(event) {
|
onBlur() {
|
||||||
this.active = false;
|
this.active = false;
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { onBlur } = this;
|
const { onBlur } = this;
|
||||||
return (
|
return (
|
||||||
<i
|
<i
|
||||||
|
@ -129,7 +129,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { title, theme, onPress, closeButtonText } = this;
|
const { title, theme, onPress, closeButtonText } = this;
|
||||||
|
|
||||||
const titleLeftSlot = this.slots('title-left');
|
const titleLeftSlot = this.slots('title-left');
|
||||||
|
@ -114,7 +114,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { value } = this;
|
const { value } = this;
|
||||||
const simple = this.mode !== 'multi';
|
const simple = this.mode !== 'multi';
|
||||||
|
|
||||||
|
@ -219,7 +219,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { itemHeight, visibleItemCount } = this;
|
const { itemHeight, visibleItemCount } = this;
|
||||||
|
|
||||||
const baseOffset = (itemHeight * (visibleItemCount - 1)) / 2;
|
const baseOffset = (itemHeight * (visibleItemCount - 1)) / 2;
|
||||||
|
@ -32,7 +32,7 @@ export default createComponent({
|
|||||||
this.onClosed = createEmitter('closed');
|
this.onClosed = createEmitter('closed');
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
if (!this.shouldRender) {
|
if (!this.shouldRender) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { pivotText, percentage } = this;
|
const { pivotText, percentage } = this;
|
||||||
const text = isDef(pivotText) ? pivotText : percentage + '%';
|
const text = isDef(pivotText) ? pivotText : percentage + '%';
|
||||||
const showPivot = this.showPivot && text;
|
const showPivot = this.showPivot && text;
|
||||||
|
@ -147,7 +147,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { status, distance } = this;
|
const { status, distance } = this;
|
||||||
const text = this[`${status}Text`] || t(status);
|
const text = this[`${status}Text`] || t(status);
|
||||||
const style = {
|
const style = {
|
||||||
|
@ -17,7 +17,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem()} role="radiogroup">
|
<div class={bem()} role="radiogroup">
|
||||||
{this.slots()}
|
{this.slots()}
|
||||||
|
@ -17,7 +17,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { align, justify } = this;
|
const { align, justify } = this;
|
||||||
const flex = this.type === 'flex';
|
const flex = this.type === 'flex';
|
||||||
const margin = `-${Number(this.gutter) / 2}px`;
|
const margin = `-${Number(this.gutter) / 2}px`;
|
||||||
|
@ -29,7 +29,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<a
|
<a
|
||||||
class={[bem({ select: this.select }), 'van-hairline']}
|
class={[bem({ select: this.select }), 'van-hairline']}
|
||||||
|
@ -17,7 +17,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return <div class={[bem(), 'van-hairline--top-bottom']}>{this.slots()}</div>;
|
return <div class={[bem(), 'van-hairline--top-bottom']}>{this.slots()}</div>;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -427,7 +427,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
if (this.isSkuEmpty) {
|
if (this.isSkuEmpty) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -77,7 +77,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem()}>
|
<div class={bem()}>
|
||||||
{this.value && this.renderUploader(
|
{this.value && this.renderUploader(
|
||||||
|
@ -121,7 +121,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<CellGroup class={bem()}>
|
<CellGroup class={bem()}>
|
||||||
{this.messages.map((message, index) => (message.type === 'image' ? (
|
{this.messages.map((message, index) => (message.type === 'image' ? (
|
||||||
|
@ -35,7 +35,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const choosed = this.skuValue.id === this.selectedSku[this.skuKeyStr];
|
const choosed = this.skuValue.id === this.selectedSku[this.skuKeyStr];
|
||||||
const imgUrl = this.skuValue.imgUrl || this.skuValue.img_url;
|
const imgUrl = this.skuValue.imgUrl || this.skuValue.img_url;
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class="van-sku-stepper-stock">
|
<div class="van-sku-stepper-stock">
|
||||||
<div class="van-sku-stepper-container">
|
<div class="van-sku-stepper-container">
|
||||||
|
@ -115,7 +115,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { vertical } = this;
|
const { vertical } = this;
|
||||||
const style = {
|
const style = {
|
||||||
background: this.inactiveColor
|
background: this.inactiveColor
|
||||||
|
@ -31,7 +31,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { slots, status } = this;
|
const { slots, status } = this;
|
||||||
const { activeIcon, activeColor, inactiveIcon, direction } = this.$parent;
|
const { activeIcon, activeColor, inactiveIcon, direction } = this.$parent;
|
||||||
const titleStyle = status === 'process' && { color: activeColor };
|
const titleStyle = status === 'process' && { color: activeColor };
|
||||||
|
@ -165,7 +165,7 @@ export default createComponent({
|
|||||||
}, LONG_PRESS_INTERVAL);
|
}, LONG_PRESS_INTERVAL);
|
||||||
},
|
},
|
||||||
|
|
||||||
onTouchStart(type) {
|
onTouchStart() {
|
||||||
clearTimeout(this.longPressTimer);
|
clearTimeout(this.longPressTimer);
|
||||||
this.isLongPress = false;
|
this.isLongPress = false;
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const createListeners = type => ({
|
const createListeners = type => ({
|
||||||
on: {
|
on: {
|
||||||
click: () => {
|
click: () => {
|
||||||
|
@ -30,7 +30,7 @@ export default createComponent({
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem([this.direction])}>
|
<div class={bem([this.direction])}>
|
||||||
<div class={bem('items')}>{this.slots()}</div>
|
<div class={bem('items')}>{this.slots()}</div>
|
||||||
|
@ -102,7 +102,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { fixed } = this;
|
const { fixed } = this;
|
||||||
const style = {
|
const style = {
|
||||||
height: fixed ? `${this.height}px` : null
|
height: fixed ? `${this.height}px` : null
|
||||||
|
@ -82,7 +82,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClose(clickPosition, instance, detail) {
|
onClose(clickPosition, instance) {
|
||||||
switch (clickPosition) {
|
switch (clickPosition) {
|
||||||
case 'left':
|
case 'left':
|
||||||
case 'cell':
|
case 'cell':
|
||||||
|
@ -153,7 +153,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const onClick = (position, stop) => event => {
|
const onClick = (position, stop) => event => {
|
||||||
if (stop) {
|
if (stop) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
|
@ -17,7 +17,7 @@ export default createComponent({
|
|||||||
this.$parent.swipes.splice(this.$parent.swipes.indexOf(this), 1);
|
this.$parent.swipes.splice(this.$parent.swipes.indexOf(this), 1);
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { vertical, computedWidth, computedHeight } = this.$parent;
|
const { vertical, computedWidth, computedHeight } = this.$parent;
|
||||||
|
|
||||||
const style = {
|
const style = {
|
||||||
|
@ -328,7 +328,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem()}>
|
<div class={bem()}>
|
||||||
<div
|
<div
|
||||||
|
@ -41,7 +41,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { icon, slots } = this;
|
const { icon, slots } = this;
|
||||||
const active = this.parent.route ? this.routeActive : this.active;
|
const active = this.parent.route ? this.routeActive : this.active;
|
||||||
const color = this.parent[active ? 'activeColor' : 'inactiveColor'];
|
const color = this.parent[active ? 'activeColor' : 'inactiveColor'];
|
||||||
|
@ -54,7 +54,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
style={{ zIndex: this.zIndex }}
|
style={{ zIndex: this.zIndex }}
|
||||||
|
@ -66,7 +66,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
class={bem('content', { animated: this.animated })}
|
class={bem('content', { animated: this.animated })}
|
||||||
|
@ -60,7 +60,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
role="tab"
|
role="tab"
|
||||||
|
@ -251,7 +251,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { type, ellipsis, animated, scrollable } = this;
|
const { type, ellipsis, animated, scrollable } = this;
|
||||||
|
|
||||||
const Nav = this.children.map((item, index) => (
|
const Nav = this.children.map((item, index) => (
|
||||||
|
@ -77,7 +77,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
const { type, icon, message, iconPrefix, loadingType } = this;
|
const { type, icon, message, iconPrefix, loadingType } = this;
|
||||||
|
|
||||||
const hasIcon = icon || (type === 'success' || type === 'fail');
|
const hasIcon = icon || (type === 'success' || type === 'fail');
|
||||||
|
@ -248,7 +248,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render(h) {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div class={bem()}>
|
<div class={bem()}>
|
||||||
<div class={bem('wrapper')}>
|
<div class={bem('wrapper')}>
|
||||||
|
80
yarn.lock
80
yarn.lock
@ -1097,6 +1097,11 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@types/jest-diff" "*"
|
"@types/jest-diff" "*"
|
||||||
|
|
||||||
|
"@types/json-schema@^7.0.3":
|
||||||
|
version "7.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636"
|
||||||
|
integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A==
|
||||||
|
|
||||||
"@types/minimatch@*":
|
"@types/minimatch@*":
|
||||||
version "3.0.3"
|
version "3.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
|
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
|
||||||
@ -1144,39 +1149,40 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916"
|
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916"
|
||||||
integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==
|
integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==
|
||||||
|
|
||||||
"@typescript-eslint/eslint-plugin@^1.11.0":
|
"@typescript-eslint/eslint-plugin@^1.13.0":
|
||||||
version "1.11.0"
|
version "1.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-1.11.0.tgz#870f752c520db04db6d3668af7479026a6f2fb9a"
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-1.13.0.tgz#22fed9b16ddfeb402fd7bcde56307820f6ebc49f"
|
||||||
integrity sha512-mXv9ccCou89C8/4avKHuPB2WkSZyY/XcTQUXd5LFZAcLw1I3mWYVjUu6eS9Ja0QkP/ClolbcW9tb3Ov/pMdcqw==
|
integrity sha512-WQHCozMnuNADiqMtsNzp96FNox5sOVpU8Xt4meaT4em8lOG1SrOv92/mUbEHQVh90sldKSfcOc/I0FOb/14G1g==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/experimental-utils" "1.11.0"
|
"@typescript-eslint/experimental-utils" "1.13.0"
|
||||||
eslint-utils "^1.3.1"
|
eslint-utils "^1.3.1"
|
||||||
functional-red-black-tree "^1.0.1"
|
functional-red-black-tree "^1.0.1"
|
||||||
regexpp "^2.0.1"
|
regexpp "^2.0.1"
|
||||||
tsutils "^3.7.0"
|
tsutils "^3.7.0"
|
||||||
|
|
||||||
"@typescript-eslint/experimental-utils@1.11.0":
|
"@typescript-eslint/experimental-utils@1.13.0":
|
||||||
version "1.11.0"
|
version "1.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-1.11.0.tgz#594abe47091cbeabac1d6f9cfed06d0ad99eb7e3"
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz#b08c60d780c0067de2fb44b04b432f540138301e"
|
||||||
integrity sha512-7LbfaqF6B8oa8cp/315zxKk8FFzosRzzhF8Kn/ZRsRsnpm7Qcu25cR/9RnAQo5utZ2KIWVgaALr+ZmcbG47ruw==
|
integrity sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/typescript-estree" "1.11.0"
|
"@types/json-schema" "^7.0.3"
|
||||||
|
"@typescript-eslint/typescript-estree" "1.13.0"
|
||||||
eslint-scope "^4.0.0"
|
eslint-scope "^4.0.0"
|
||||||
|
|
||||||
"@typescript-eslint/parser@^1.11.0":
|
"@typescript-eslint/parser@^1.13.0":
|
||||||
version "1.11.0"
|
version "1.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-1.11.0.tgz#2f6d4f7e64eeb1e7c25b422f8df14d0c9e508e36"
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-1.13.0.tgz#61ac7811ea52791c47dc9fd4dd4a184fae9ac355"
|
||||||
integrity sha512-5xBExyXaxVyczrZvbRKEXvaTUFFq7gIM9BynXukXZE0zF3IQP/FxF4mPmmh3gJ9egafZFqByCpPTFm3dk4SY7Q==
|
integrity sha512-ITMBs52PCPgLb2nGPoeT4iU3HdQZHcPaZVw+7CsFagRJHUhyeTgorEwHXhFf3e7Evzi8oujKNpHc8TONth8AdQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/eslint-visitor-keys" "^1.0.0"
|
"@types/eslint-visitor-keys" "^1.0.0"
|
||||||
"@typescript-eslint/experimental-utils" "1.11.0"
|
"@typescript-eslint/experimental-utils" "1.13.0"
|
||||||
"@typescript-eslint/typescript-estree" "1.11.0"
|
"@typescript-eslint/typescript-estree" "1.13.0"
|
||||||
eslint-visitor-keys "^1.0.0"
|
eslint-visitor-keys "^1.0.0"
|
||||||
|
|
||||||
"@typescript-eslint/typescript-estree@1.11.0":
|
"@typescript-eslint/typescript-estree@1.13.0":
|
||||||
version "1.11.0"
|
version "1.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-1.11.0.tgz#b7b5782aab22e4b3b6d84633652c9f41e62d37d5"
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-1.13.0.tgz#8140f17d0f60c03619798f1d628b8434913dc32e"
|
||||||
integrity sha512-fquUHF5tAx1sM2OeRCC7wVxFd1iMELWMGCzOSmJ3pLzArj9+kRixdlC4d5MncuzXpjEqc6045p3KwM0o/3FuUA==
|
integrity sha512-b5rCmd2e6DCC6tCTN9GSUAuxdYwCM/k/2wdjHGrIRGPSJotWMCe/dGpi66u42bhuh8q3QBzqM4TMA1GUUCJvdw==
|
||||||
dependencies:
|
dependencies:
|
||||||
lodash.unescape "4.0.1"
|
lodash.unescape "4.0.1"
|
||||||
semver "5.5.0"
|
semver "5.5.0"
|
||||||
@ -1200,16 +1206,16 @@
|
|||||||
fs-extra "^4.0.2"
|
fs-extra "^4.0.2"
|
||||||
shelljs "^0.8.2"
|
shelljs "^0.8.2"
|
||||||
|
|
||||||
"@vant/eslint-config@^1.2.0":
|
"@vant/eslint-config@^1.2.3":
|
||||||
version "1.2.0"
|
version "1.2.3"
|
||||||
resolved "https://registry.yarnpkg.com/@vant/eslint-config/-/eslint-config-1.2.0.tgz#d524547b1fd89554efe5abd1736bd6fcd5c8fbf1"
|
resolved "https://registry.yarnpkg.com/@vant/eslint-config/-/eslint-config-1.2.3.tgz#176697dd31eb119e1a412ba38282a0f07f70dfe4"
|
||||||
integrity sha512-FU5tvLYTjLoPZMFZwst6uqYfrUfhbO/VFIS6sECm3B5Ww1O3Cp5Rha/63DAuYf84jubV8G1/+g8EPuz/0U8KGQ==
|
integrity sha512-qbjVOiDsFTw3kJNk/u3fICW9sYQz65iFITov7dwzO2d1UPKA/WxBrcpL1QjNeMYvZQggxLEGku918Y9exoapGA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/eslint-plugin" "^1.11.0"
|
"@typescript-eslint/eslint-plugin" "^1.13.0"
|
||||||
"@typescript-eslint/parser" "^1.11.0"
|
"@typescript-eslint/parser" "^1.13.0"
|
||||||
babel-eslint "^10.0.2"
|
babel-eslint "^10.0.2"
|
||||||
eslint-config-airbnb-base "^13.2.0"
|
eslint-config-airbnb-base "^13.2.0"
|
||||||
eslint-plugin-import "^2.18.0"
|
eslint-plugin-import "^2.18.2"
|
||||||
eslint-plugin-vue "^5.2.3"
|
eslint-plugin-vue "^5.2.3"
|
||||||
|
|
||||||
"@vant/icons@1.1.9":
|
"@vant/icons@1.1.9":
|
||||||
@ -3533,10 +3539,10 @@ eslint-module-utils@^2.4.0:
|
|||||||
debug "^2.6.8"
|
debug "^2.6.8"
|
||||||
pkg-dir "^2.0.0"
|
pkg-dir "^2.0.0"
|
||||||
|
|
||||||
eslint-plugin-import@^2.18.0:
|
eslint-plugin-import@^2.18.2:
|
||||||
version "2.18.0"
|
version "2.18.2"
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.0.tgz#7a5ba8d32622fb35eb9c8db195c2090bd18a3678"
|
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6"
|
||||||
integrity sha512-PZpAEC4gj/6DEMMoU2Df01C5c50r7zdGIN52Yfi7CvvWaYssG7Jt5R9nFG5gmqodxNOz9vQS87xk6Izdtpdrig==
|
integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
array-includes "^3.0.3"
|
array-includes "^3.0.3"
|
||||||
contains-path "^0.1.0"
|
contains-path "^0.1.0"
|
||||||
@ -3545,8 +3551,8 @@ eslint-plugin-import@^2.18.0:
|
|||||||
eslint-import-resolver-node "^0.3.2"
|
eslint-import-resolver-node "^0.3.2"
|
||||||
eslint-module-utils "^2.4.0"
|
eslint-module-utils "^2.4.0"
|
||||||
has "^1.0.3"
|
has "^1.0.3"
|
||||||
lodash "^4.17.11"
|
|
||||||
minimatch "^3.0.4"
|
minimatch "^3.0.4"
|
||||||
|
object.values "^1.1.0"
|
||||||
read-pkg-up "^2.0.0"
|
read-pkg-up "^2.0.0"
|
||||||
resolve "^1.11.0"
|
resolve "^1.11.0"
|
||||||
|
|
||||||
@ -6973,6 +6979,16 @@ object.pick@^1.3.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
isobject "^3.0.1"
|
isobject "^3.0.1"
|
||||||
|
|
||||||
|
object.values@^1.1.0:
|
||||||
|
version "1.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9"
|
||||||
|
integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==
|
||||||
|
dependencies:
|
||||||
|
define-properties "^1.1.3"
|
||||||
|
es-abstract "^1.12.0"
|
||||||
|
function-bind "^1.1.1"
|
||||||
|
has "^1.0.3"
|
||||||
|
|
||||||
obuf@^1.0.0, obuf@^1.1.2:
|
obuf@^1.0.0, obuf@^1.1.2:
|
||||||
version "1.1.2"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
|
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user