guide_the_message.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. var httpData = GetRequest()
  2. var docInfo = JSON.parse(window.localStorage.getItem('wlyyAgent'))
  3. var tempwindow
  4. var previewLayerIndex, followupLayerIndex, KFZDlayerIndex
  5. function closeGuidancePreview() {
  6. layer.close(previewLayerIndex)
  7. }
  8. function closeFollowUpLayer(planDetaiId, relationCode) {
  9. if ($.isArray(relationCode)) {
  10. $.each(relationCode, function (index, item) {
  11. top.rehabilitationGuideVue.saveRehabilitationOperateRecord(planDetaiId, 6, item)
  12. })
  13. } else {
  14. top.rehabilitationGuideVue.saveRehabilitationOperateRecord(planDetaiId, 6, relationCode)
  15. }
  16. layer.close(followupLayerIndex)
  17. }
  18. function closeKFZDlayer(planDetaiId) {
  19. top.rehabilitationGuideVue.saveRehabilitationOperateRecord(planDetaiId, 5)
  20. layer.close(KFZDlayerIndex)
  21. }
  22. function showSuccessMessage(msg) {
  23. layer.msg(msg, {
  24. icon: 1
  25. })
  26. }
  27. function showErrorMessage(msg) {
  28. layer.msg(msg, {
  29. icon: 5
  30. })
  31. }
  32. top.rehabilitationGuideVue = new Vue({
  33. el: '#app',
  34. data: {
  35. doctorlevel: docInfo.doctorlevel,
  36. imgData: {
  37. accept: 'image/gif, image/jpeg, image/png, image/jpg'
  38. },
  39. isCollapse: false,
  40. selectCheckTyperadio: 0,
  41. showAppointHelpCheckBtn: true, //点击预约协诊按钮结束变为false
  42. showRecordFinished: false, //点击完成记录按钮变为true
  43. appointTime: '',
  44. appointDate: '',
  45. appointHour: '',
  46. upImgs: [],
  47. upImgArr: [],
  48. planid: httpData['planid'], // 服务项id
  49. service: {
  50. relationRecordImg: {},
  51. messageList: {}
  52. },
  53. startTime: '',
  54. pickerOptions: {
  55. disabledDate: function (time) {
  56. return time.format('yyyy-MM-dd') < new Date().format('yyyy-MM-dd')
  57. }
  58. },
  59. pId: httpData['pId'], // 康复计划id
  60. patient: httpData['patient'],
  61. patientName: decodeURI(httpData['patientName']),
  62. layerIndex: undefined,
  63. recordId: httpData['recordId'] || undefined,
  64. islimit: false
  65. },
  66. watch: {
  67. appointDate: function () {
  68. if (this.appointDate == new Date().format('yyyy-MM-dd')) {
  69. this.startTime = new Date(new Date().getTime()).format('hh:mm')
  70. } else {
  71. this.startTime = ''
  72. }
  73. }
  74. },
  75. mounted: function () {
  76. this.getServiceItem()
  77. },
  78. methods: {
  79. // 提醒患者 num 1康复指导2康复下转3复诊提醒4上门服务提醒5家签提醒
  80. sendSpecialistWeixinMessage: function (type) {
  81. var vm = this
  82. var text = ''
  83. if (type == 4) {
  84. // 上门服务
  85. text = '请问您是否确认提醒' + vm.patientName + '居民预约上门护理服务?'
  86. } else if (type == 7) {
  87. // 康复复诊
  88. text = '请问您是否确认提醒' + vm.patientName + '居民进行复诊?'
  89. }
  90. var current = layer.confirm(
  91. text,
  92. {
  93. btn: ['确定', '取消'],
  94. title: '提示'
  95. },
  96. function (index) {
  97. var reservationTypeObj = { 0: 2, 1: 3, 2: 1 }
  98. var _type = type == 4 ? 4 : type == 7 ? 3 : ''
  99. var loading = layer.load(0, { shade: false })
  100. var params = {
  101. patient: vm.patient,
  102. doctor: docInfo.uid,
  103. type: _type,
  104. relationCode: vm.planid,
  105. planId: vm.pId,
  106. reservationType: reservationTypeObj[vm.selectCheckTyperadio] //复诊类型:1线上,2线下,3远程
  107. }
  108. rehaAPI.sendSpecialistWeixinMessage(params).then(function (res) {
  109. layer.close(loading)
  110. if (res.status == 200) {
  111. showSuccessMessage('提交成功!')
  112. if (_type == 3 || _type == 4) {
  113. // 提醒患者后,即认为是已完成
  114. vm.saveRehabilitationOperateRecord(vm.planid, type)
  115. }
  116. } else {
  117. showErrorMessage(res.msg)
  118. }
  119. })
  120. layer.close(current) //再执行关闭
  121. }
  122. )
  123. },
  124. appointHelpCheck: function (data) {
  125. var vm = this
  126. vm.showAppointHelpCheckBtn = false
  127. vm.appointTime = vm.appointDate + ' ' + vm.appointHour
  128. var params = {
  129. patient: vm.patient,
  130. doctor: data.familyDoctorCode,
  131. doctorName: data.familyDoctorName, //家签医生
  132. sendTime: vm.appointTime,
  133. planDetailId: vm.planid,
  134. appointmentDoctor: data.specialistDoctorCode,
  135. appointmentDoctorName: data.specialistDoctorName //专科医生
  136. }
  137. var loading = layer.load(0, { shade: false })
  138. rehaAPI.appointmentConsultation(params).then(function (res) {
  139. layer.close(loading)
  140. if (res.status == 200) {
  141. showSuccessMessage('操作成功')
  142. setTimeout(function () {
  143. vm.getServiceItem()
  144. }, 400)
  145. } else {
  146. showErrorMessage(res.msg)
  147. }
  148. })
  149. },
  150. encryptCode: function (docCode) {
  151. var publicKey =
  152. 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC4lT0JWcv9xx6Q1hsxMal2F1AmKti/xVbBeh8jrD5CiYsFTH0DO1Mpyvv8YtkGdnDSLRjOQOA1PiaYvZoHIhml/jTvEMsvFlAD5i1BsHa5blLlJxQNp/XI7wpMZPfczqO+I/JONrV6ib+6Ci/1FyTjPQfHaiT2ehGyM/CFzOW1PQIDAQAB'
  153. var encrypt = new JSEncrypt()
  154. encrypt.setPublicKey(publicKey)
  155. return encodeURIComponent(encrypt.encrypt(docCode))
  156. },
  157. openWindow(url, p1, p2) {
  158. try {
  159. if (tempwindow) tempwindow.close()
  160. } catch (e) {
  161. console.log(e)
  162. }
  163. if (p1) {
  164. tempwindow = window.open('_blank', p1, p2)
  165. } else {
  166. tempwindow = window.open('_blank')
  167. }
  168. tempwindow.location = url
  169. },
  170. openHelpCheck: function () {
  171. var encryptCode = this.encryptCode(docInfo.uid)
  172. var url = httpRequest.teamworkService + '/#/teamwork/login?_code=' + encryptCode
  173. this.openWindow(url)
  174. },
  175. recordFinished: function () {
  176. this.showRecordFinished = true
  177. },
  178. //康复指导
  179. kfzd: function () {
  180. var vm = this,
  181. str = '../../rehabilitation/html/rehabilitation_guidance.html?patient=' + vm.patient + '&planDetaiId=' + vm.planid + '&planId=' + vm.pId
  182. KFZDlayerIndex = layer.open({
  183. type: 2,
  184. // offset: ['100px'], //右下角弹出
  185. area: ['660px', '650px'],
  186. shade: 0.5,
  187. title: '康复指导',
  188. fixed: true, //不固定
  189. maxmin: true,
  190. closeBtn: 1,
  191. shift: 5,
  192. shadeClose: false, //点击遮罩关闭层
  193. content: str,
  194. end: function () {
  195. // 未点击确定按钮,点击关闭按钮
  196. this.getServiceItem()
  197. }
  198. })
  199. },
  200. // 康复随访计划
  201. sfjh: function () {
  202. var vm = this
  203. followupLayerIndex = layer.open({
  204. type: 2,
  205. // offset: ['100px'], //右下角弹出
  206. area: ['80%', '650px'],
  207. shade: 0.5,
  208. title: '随访计划',
  209. fixed: true, //不固定
  210. maxmin: true,
  211. closeBtn: 1,
  212. shift: 5,
  213. shadeClose: false, //点击遮罩关闭层
  214. content: '../../followup/html/followup_newplan.html?patient=' + vm.patient + '&planDetaiId=' + vm.planid + '&planId=' + vm.pId,
  215. end: function () {
  216. // 未点击确定按钮,点击关闭按钮
  217. this.getServiceItem()
  218. }
  219. })
  220. },
  221. zwkf: function () {
  222. top.layer.msg('此功能暂未开放', {
  223. icon: 1
  224. })
  225. },
  226. //康复指导
  227. jkzd: function (planId, patient) {
  228. var vm = this
  229. top.layer.open({
  230. type: 2,
  231. // offset: ['100px'], //右下角弹出
  232. area: ['80%', '648px'],
  233. shade: 0.5,
  234. title: '健康教育',
  235. fixed: true, //不固定
  236. maxmin: true,
  237. closeBtn: 1,
  238. shift: 5,
  239. shadeClose: false, //点击遮罩关闭层
  240. content: '../../guidance/html/index.html#/person-edit-panel?patient=' + patient + '&planId=' + planId
  241. })
  242. },
  243. // openFollowResult() {
  244. // top.layer.open({
  245. // type: 2,
  246. // area: ['600px', '700px'],
  247. // shade: 0.5,
  248. // title: '查看随访表单',
  249. // fixed: true, //不固定
  250. // maxmin: true,
  251. // closeBtn: 1,
  252. // // shift: 5,
  253. // shadeClose: false, //点击遮罩关闭层
  254. // content: '../html/followResult.html'
  255. // })
  256. // },
  257. rehabilitationReservation() {
  258. // 如果是康复复诊过去预约挂号,在就诊信息页面少一个字段显示,1隐藏字段,0正常显示
  259. sessionStorage.setItem("isFuzhen",1)
  260. top.layer.open({
  261. type: 2,
  262. closeBtn: 1, // 显示关闭按钮
  263. area: ['800px', '90%'],
  264. title: '预约挂号',
  265. content: '../../jbsc/html/appointment/appoint-select.html?patient=' + this.patient
  266. })
  267. },
  268. openFollowRecordForm() {
  269. var vm=this
  270. top.layer.open({
  271. type: 2,
  272. area: ['600px', '700px'],
  273. shade: 0.5,
  274. title: '记录随访表单',
  275. fixed: true, //不固定
  276. maxmin: true,
  277. closeBtn: 1,
  278. // shift: 5,
  279. shadeClose: false, //点击遮罩关闭层
  280. content: '../../rehabilitation/html/followRecord.html?serviceInfo=' + encodeURIComponent(JSON.stringify(this.service)) + '&planDetailId=' + this.planid,
  281. end: function () {
  282. // 未点击确定按钮,点击关闭按钮
  283. vm.getServiceItem()
  284. }
  285. })
  286. },
  287. qwapp: function() {
  288. top.layer.msg('请前往app处理', {
  289. icon: 5
  290. });
  291. },
  292. toDoorDialog(){
  293. top.layer.open({
  294. type: 2,
  295. area: ['850px', '700px'],
  296. shade: 0.5,
  297. title: '代预约',
  298. fixed: true, //不固定
  299. maxmin: true,
  300. closeBtn: 1,
  301. // shift: 5,
  302. shadeClose: false, //点击遮罩关闭层
  303. content: `/app/rehabilitation/html/toDoorService.html?patient=${this.patient}detailId=${this.planId}`
  304. })
  305. },
  306. viewGuidance: function(o){
  307. var vm = this
  308. previewLayerIndex = layer.open({
  309. type: 2,
  310. area: ['380px', '600px'],
  311. shade: 0.5,
  312. title: '预览',
  313. fixed: true, //不固定
  314. maxmin: true,
  315. closeBtn:1,
  316. shift: 5,
  317. shadeClose: false, //点击遮罩关闭层
  318. content: '../../rehabilitation/html/rehabilitation_guidance_preview.html?modelCode='+o.article
  319. });
  320. },
  321. getServiceItem: function() {
  322. var vm = this;
  323. var loginDoctor = JSON.parse(window.localStorage.getItem('wlyyAgent'));
  324. var loadding = top.layer.load(0, {
  325. shade: false
  326. }); //0代表加载的风格,支持0-2
  327. var params = {
  328. planDetailId: vm.planid,
  329. }
  330. if(vm.recordId){
  331. params['recordId'] = vm.recordId
  332. }
  333. rehaAPI.serviceItem(params).then(function(res) {
  334. top.layer.close(loadding);
  335. if(res.status == 200) {
  336. vm.service = res.data;
  337. var isZK=loginDoctor.doctorType==1?true:false;
  338. vm.service.isZK=isZK;
  339. if(vm.service.completeTime){
  340. var l = vm.service.completeTime.length
  341. vm.service.shortCompleteTime = vm.service.completeTime.substr(l-5, l-1)
  342. }
  343. if(vm.service.isMyTask==1){//执行者
  344. vm.service.isCK=true;//无法显示按钮
  345. if(loginDoctor.uid==vm.service.specialistDoctorCode){//说明我自己是创建者
  346. vm.service.isCK=false;
  347. vm.service.isCreate=true;
  348. }
  349. }else{
  350. if(loginDoctor.uid==vm.service.specialistDoctorCode){//说明我自己是创建者
  351. vm.service.isCreate=true;
  352. }
  353. }
  354. if(vm.service.type == 4 || vm.service.type == 5 || vm.service.type == 7){
  355. vm.getRelationRecord(vm.service.type, vm.planid).then(function(result){
  356. if(result.status == 200){
  357. vm.service.relationList = result.data&&result.data.length>0?result.data:undefined
  358. vm.$forceUpdate()
  359. }
  360. })
  361. }
  362. if(vm.service.frequencyCode){
  363. vm.islimit = true
  364. } else {
  365. vm.islimit = false
  366. }
  367. } else {
  368. top.layer.msg(res.msg, {
  369. icon: 5
  370. });
  371. }
  372. if(vm.service.status==1){
  373. var index = top.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  374. top.layer.title('服务记录详情', index) //再改变当前层的标题
  375. }
  376. })
  377. },
  378. getRelationRecord: function(type, planDetaiId){
  379. // 1.电话短信 2.康复咨询 3.远程监控检测 4.上门服务 5.康复指导 6 康复随访 7.复诊)
  380. var vm = this
  381. var url=''
  382. if(type==5){
  383. url='doctor/specialist/rehabilitation/selectByRelationCode'
  384. }else if(type==7){
  385. url='third/guahao/selectByRelationCode'
  386. }else if(type==4){
  387. url="/doctor/specialist/rehabilitation/selectRelationCode"
  388. }
  389. var vm = this
  390. var params = {
  391. relationCode: vm.recordId?vm.recordId:planDetaiId
  392. }
  393. return httpRequest.get(url, {data: params})
  394. },
  395. zdly: function(data) {
  396. var vm = this
  397. var loginDoctor = JSON.parse(window.localStorage.getItem('wlyyAgent'));
  398. var otherCode, otherName;
  399. if(loginDoctor.doctorType == 1) {
  400. otherCode = data.familyDoctorCode;
  401. otherName = data.familyDoctorName;
  402. } else {
  403. otherCode = data.specialistDoctorCode;
  404. otherName = data.specialistDoctorName;
  405. }
  406. top.layer.open({
  407. type: 2,
  408. // offset: ['100px'], //右下角弹出
  409. area: ['660px', '600px'],
  410. shade: 0.5,
  411. title: '指导留言',
  412. fixed: true, //不固定
  413. maxmin: true,
  414. closeBtn: 1,
  415. shift: 5,
  416. shadeClose: false, //点击遮罩关闭层
  417. content: '../../consulting/html/consulting.html?otherCode=' + otherCode + '&otherName=' + encodeURI(otherName) + '&planDetailId=' + vm.planid,
  418. end: function() { // 未点击确定按钮,点击关闭按钮
  419.       
  420. vm.getServiceItem();    
  421. }
  422. });
  423. },
  424. deleteImg: function(idx) {
  425. console.log(idx)
  426. this.upImgs.splice(idx, 1)
  427. },
  428. chakan: function() {
  429. this.isCollapse = !this.isCollapse;
  430. },
  431. upLoadImgToBase64: function() {
  432. var vm = this;
  433. var img1 = event.target.files[0];
  434. var reader = new FileReader();
  435. var type = img1.type; //文件的类型,判断是否是图片
  436. var size = img1.size; //文件的大小,判断图片的大小
  437. if(this.imgData.accept.indexOf(type) == -1) {
  438. alert('请选择我们支持的图片格式!');
  439. return false;
  440. }
  441. if(size > 3145728) {
  442. alert('请选择3M以内的图片!');
  443. return false;
  444. }
  445. reader.readAsDataURL(img1);
  446. reader.onload = function(e) {
  447. vm.upImgs.push({
  448. baseUrl: e.target.result
  449. });
  450. vm.upImgArr.push(img1);
  451. console.log('e', e, 'vm.upImgs', vm.upImgs, 'vm.upImgArr', vm.upImgArr)
  452. //vm.uploadImg(vm.upImgArr);
  453. }
  454. },
  455. qrwc: function(patient,type) {
  456. var vm = this;
  457. if(!vm.service.node){
  458. showErrorMessage('请填写服务记录')
  459. return
  460. }
  461. if(!vm.upImgs.length){
  462. showErrorMessage('请上传相关记录')
  463. return
  464. }
  465. vm.saveRehabilitationOperateRecord(vm.planid,type);
  466. },
  467. saveRehabilitationOperateRecord:function(planDetailId, type, relationCode, flag){
  468. var vm=this;
  469. var params={
  470. rehabilitationDetailId: planDetailId,
  471. node: null,
  472. patientCode: vm.patient,
  473. doctorCode: docInfo.uid,
  474. relationRecordType: type,
  475. relationRecordCode: '',
  476. relationRecordImg: null,
  477. status: 0
  478. }
  479. rehaAPI.saveRehabilitationOperateRecord({dataJson:JSON.stringify(params)}).then(function(res){
  480. if(res.status==200){
  481. if(type==1 || type==7){
  482. vm.uploadImg(vm.upImgArr);
  483. }else if(type==6){
  484. vm.updateRelationCodeByDetailId(planDetailId, relationCode)
  485. } else {
  486. vm.updateNoteAndImageRehabilitationOperate(planDetailId)
  487. }
  488. } else {
  489. layer.msg(res.msg, {
  490. icon: 5
  491. });
  492. }
  493. })
  494. },
  495. //上传图片
  496. uploadImg: function(data) {
  497. var vm = this;
  498. var len = data.length;
  499. if(len==0) {
  500. vm.updateNoteAndImageRehabilitationOperate(vm.planid)
  501. } else {
  502. var file = data[len - 1];
  503. var formData = new FormData();
  504. formData.append('file', file);
  505. rehaAPI.upload(formData).then(function(res) {
  506. if(res.status == 200) {
  507. vm.upImgs[len - 1].img = res.data;
  508. data.pop();
  509. vm.$forceUpdate()
  510. vm.uploadImg(data);
  511. } else {
  512. layer.msg(res.msg, {
  513. icon: 5
  514. });
  515. }
  516. })
  517. }
  518. },
  519. updateNoteAndImageRehabilitationOperate: function(planDetailId, relationCode) {
  520. var vm = this;
  521. var _image = [];
  522. $.each(vm.upImgs, function(index, obj){
  523. _image.push(obj.img);
  524. })
  525. var params = {
  526. planDetailId: planDetailId,
  527. node: vm.service&&vm.service.node?vm.service.node:null,
  528. image:JSON.stringify(_image)||''
  529. }
  530. if(relationCode){
  531. params['relationCode'] = relationCode
  532. }
  533. var loadding = top.layer.load(0, {
  534. shade: false
  535. }); //0代表加载的风格,支持0-2
  536. rehaAPI.updateNoteAndImageRehabilitationOperate(params).then(function(res) {
  537. top.layer.close(loadding);
  538. if(res.status == 200) {
  539. vm.getServiceItem();
  540. top.rehabilitationVue.refresh()
  541. }
  542. })
  543. },
  544. updateRelationCodeByDetailId: function(planDetailId, relationCode){
  545. var vm = this
  546. var params = {
  547. planDetailId: planDetailId,
  548. relationCode: relationCode,
  549. }
  550. rehaAPI.updateRelationCodeByDetailId(params).then(function(res) {
  551. if(res.status == 200) {
  552. vm.getServiceItem();
  553. top.rehabilitationVue.refresh()
  554. } else {
  555. showErrorMessage(res.msg)
  556. }
  557. })
  558. },
  559. viewDetial:function(type,code){
  560. var vm=this;
  561. if(type == 3) {
  562. top.layer.msg('客户端暂不支持查询健康指导记录');
  563. } else if(type==4){
  564. top.layer.msg('客户端暂不支持查询随访记录');
  565. }else{
  566. top.layer.open({
  567. type: 2,
  568. // offset: ['100px'], //右下角弹出
  569. area: ['80%', '600px'],
  570. shade: 0.5,
  571. title: '指导教育',
  572. fixed: true, //不固定
  573. maxmin: true,
  574. closeBtn: 1,
  575. shift: 5,
  576. shadeClose: false, //点击遮罩关闭层
  577. content: '../../article/html/article-info.html?articleId=' + code,
  578. end: function() { // 未点击确定按钮,点击关闭按钮
  579. vm.getServiceItem();    
  580. }
  581. });
  582. }
  583. },
  584. getContent: function(value,type) {
  585. var res=value;
  586. if(type==2 || type==9){
  587. res = "<img src='"+httpRequest.getImgUrl(res)+"'>";
  588. }else if(type==3){
  589. res = '【语音】';
  590. }else if(type==19){
  591. res = '【聊天记录】';
  592. }else if(type==12){
  593. res = '【视频】';
  594. }
  595. return res;
  596. }
  597. },
  598. filters: {
  599. formatDate: function(value, format) {
  600. if(!value) return;
  601. var fmt = format || "yyyy-MM-dd hh:mm";
  602. var date = new Date(value);
  603. if(/(y+)/.test(fmt)) {
  604. fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
  605. }
  606. let o = {
  607. 'M+': date.getMonth() + 1,
  608. 'd+': date.getDate(),
  609. 'h+': date.getHours(),
  610. 'm+': date.getMinutes(),
  611. 's+': date.getSeconds()
  612. };
  613. for(let k in o) {
  614. if(new RegExp(`(${k})`).test(fmt)) {
  615. let str = o[k] + '';
  616. fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : ('00' + str).substr(str.length));
  617. }
  618. }
  619. return fmt;
  620. },
  621. getImgUrl: function(value) {
  622. var url = httpRequest.getImgUrl(value);
  623. return url;
  624. }
  625. }
  626. })
  627. $('body').on('click', 'img', function () {
  628. var _this = $(this) //将当前的img元素作为_this传入函数
  629. imgShow('#outerdiv', '#innerdiv', '#bigimg', _this)
  630. })
  631. function imgShow(outerdiv, innerdiv, bigimg, _this) {
  632. var src = _this.attr('src') //获取当前点击的pimg元素中的src属性
  633. $(bigimg).attr('src', src) //设置#bigimg元素的src属性
  634. /*获取当前点击图片的真实大小,并显示弹出层及大图*/
  635. $('<img/>')
  636. .attr('src', src)
  637. .load(function () {
  638. var windowW = $(window).width() //获取当前窗口宽度
  639. var windowH = $(window).height() //获取当前窗口高度
  640. var realWidth = this.width //获取图片真实宽度
  641. var realHeight = this.height //获取图片真实高度
  642. var imgWidth, imgHeight
  643. var scale = 0.8 //缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放
  644. if (realHeight > windowH * scale) {
  645. //判断图片高度
  646. imgHeight = windowH * scale //如大于窗口高度,图片高度进行缩放
  647. imgWidth = (imgHeight / realHeight) * realWidth //等比例缩放宽度
  648. if (imgWidth > windowW * scale) {
  649. //如宽度扔大于窗口宽度
  650. imgWidth = windowW * scale //再对宽度进行缩放
  651. }
  652. } else if (realWidth > windowW * scale) {
  653. //如图片高度合适,判断图片宽度
  654. imgWidth = windowW * scale //如大于窗口宽度,图片宽度进行缩放
  655. imgHeight = (imgWidth / realWidth) * realHeight //等比例缩放高度
  656. } else {
  657. //如果图片真实高度和宽度都符合要求,高宽不变
  658. imgWidth = realWidth
  659. imgHeight = realHeight
  660. }
  661. $(bigimg).css('width', imgWidth) //以最终的宽度对图片缩放
  662. var w = (windowW - imgWidth) / 2 //计算图片与窗口左边距
  663. var h = (windowH - imgHeight) / 2 //计算图片与窗口上边距
  664. $(innerdiv).css({ 'top': h, 'left': w }) //设置#innerdiv的top和left属性
  665. $(outerdiv).fadeIn('fast') //淡入显示#outerdiv及.pimg
  666. })
  667. $(outerdiv).click(function () {
  668. //再次点击淡出消失弹出层
  669. $(this).fadeOut('fast')
  670. })
  671. }