13 lines
188 B
JavaScript
13 lines
188 B
JavaScript
let taskId = '';
|
|
Page({
|
|
data: {
|
|
alertText: '',
|
|
completeText: '',
|
|
repeatText: ''
|
|
},
|
|
onLoad: function (options) {
|
|
taskId = options.id;
|
|
}
|
|
|
|
});
|