提交 0a4b07af 编写于 作者: 谬黎's avatar 谬黎

生产代码片段

上级 ca207a2f
console.log("欢迎来到 InsCode");
\ No newline at end of file
//js文件
Page({
data: {
listData: ['列表项1', '列表项2', '列表项3'],
itemHeight: 100, // 列表项高度
deleteBtnWidth: 80 // 删除按钮宽度
},
deleteItem: function(e) {
const index = e.currentTarget.dataset.index;
const listData = this.data.listData;
listData.splice(index, 1);
this.setData({
listData: listData
});
}
})
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册