chufangxiangqing.js 580 B

12345678910111213141516171819202122232425
  1. mui.plusReady(function() {
  2. var self = plus.webview.currentWebview();
  3. var params = {
  4. code:self.code,
  5. patient:self.patient
  6. }
  7. sendPost("doctor/prescriptionInfo/getPrescription",params, function(){
  8. mui.toast("获取数据失败")
  9. }, function(res){
  10. if(res.status == 200){
  11. var medi_html = template('medi_tmp',{v:res.data})
  12. $("#medi_detail").html(medi_html).show();
  13. }else{
  14. mui.toast("获取数据失败")
  15. }
  16. },'get')
  17. template.helper('setSick',function(o){
  18. var arr=[]
  19. $.map(o,function(item,index){
  20. arr.push(item.name)
  21. })
  22. return arr.join(',')
  23. })
  24. })