| | |
| | | }, |
| | | { |
| | | field: 'doctorName', |
| | | width: "150", |
| | | width: "100", |
| | | title: '医生姓名', |
| | | fixed: 'left' |
| | | }, |
| | |
| | | }, |
| | | { |
| | | field: 'isAnswer', |
| | | width: "100", |
| | | width: "75", |
| | | title: '医答', |
| | | templet: function (d) { |
| | | return d.isAnswer ? "是" : "否" |
| | |
| | | }, |
| | | { |
| | | field: 'isSigning', |
| | | width: "100", |
| | | width: "75", |
| | | title: '签约', |
| | | templet: function (d) { |
| | | return d.isSigning ? "是" : "否" |
| | | } |
| | | }, |
| | | { |
| | | field: 'isAdminUser', |
| | | width: "100", |
| | | title: '是否管理员', |
| | | templet: function (d) { |
| | | return d.isAdminUser ? "管理员" : "普通医生" |
| | | } |
| | | }, |
| | | { |
| | |
| | | var hospitalName = $("#hospitalName-seach").val(); |
| | | var doctorTel = $('#doctorTel').val(); |
| | | var doctorName = $('#doctorName').val(); |
| | | var hospitalId=$("#hospitalId").val(); |
| | | table.reload('app-table', { |
| | | where: { |
| | | doctorState: doctorState, |
| | | hospitalName: hospitalName, |
| | | hospitalId, |
| | | doctorTel: doctorTel, |
| | | doctorName: doctorName |
| | | } |
| | | }, |
| | | page: { |
| | | curr: 1 |
| | | } |
| | | }); |
| | | }); |
| | | |