uploadExpert.vue 15 KB

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