mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
types: fix typing issues
This commit is contained in:
parent
f96bc10158
commit
51aff18dea
@ -102,7 +102,7 @@ VantComponent({
|
||||
onChange(event: WechatMiniprogram.CustomEvent) {
|
||||
const { index, picker, value } = event.detail;
|
||||
this.code = value[index].code;
|
||||
this.setValues().then(() => {
|
||||
this.setValues()?.then(() => {
|
||||
this.$emit('change', {
|
||||
picker,
|
||||
values: this.parseValues(picker.getValues()),
|
||||
|
@ -10,7 +10,7 @@ interface Day {
|
||||
date: Date;
|
||||
type: string;
|
||||
text: number;
|
||||
bottomInfo: string;
|
||||
bottomInfo?: string;
|
||||
}
|
||||
|
||||
VantComponent({
|
||||
@ -125,13 +125,13 @@ VantComponent({
|
||||
getRangeDayType(day) {
|
||||
const { currentDate, allowSameDay } = this.data;
|
||||
if (!Array.isArray(currentDate)) {
|
||||
return;
|
||||
return '';
|
||||
}
|
||||
|
||||
const [startDay, endDay] = currentDate;
|
||||
|
||||
if (!startDay) {
|
||||
return;
|
||||
return '';
|
||||
}
|
||||
|
||||
const compareToStart = compareDay(day, startDay);
|
||||
@ -157,6 +157,8 @@ VantComponent({
|
||||
if (compareToStart > 0 && compareToEnd < 0) {
|
||||
return 'middle';
|
||||
}
|
||||
|
||||
return '';
|
||||
},
|
||||
|
||||
getDayType(day) {
|
||||
@ -178,6 +180,8 @@ VantComponent({
|
||||
if (type === 'range') {
|
||||
return this.getRangeDayType(day);
|
||||
}
|
||||
|
||||
return '';
|
||||
},
|
||||
|
||||
getBottomInfo(type) {
|
||||
|
@ -272,7 +272,7 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
select(date, complete) {
|
||||
select(date, complete?: boolean) {
|
||||
if (complete && this.data.type === 'range') {
|
||||
const valid = this.checkRange(date);
|
||||
|
||||
|
@ -68,7 +68,7 @@ VantComponent({
|
||||
},
|
||||
|
||||
methods: {
|
||||
getContext() {
|
||||
getContext(): Promise<WechatMiniprogram.CanvasContext> {
|
||||
const { type, size } = this.data;
|
||||
|
||||
if (type === '' || !canIUseCanvas2d()) {
|
||||
@ -108,7 +108,10 @@ VantComponent({
|
||||
Object.keys(color)
|
||||
.sort((a, b) => parseFloat(a) - parseFloat(b))
|
||||
.map((key) =>
|
||||
LinearColor.addColorStop(parseFloat(key) / 100, color[key])
|
||||
LinearColor.addColorStop(
|
||||
parseFloat(key) / 100,
|
||||
color[key] as string
|
||||
)
|
||||
);
|
||||
this.hoverColor = LinearColor;
|
||||
});
|
||||
@ -118,7 +121,7 @@ VantComponent({
|
||||
return Promise.resolve();
|
||||
},
|
||||
|
||||
presetCanvas(context, strokeStyle, beginAngle, endAngle, fill) {
|
||||
presetCanvas(context, strokeStyle, beginAngle, endAngle, fill?: string) {
|
||||
const { strokeWidth, lineCap, clockwise, size } = this.data;
|
||||
const position = size / 2;
|
||||
const radius = position - strokeWidth / 2;
|
||||
|
@ -15,7 +15,7 @@ export function nextTick(cb: (...args: any[]) => void) {
|
||||
}
|
||||
}
|
||||
|
||||
let systemInfo: WechatMiniprogram.GetSystemInfoSyncResult;
|
||||
let systemInfo: WechatMiniprogram.SystemInfo;
|
||||
export function getSystemInfoSync() {
|
||||
if (systemInfo == null) {
|
||||
systemInfo = wx.getSystemInfoSync();
|
||||
|
@ -145,9 +145,8 @@ VantComponent({
|
||||
const { filter } = this.data;
|
||||
const results = this.getRanges().map(({ type, range }) => {
|
||||
let values = times(range[1] - range[0] + 1, (index) => {
|
||||
let value = range[0] + index;
|
||||
value = type === 'year' ? `${value}` : padZero(value);
|
||||
return value;
|
||||
const value = range[0] + index;
|
||||
return type === 'year' ? `${value}` : padZero(value);
|
||||
});
|
||||
|
||||
if (filter) {
|
||||
|
@ -113,7 +113,7 @@ VantComponent({
|
||||
: option;
|
||||
},
|
||||
|
||||
setIndex(index: number, userAction: boolean) {
|
||||
setIndex(index: number, userAction?: boolean) {
|
||||
const { data } = this;
|
||||
index = this.adjustIndex(index) || 0;
|
||||
const offset = -index * data.itemHeight;
|
||||
|
@ -89,7 +89,7 @@ VantComponent({
|
||||
});
|
||||
},
|
||||
|
||||
updateValue(value: number, end: boolean, drag: boolean) {
|
||||
updateValue(value: number, end?: boolean, drag?: boolean) {
|
||||
value = this.format(value);
|
||||
const { min } = this.data;
|
||||
const width = `${((value - min) * 100) / this.getRange()}%`;
|
||||
|
@ -51,7 +51,7 @@ VantComponent({
|
||||
},
|
||||
|
||||
methods: {
|
||||
onScroll({ scrollTop } = {}) {
|
||||
onScroll({ scrollTop }: { scrollTop?: number } = {}) {
|
||||
const { container, offsetTop, disabled } = this.data;
|
||||
|
||||
if (disabled) {
|
||||
|
@ -82,7 +82,7 @@ VantComponent({
|
||||
this.setData({ lists, isInCount: lists.length < maxCount });
|
||||
},
|
||||
|
||||
getDetail(index) {
|
||||
getDetail(index?: number) {
|
||||
return {
|
||||
name: this.data.name,
|
||||
index: index == null ? this.data.fileList.length : index,
|
||||
|
Loading…
x
Reference in New Issue
Block a user