Files
toutoukan_front/miniprogram/pages/index/index.ts
JACKYMYPERSON eae49c76bd 基本成型
2025-09-27 17:24:52 +08:00

26 lines
616 B
TypeScript

// index.ts
import { IAppOption } from "../../../typings";
// 获取应用实例
const app = getApp<IAppOption>()
Component({
data: {
label_value: 'label_1',
list: [
{ label_value: 'label_1', icon: 'home', ariaLabel: '首页' },
{ label_value: 'label_2', icon: 'add', ariaLabel: '发布' },
{ label_value: 'label_3', icon: 'shop', ariaLabel: '商城' },
{ label_value: 'label_4', icon: 'user', ariaLabel: '我的' },
],
},
methods: {
onChange(e: { detail: { value: any; }; }) {
this.setData({
label_value: e.detail.value,
});
},
},
})