Files
toutoukan_front/miniprogram/pages/index/index.ts

26 lines
616 B
TypeScript
Raw Normal View History

2025-08-09 00:30:05 +08:00
// index.ts
2025-09-26 01:02:43 +08:00
import { IAppOption } from "../../../typings";
2025-08-09 00:30:05 +08:00
// 获取应用实例
const app = getApp<IAppOption>()
Component({
data: {
2025-08-09 17:41:14 +08:00
label_value: 'label_1',
list: [
{ label_value: 'label_1', icon: 'home', ariaLabel: '首页' },
2025-09-24 21:37:23 +08:00
{ label_value: 'label_2', icon: 'add', ariaLabel: '聊天' },
{ label_value: 'label_3', icon: 'shop', ariaLabel: '商城' },
{ label_value: 'label_4', icon: 'user', ariaLabel: '我的' },
2025-08-09 17:41:14 +08:00
],
2025-08-09 00:30:05 +08:00
},
methods: {
2025-08-09 17:41:14 +08:00
onChange(e: { detail: { value: any; }; }) {
2025-08-09 00:30:05 +08:00
this.setData({
2025-08-09 17:41:14 +08:00
label_value: e.detail.value,
});
2025-08-09 00:30:05 +08:00
},
},
})