cyl/dev
jscyl13849007907 1 year ago
parent 02960234db
commit b19ef36fae

@ -661,6 +661,19 @@ Page({
this.data.storeJobListSearchForm.keys = ""; this.data.storeJobListSearchForm.keys = "";
this.getJobList('search'); this.getJobList('search');
}, },
bindconfirm: function (e){
if (!this.data.isLogin) {
wx.navigateTo({
url: "../login/index",
});
return;
}
console.log(e);
this.data.recordList = [];
this.data.storeJobListSearchForm.pageNum = 1;
this.data.storeJobListSearchForm.keys = e.detail.value;
this.getJobList('search');
},
inputTyping: function (e) { inputTyping: function (e) {
this.setData({ this.setData({
inputVal: e.detail.value, inputVal: e.detail.value,

@ -30,6 +30,7 @@
value="{{inputVal}}" value="{{inputVal}}"
class="f14" class="f14"
bindinput="inputTyping" bindinput="inputTyping"
bindconfirm="bindconfirm"
placeholder="" placeholder=""
catchblur catchblur
placeholder-class="f14" placeholder-class="f14"

Loading…
Cancel
Save