16 lines
296 B
TypeScript
16 lines
296 B
TypeScript
// e:\project\dy_video_all\初晴剧场\pages\search\search.ts
|
|
Page({
|
|
data: {
|
|
searchValue: ''
|
|
},
|
|
onLoad: function (options) {
|
|
|
|
},
|
|
handelSearchInput(ev: any) {
|
|
console.log(ev, "[[[[[[[[[[[")
|
|
const val = ev.detail.value;
|
|
this.setData({
|
|
searchValue: val
|
|
})
|
|
}
|
|
}) |