uploadExpert.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. <template>
  2. <view class="uploadExpert">
  3. <u-toast ref="uToast" />
  4. <view class="title">{{patient.title}}</view>
  5. <view class="flex">
  6. <view class="upData flex">
  7. {{patient.caseName}}
  8. </view>
  9. </view>
  10. <view class="box" v-if="patient.type==1">
  11. <view class="tit_box" style="color: #FF5E59;">不通过原因</view>
  12. <text class="msg">{{patient.zjspNotpass}}</text>
  13. </view>
  14. <view class="box" v-else-if="patient.type==2">
  15. <view class="tit_box">通过原因</view>
  16. <text class="msg">{{patient.zjspPass}}</text>
  17. </view>
  18. <view class="box">
  19. <view class="tit">患者信息</view>
  20. <view class="input flex">
  21. <view class="icon">姓名</view>
  22. <text>{{EncryptName(patient.name)}}</text>
  23. </view>
  24. <view class="input flex">
  25. <view class="icon">城市</view>
  26. <text>{{patient.city}}</text>
  27. </view>
  28. <view class="input flex">
  29. <view class="icon">医院</view>
  30. <text>{{patient.hospital}}</text>
  31. </view>
  32. </view>
  33. <view class="box">
  34. <view class="tit">病例详情</view>
  35. <view class="input flex">
  36. <view class="icon">病例类型</view>
  37. <text style="color:#167FFF">{{patient.caseName}}</text>
  38. </view>
  39. <view class="input">
  40. <view class="label">备注</view>
  41. <text>{{patient.remark}}</text>
  42. </view>
  43. <view class="input">
  44. <view class="label flex numbers" style="margin-bottom: 24rpx;">相关照片</view>
  45. <view class="imgList" v-for="(item,index) in pic" :key="index" >
  46. <image :src="item" mode="" @click="previewImage(item)"></image>
  47. <view class="text" v-if="patient.picWordRecognition" @click="words()">
  48. {{strArr[index].slice(0,70)}}...
  49. <text>更多</text>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="input">
  54. <view class="label flex numbers">相关文件</view>
  55. <view v-for="(item,index) in mhFile" :key="index">
  56. <view class="list flex">
  57. <image v-if="format(item)" src="../../static/img/P.png" mode=""></image>
  58. <image v-else src="../../static/img/V.png" mode=""></image>
  59. <text>{{mhFileName[index]}}</text>
  60. </view>
  61. <view class="template" @click="downloadFile(item)">下载地址(<text class="herf">{{item}}</text>)</view>
  62. </view>
  63. </view>
  64. </view>
  65. <view class="uploadBtn" v-if="patient.type==0">
  66. <view class="no" @click="showType(1)">不通过</view>
  67. <view class="yes" @click="showType(2)">通过</view>
  68. </view>
  69. <u-mask :show="show" @click="show = false">
  70. </u-mask>
  71. <view class="popup" v-if="show" :style="'bottom:'+KeyboardHeight+'px;'">
  72. <view class="tit" v-if="type==2">通过原因</view>
  73. <view class="tit" v-else>不通过原因</view>
  74. <textarea v-model="value" type="textarea" :border="false" :show-confirm-bar="false" :clearable="false" :adjust-position="false" @focus="inputBindFocus" @blur="inputBindBlur"/>
  75. <view class="btn" v-if="type==2" @click="patientQuideEdit()">确定通过</view>
  76. <view class="btn" v-else @click="patientQuideEdit()">确定不通过</view>
  77. </view>
  78. </view>
  79. </template>
  80. <script>
  81. export default {
  82. data() {
  83. return {
  84. // 演示地址,请勿直接使用
  85. action: 'http://www.example.com/upload',
  86. pic:[],
  87. mhFile:[],
  88. mhFileName:[],
  89. strArr:[],
  90. show:false,
  91. value:'',//审批理由
  92. patient:{},
  93. type:'',//专家是否通过 0未审理 1没通过 2通过了
  94. id:'',
  95. KeyboardHeight:''
  96. }
  97. },
  98. onLoad(option) {
  99. console.log(this.format())
  100. if(option.id){
  101. this.id=option.id
  102. if(uni.getStorageSync('patient') && option.id == JSON.parse(uni.getStorageSync('patient')).id){
  103. this.patient = JSON.parse(uni.getStorageSync('patient'))
  104. console.log(this.patient)
  105. if(this.patient.pic != ''){
  106. this.pic = this.patient.pic.split(',')
  107. }
  108. // 文件回显
  109. if(this.patient.mhFile && this.patient.secondaryUploadFile){
  110. this.mhFile = this.patient.mhFile.split(',').concat(this.patient.secondaryUploadFile.split(','))
  111. }else{
  112. if(this.patient.mhFile){
  113. this.mhFile = this.patient.mhFile.split(',')
  114. }
  115. if(this.patient.secondaryUploadFile){
  116. this.mhFile = this.patient.secondaryUploadFile.split(',')
  117. }
  118. }
  119. console.log(this.mhFile)
  120. //文件名回显
  121. if(this.patient.mhFileName && this.patient.secondaryUploadFileName){
  122. this.mhFileName = this.patient.mhFileName.split(',').concat(this.patient.secondaryUploadFileName.split(','))
  123. }else{
  124. if(this.patient.mhFileName){
  125. this.mhFileName = this.patient.mhFileName.split(',')
  126. }
  127. if(this.patient.secondaryUploadFileName){
  128. this.mhFileName = this.patient.secondaryUploadFileName.split(',')
  129. }
  130. }
  131. console.log(this.mhFileName)
  132. if(this.patient.picWordRecognition != '' && this.patient.picWordRecognition != null){
  133. this.strArr = this.patient.picWordRecognition.split(',')
  134. }
  135. }
  136. }
  137. },
  138. methods: {
  139. format(str){
  140. if(str.indexOf('ppt')!=-1){
  141. return true
  142. }else{
  143. return false
  144. }
  145. },
  146. EncryptName(name) {
  147. let newStr;
  148. if(name.length === 2) {
  149. newStr = name.substr(0, 1) + '*';
  150. } else if (name.length > 2) {
  151. let char = '';
  152. for (let i = 0, len = name.length - 2; i < len; i++) {
  153. char += '*';
  154. }
  155. newStr = name.substr(0, 1) + char + name.substr(-1, 1);
  156. } else {
  157. newStr = name;
  158. }
  159. return newStr;
  160. },
  161. // 图片预览
  162. previewImage(url){
  163. console.log(url)
  164. let arr=[];
  165. arr.push(url)
  166. console.log(arr,'图片的地址')
  167. uni.previewImage({
  168. current: 0,
  169. urls: arr //必须是网址路径,否则加载不出来,如:http:或https:
  170. });
  171. },
  172. inputBindFocus(e) {
  173. uni.onKeyboardHeightChange(res=>{
  174. console.log('log',res);
  175. this.KeyboardHeight = res.height
  176. })
  177. },
  178. inputBindBlur(){
  179. this.KeyboardHeight = 0
  180. },
  181. DropdownMeh(item){
  182. this.DropdownIndex=item;
  183. this.Dropdown=false;
  184. },
  185. showType(type){
  186. this.type = type;
  187. this.show = true
  188. },
  189. // 时间格式化
  190. format(){
  191. var date = new Date();
  192. console.log(date.getFullYear()); // 返回当前日期的年 2019
  193. console.log(date.getMonth() + 1); // 月份 返回的月份小1个月 记得月份+1 呦
  194. console.log(date.getDate()); // 返回的是 几号
  195. console.log(date.getDay()); // 3 周一返回的是 1 周六返回的是 6 但是 周日返回的是 0
  196. // 我们写一个 2019年 5月 1日 星期三
  197. var year = date.getFullYear();
  198. var month = date.getMonth() + 1;
  199. var dates = date.getDate();
  200. var arr = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'];
  201. var day = date.getDay();
  202. console.log('今天是:' + year + '年' + month + '月' + dates + '日 ' + arr[day]);
  203. var h = date.getHours();
  204. h = h < 10 ? '0' + h : h;
  205. var m = date.getMinutes();
  206. m = m < 10 ? '0' + m : m;
  207. var s = date.getSeconds();
  208. s = s < 10 ? '0' + s : s;
  209. return year +'-'+ month+'-' + dates + ' ' + h + ':' + m + ':' + s;
  210. },
  211. patientQuideEdit(type){
  212. let data = {};
  213. if(this.type == 1){
  214. data = {
  215. id:this.id,
  216. type:this.type,
  217. zjspNotpass:this.value,
  218. // auditorTime:this.format()
  219. }
  220. }else{
  221. data = {
  222. id:this.id,
  223. type:this.type,
  224. zjspPass:this.value,
  225. // auditorTime:this.format()
  226. }
  227. }
  228. if(this.value == ''){
  229. this.$refs.uToast.show({ title: '请输入原因', type: 'error ', })
  230. return;
  231. }
  232. this.$http.patientQuideEdit(data)
  233. .then(res=>{
  234. console.log(res)
  235. if(res.data.code==200){
  236. this.$refs.uToast.show({
  237. title: '提交成功',
  238. })
  239. uni.navigateTo({
  240. url: '/pages/index/calendarExpert',
  241. })
  242. }else{
  243. this.$refs.uToast.show({
  244. title: res.data.message,
  245. type: 'error ',
  246. })
  247. }
  248. })
  249. },
  250. words(){
  251. if(this.strArr==''){
  252. return
  253. }
  254. uni.navigateTo({
  255. url: '/pages/doctor/words',
  256. })
  257. },
  258. // 下载文件
  259. downloadFile(url){
  260. uni.showLoading({title: '正在下载……'});
  261. uni.downloadFile({
  262. url: url,
  263. success: (data) => {
  264. console.log('打印data',data)
  265. if (data.statusCode === 200) {
  266. console.log('下载成功');
  267. //隐藏加载框
  268. uni.hideLoading();
  269. //文件保存到本地
  270. uni.saveFile({
  271. tempFilePath: data.tempFilePath, //临时路径
  272. success: function(res) {
  273. // console.log('打印res',res)
  274. uni.showToast({
  275. icon: 'success',
  276. mask: true,
  277. // title: '文件已保存:' + res.savedFilePath, //保存路径
  278. title: '下载成功' ,
  279. duration: 2000,
  280. });
  281. //自动打开文档查看
  282. setTimeout(() => {
  283. var filePath = res.savedFilePath;
  284. uni.openDocument({ //新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。
  285. filePath: filePath,
  286. showMenu: true,
  287. success: function (res) {
  288. console.log('打开文档成功');
  289. }
  290. });
  291. }, 1000)
  292. },
  293. });
  294. }
  295. }
  296. });
  297. },
  298. }
  299. }
  300. </script>
  301. <style lang="scss">
  302. .uploadExpert{
  303. padding: 32rpx 32rpx 120rpx;
  304. .popup{
  305. position: fixed;
  306. width: 100%;
  307. left: 0;
  308. bottom:0;
  309. padding:32rpx;
  310. background-color: #fff;
  311. border-radius: 24rpx 24rpx 0px 0px;
  312. z-index: 99999;
  313. textarea{
  314. box-sizing: border-box;
  315. width: 100%;
  316. padding:20rpx;
  317. border-radius: 24rpx;
  318. background-color: #F3F3F3;
  319. font-size: 28rpx;
  320. color:#000;
  321. margin-top: 24rpx;
  322. margin-bottom: 70rpx;
  323. }
  324. .tit{
  325. font-size: 32rpx;
  326. color: rgba(0,0,0,0.8);
  327. }
  328. .u-input__input{
  329. }
  330. .btn{
  331. width: 100%;
  332. height: 96rpx;
  333. line-height: 96rpx;
  334. text-align: center;
  335. font-size: 32rpx;
  336. color:#fff;
  337. background: #167FFF;
  338. border-radius: 48rpx;
  339. }
  340. }
  341. .title{
  342. font-size: 48rpx;
  343. color: #000;
  344. padding-bottom: 24rpx;
  345. font-weight: bold;
  346. }
  347. .flex{
  348. position: relative;
  349. .Dropdown{
  350. position: absolute;
  351. top: 0;
  352. z-index: 10;
  353. width: 100%;
  354. padding: 24rpx 36rpx 0;
  355. background-color: #fff;
  356. box-shadow: 0px 2rpx 20rpx 0px rgba(0,0,0,0.1);
  357. border-radius: 16rpx;
  358. font-size:28rpx;
  359. color: rgba(0,0,0,0.8);
  360. .li{
  361. margin-bottom: 28rpx;
  362. }
  363. .active{
  364. color:$color;
  365. }
  366. }
  367. }
  368. .upData{
  369. display: inline-block;
  370. padding: 4rpx 24rpx;
  371. background: rgba(22,127,255,0.1);
  372. border-radius: 24rpx;
  373. font-size: 28rpx;
  374. color: $color;
  375. image{
  376. width: 32rpx;
  377. height: 32rpx;
  378. margin-left: 12rpx;
  379. }
  380. }
  381. .box{
  382. box-sizing: border-box;
  383. padding: 32rpx 20rpx 0;
  384. background-color: #fff;
  385. border-radius: 24rpx;
  386. margin-top: 24rpx;
  387. .tit_box{
  388. font-size: 32rpx;
  389. color:$color;
  390. font-weight: bold;
  391. }
  392. .msg{
  393. display: block;
  394. margin-top: 24rpx;
  395. font-size: 28rpx;
  396. color: #000000;
  397. padding-bottom: 32rpx;
  398. }
  399. .tit{
  400. font-size: 32rpx;
  401. color: rgba(0,0,0,0.8);
  402. font-weight: bold;
  403. }
  404. .input{
  405. position: relative;
  406. .label{
  407. font-size: 28rpx;
  408. font-weight: bold;
  409. }
  410. .icon{
  411. font-weight: bold;
  412. width: 140rpx;
  413. color: rgba(0,0,0,0.8);
  414. }
  415. .msg{
  416. color: rgba(0,0,0,0.35);
  417. margin-left: 10rpx;
  418. }
  419. .list{
  420. padding: 20rpx;
  421. background: rgba(227,66,33,0.1);
  422. border-radius: 24rpx;
  423. font-size: 28rpx;
  424. color: #000000;
  425. margin-top: 20rpx;
  426. image{
  427. width: 40rpx;
  428. height: 40rpx;
  429. margin-right: 20rpx;
  430. }
  431. text{
  432. flex: 1;
  433. width: 100%;
  434. word-wrap: break-word;
  435. }
  436. }
  437. .list1{
  438. background: rgba(22,127,255,0.1);
  439. }
  440. u-input{
  441. flex: 1;
  442. }
  443. .imgList{
  444. display: flex;
  445. flex-direction: row;
  446. align-items: center;
  447. margin-bottom: 24rpx;
  448. image{
  449. width: 160rpx;
  450. height: 160rpx;
  451. border-radius: 24rpx;
  452. }
  453. .text{
  454. flex: 1;
  455. padding-left: 24rpx;
  456. text{
  457. color: $color;
  458. }
  459. }
  460. }
  461. image{
  462. width: 32rpx;
  463. height: 32rpx;
  464. }
  465. text{
  466. color: rgba(0,0,0,0.8);
  467. }
  468. }
  469. .input:last-child{
  470. border-bottom:1px solid transparent;
  471. }
  472. }
  473. .template{
  474. padding:24rpx 0;
  475. font-size: 28rpx;
  476. color: #000;
  477. .herf{
  478. color: #167FFF!important;
  479. word-wrap: break-word;
  480. }
  481. }
  482. .suc{
  483. position: relative;
  484. text-align: center;
  485. width: 520rpx;
  486. height: 510rpx;
  487. margin:0 auto;
  488. image{
  489. position: absolute;
  490. left: 0;
  491. top: 0;
  492. width: 100%;
  493. height: 510rpx;
  494. }
  495. .con{
  496. position: relative;
  497. z-index: 11;
  498. text-align: center;
  499. box-sizing: border-box;
  500. padding: 0 40rpx;
  501. overflow: hidden;
  502. .tit{
  503. font-size: 36rpx;
  504. color: $color;
  505. padding-top: 190rpx;
  506. }
  507. .p{
  508. width: 230rpx;
  509. margin: 32rpx auto 50rpx;
  510. font-size: 28rpx;
  511. color: rgba(0,0,0,0.6);
  512. }
  513. .btn{
  514. display: flex;
  515. flex-direction: row;
  516. align-items: center;
  517. justify-content: space-between;
  518. view{
  519. width: 208rpx;
  520. height: 56rpx;
  521. line-height: 56rpx;
  522. text-align: center;
  523. border: 2rpx solid rgba(0,0,0,0.35);
  524. font-size: 28rpx;
  525. color: rgba(0,0,0,0.35);
  526. border-radius: 40rpx;
  527. }
  528. .next{
  529. background-color: $color;
  530. color: #fff;
  531. border: 2rpx solid $color;
  532. }
  533. }
  534. }
  535. }
  536. .u-mode-center-box{
  537. background-color: transparent!important;
  538. }
  539. .uploadBtn{
  540. position: fixed;
  541. bottom: 0;
  542. left: 0;
  543. width: 100%;
  544. box-sizing: border-box;
  545. padding: 12rpx 32rpx;
  546. display: flex;
  547. flex-direction: row;
  548. align-items: center;
  549. justify-content: space-between;
  550. font-size: 32rpx;
  551. color:#fff;
  552. background-color: #fff;
  553. .no{
  554. width: 320rpx;
  555. padding: 20rpx 0;
  556. text-align: center;
  557. box-sizing: border-box;
  558. border-radius: 48rpx;
  559. background: #FF8F2E;
  560. }
  561. .yes{
  562. width: 320rpx;
  563. box-sizing: border-box;
  564. border-radius: 48rpx;
  565. padding: 20rpx 0;
  566. text-align: center;
  567. background-color: $color;
  568. }
  569. }
  570. }
  571. </style>