calendarExpert.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <view class="calendarExpert">
  3. <u-toast ref="uToast" />
  4. <view class="con" style="padding: 0;overflow: hidden;">
  5. <u-tabs :list="list" :is-scroll="false" font-size="32" :show-bar="false" height="120" inactive-color="rgba(0,0,0,0.6)" active-color="rgba(0,0,0,0.8)" :current="current" @change="change"></u-tabs>
  6. </view>
  7. <view class="con" v-if="patientListZjArr.length==0">
  8. <image class="no" src="../../static/img/no.png" mode=""></image>
  9. <view class="text">列表内容为空</view>
  10. </view>
  11. <view class="list" v-else>
  12. <view class="li" v-for="(item,index) in patientListZjArr" :key="index" @click="patientListZjMet(item)">
  13. <view class="flex one">
  14. <view class="type">{{item.title}}</view>
  15. <view class="name">{{item.name}}</view>
  16. <view class="status" v-if="item.type==0">未审核</view>
  17. <view class="status status1" v-else-if="item.type==2">通过</view>
  18. <view class="status status2" v-else>不通过</view>
  19. </view>
  20. <view class="flex address">
  21. <view>{{item.city}}</view>
  22. <view>{{item.hospital}}</view>
  23. </view>
  24. <view class="flex" style="justify-content: space-between;">
  25. <view class="class" >
  26. <view class="box">{{item.uploadingName}}</view><view class="box">{{item.caseName}}</view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <tabBar :pagePath="'/pages/index/calendarExpert'"></tabBar>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. list: [{
  39. name: '未审核'
  40. }, {
  41. name: '已审核'
  42. }],
  43. current: 0,
  44. patientListZjArr:[],
  45. type0List:[],
  46. typeList:[]
  47. }
  48. },
  49. onLoad(option) {
  50. this.patientListZj()
  51. },
  52. methods: {
  53. patientListZj(){
  54. this.$http.patientListZj()
  55. .then(res=>{
  56. if(res.data.code==200){
  57. // console.log(res.data.result)
  58. // console.log(this.geshihua(res.data.result,'type'))
  59. let list = this.geshihua(res.data.result,'type')
  60. list.forEach(val=>{
  61. if(val.type==0){
  62. this.type0List = this.type0List.concat(val.data)
  63. }else{
  64. this.typeList = this.typeList.concat(val.data)
  65. }
  66. })
  67. this.patientListZjArr = this.type0List
  68. console.log(this.patientListZjArr)
  69. }
  70. })
  71. },
  72. // 数据分类
  73. geshihua(data,type){
  74. // 1.拿到所有type和对应的下标
  75. var arr = [];
  76. data.map((e,i)=>{
  77. let obj = {
  78. [type]:e[type],
  79. index:i
  80. }
  81. arr.push(obj)
  82. })
  83. // 2.归类
  84. let newarr = []
  85. arr.map((e,i)=>{
  86. // 数据初始化
  87. if(!i){
  88. let obj = {
  89. [type]:e[type],
  90. data:[]
  91. }
  92. newarr.push(obj)
  93. }
  94. let index = e.index
  95. // 如果没有这个数据,新加一个类
  96. // debugger
  97. for(let j=0;j<newarr.length;j++){
  98. // 如果已经有这个type,把数据添加进去即可
  99. if(newarr[j][type] == e[type]){
  100. newarr[j].data.push(data[index])
  101. break;
  102. }
  103. // 如果没有这个type,就新加一个
  104. else{
  105. // 循环到最后一个,如果没有,则加入这个type数据
  106. if(j==newarr.length-1){
  107. let obj = {
  108. [type]:e[type],
  109. data:[data[i]]
  110. }
  111. newarr.push(obj)
  112. break;
  113. }
  114. }
  115. }
  116. })
  117. return newarr
  118. },
  119. patientListZjMet(item){
  120. uni.setStorageSync('patient',JSON.stringify(item));
  121. uni.navigateTo({
  122. url: '/pages/doctor/uploadExpert?id='+item.id,
  123. })
  124. },
  125. change(index) {
  126. this.current = index;
  127. if(this.current == 0){
  128. this.patientListZjArr = this.type0List
  129. }else{
  130. this.patientListZjArr = this.typeList
  131. }
  132. }
  133. }
  134. }
  135. </script>
  136. <style lang="scss">
  137. .calendarExpert{
  138. padding-top: 20rpx;
  139. padding-bottom: 120rpx;
  140. .con{
  141. width:680rpx;
  142. margin: 24rpx auto;
  143. padding:32rpx;
  144. background-color: #fff;
  145. border-radius: 24rpx;
  146. text-align: center;
  147. .no{
  148. width: 520rpx;
  149. height: 340rpx;
  150. }
  151. .text{
  152. font-size: 28rpx;
  153. color: rgba(0,0,0,0.35);
  154. padding-bottom: 80rpx;
  155. }
  156. }
  157. .list{
  158. width:680rpx;
  159. margin: 24rpx auto;
  160. box-sizing: border-box;
  161. padding: 0 20rpx;
  162. background-color: #fff;
  163. border-radius: 24rpx;
  164. margin-top: 24rpx;
  165. .li{
  166. font-size: 28rpx;
  167. color: rgba(0,0,0,0.6);
  168. padding: 24rpx 32rpx;
  169. .flex{
  170. margin-bottom: 14rpx;
  171. }
  172. .address{
  173. view{
  174. margin-right: 20rpx;
  175. }
  176. }
  177. .class{
  178. display: flex;
  179. flex-direction: row;
  180. align-items: center;
  181. .box{
  182. padding: 4rpx 16rpx;
  183. background: rgba(22,127,255,0.1);
  184. color: #167FFF;
  185. font-size: 24rpx;
  186. margin-right: 16rpx;
  187. border-radius: 24rpx;
  188. }
  189. }
  190. .btn{
  191. padding: 6rpx 24rpx;
  192. background: #F02E2F;
  193. color: #fff;
  194. font-size: 28rpx;
  195. border-radius: 24rpx;
  196. }
  197. .btn1{
  198. background-color: $color;
  199. }
  200. .one{
  201. color: rgba(0,0,0,0.8);
  202. .type{
  203. max-width: 280rpx;
  204. white-space:nowrap;
  205. overflow:hidden;
  206. text-overflow:ellipsis;
  207. font-size: 32rpx;
  208. color: rgba(0,0,0,0.8);
  209. margin-right: 24rpx;
  210. font-weight: bold;
  211. }
  212. .name{
  213. flex: 1;
  214. }
  215. .status{
  216. position: relative;
  217. }
  218. .status1{
  219. color: $color;
  220. }
  221. .status2{
  222. color: #F02E2F;
  223. }
  224. .status::after{
  225. content: '';
  226. position: absolute;
  227. left: -30rpx;
  228. top: 50%;
  229. transform: translateY(-50%);
  230. width: 10rpx;
  231. height: 10rpx;
  232. border-radius: 50%;
  233. background: #F0A22E;
  234. }
  235. .status1::after{
  236. content: '';
  237. position: absolute;
  238. left: -30rpx;
  239. top: 50%;
  240. transform: translateY(-50%);
  241. width: 10rpx;
  242. height: 10rpx;
  243. border-radius: 50%;
  244. background: $color;
  245. }
  246. .status2::after{
  247. content: '';
  248. position: absolute;
  249. left: -30rpx;
  250. top: 50%;
  251. transform: translateY(-50%);
  252. width: 10rpx;
  253. height: 10rpx;
  254. border-radius: 50%;
  255. background: #F02E2F;
  256. }
  257. }
  258. }
  259. }
  260. }
  261. </style>