work.js 388 B

1234567891011
  1. yy.onshowdata=function(da){
  2. if(da.projectarr){
  3. var s = '<select id="projcetid" style="width:100px;border:none;background:white;font-size:14px"><option value="">所有项目</option></select>';
  4. $('#searsearch_bar').prepend(s);
  5. $('#projcetid').change(function(){
  6. yy.search({'projcetid':this.value});
  7. });
  8. js.setselectdata(get('projcetid'), da.projectarr, 'id');
  9. }
  10. }