calendar.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <template>
  2. <view class="calendar">
  3. <u-toast ref="uToast" />
  4. <view class="updata u-flex u-row-between u-col-center">
  5. <view class="updata-item1 u-flex u-row-center" @click="towenjuan" v-if="wisWjdc == '允许' && wisWjdcUser == '1'">
  6. <text class="text">问卷调查</text>
  7. <!-- <image class="image1" src="../../static/img/right.png" mode=""></image> -->
  8. <image class="image2" src="../../static/img/wenjuan.png" mode=""></image>
  9. </view>
  10. <view class="updata-item2 u-flex u-row-center" @click="upload()" v-if="wisMhu == '允许'">
  11. <text class="text">上传病历</text>
  12. <!-- <image class="image1" src="../../static/img/right.png" mode=""></image> -->
  13. <image class="image2" src="../../static/img/bingli.png" mode=""></image>
  14. </view>
  15. </view>
  16. <view class="" style="padding: 10rpx 0;text-align: center;" v-if="wisWjdc == '允许' && wisWjdcUser == '1'">
  17. 您本月提交调研问卷{{count || 0}}次
  18. </view>
  19. <view class="con" v-if="dataList.length == 0 && wisMhu == '允许'">
  20. <image class="no" src="../../static/img/no.png" mode=""></image>
  21. <view class="text">列表内容为空</view>
  22. </view>
  23. <view class="list" v-if="dataList.length > 0">
  24. <view class="h6">历史上传</view>
  25. <view class="li" v-for="(item,index) in dataList" :key="index" @click="uploadID(item)">
  26. <view v-if="item.allocation==2">
  27. <view class="flex one">
  28. <view class="type">{{item.title}}</view>
  29. <view class="name">{{item.name}}</view>
  30. <view class="status status1">初审已通过</view>
  31. </view>
  32. <view class="flex address">
  33. <view>{{item.city}}</view>
  34. <view>{{item.hospital}}</view>
  35. </view>
  36. <view class="flex" style="justify-content: space-between;">
  37. <view class="class">
  38. <view class="box">{{item.uploadingName}}</view>
  39. <view class="box">{{item.caseName}}</view>
  40. </view>
  41. </view>
  42. </view>
  43. <view v-else>
  44. <view class="flex one">
  45. <view class="type">{{item.title}}</view>
  46. <view class="name">{{item.name}}</view>
  47. <view class="status" v-if="item.firstTrial==0">未审核</view>
  48. <view class="status status1" v-else-if="item.firstTrial==2">初审已通过</view>
  49. <view class="status status2" v-else>未通过</view>
  50. </view>
  51. <view class="flex address">
  52. <view>{{item.city}}</view>
  53. <view>{{item.hospital}}</view>
  54. </view>
  55. <view class="flex" style="justify-content: space-between;">
  56. <view class="class">
  57. <view class="box">{{item.uploadingName}}</view>
  58. <view class="box">{{item.caseName}}</view>
  59. </view>
  60. <view class="btn" v-if="item.firstTrial==1">重新编辑</view>
  61. <view class="btn btn1" v-if="isup(item)">二次上传</view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <tabBar :pagePath="'/pages/index/calendar'"></tabBar>
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. data() {
  72. return {
  73. dataList: [],
  74. wisMhu: '',
  75. wisWjdc: '',
  76. wisWjdcUser:'',
  77. count:0
  78. }
  79. },
  80. onLoad(option) {
  81. this.getsetting()
  82. },
  83. onShow() {
  84. this.getuser()
  85. this.$http.getTopicNum().then(res => {
  86. this.count = res.data.result
  87. })
  88. },
  89. methods: {
  90. getsetting(){
  91. this.$http.configInfo().then(res => {
  92. if (res.data.code == 200) {
  93. this.wisWjdcUser = res.data.result.wisWjdcUser
  94. }
  95. })
  96. },
  97. getuser() {
  98. this.$http.getUserInfo().then(res => {
  99. if (res.data.code == 200) {
  100. this.wisWjdc = res.data.result.wisWjdc
  101. this.wisMhu = res.data.result.wisMhu
  102. if (this.wisMhu == '允许') {
  103. this.patientQuideByPhongList()
  104. }
  105. }
  106. })
  107. },
  108. towenjuan() {
  109. uni.navigateTo({
  110. url: "./wenjuan"
  111. })
  112. },
  113. isup(item) {
  114. if (item.isSecondaryUpload == 2) {
  115. if (item.firstTrial == 2 && item.secondaryUpload == 1) {
  116. return true
  117. } else {
  118. return false
  119. }
  120. } else {
  121. return false
  122. }
  123. },
  124. patientQuideByPhongList() {
  125. this.$http.patientQuideByPhongList()
  126. .then(res => {
  127. // console.log(res)
  128. if (res.data.code == 200) {
  129. this.dataList = res.data.result
  130. }
  131. })
  132. },
  133. uploadID(item) {
  134. uni.setStorageSync('uploadData', JSON.stringify(item));
  135. uni.navigateTo({
  136. url: '/pages/doctor/upload?id=' + item.id,
  137. })
  138. },
  139. upload() {
  140. uni.navigateTo({
  141. url: '/pages/doctor/upload',
  142. })
  143. },
  144. }
  145. }
  146. </script>
  147. <style lang="scss">
  148. .calendar {
  149. padding-bottom: 120rpx;
  150. .updata {
  151. position: relative;
  152. width: 680rpx;
  153. margin: 24rpx auto 0;
  154. border-radius: 24rpx;
  155. // padding: 68rpx 0;
  156. text-align: center;
  157. // font-size: 32rpx;
  158. // color: $color;
  159. .updata-item2 {
  160. flex: 1;
  161. margin: 0 8rpx;
  162. height: 168rpx;
  163. background: linear-gradient(180deg, #22F5FB 0%, #9AFFF8 100%);
  164. border-radius: 24rpx;
  165. // padding: 0 12rpx 0 20rpx;
  166. .text {
  167. font-size: 36rpx;
  168. font-family: PingFangSC-Semibold, PingFang SC;
  169. font-weight: 600;
  170. color: #FFFFFF;
  171. margin-right: 26rpx;
  172. }
  173. .image1 {
  174. width: 40rpx;
  175. height: 40rpx;
  176. margin-right: 40rpx;
  177. }
  178. .image2 {
  179. width: 128rpx;
  180. height: 136rpx;
  181. }
  182. }
  183. .updata-item1 {
  184. flex: 1;
  185. margin: 0 8rpx;
  186. height: 168rpx;
  187. background: linear-gradient(180deg, #FFCE7D 0%, #FFDCB3 100%);
  188. border-radius: 24rpx;
  189. // padding: 0 12rpx 0 20rpx;
  190. .text {
  191. font-size: 36rpx;
  192. font-family: PingFangSC-Semibold, PingFang SC;
  193. font-weight: 600;
  194. color: #FFFFFF;
  195. margin-right: 32rpx;
  196. }
  197. .image1 {
  198. width: 40rpx;
  199. height: 40rpx;
  200. margin-right: 40rpx;
  201. }
  202. .image2 {
  203. width: 118rpx;
  204. height: 134rpx;
  205. }
  206. }
  207. }
  208. .con {
  209. width: 680rpx;
  210. margin: 24rpx auto;
  211. padding: 32rpx;
  212. background-color: #fff;
  213. border-radius: 24rpx;
  214. text-align: center;
  215. .no {
  216. width: 520rpx;
  217. height: 340rpx;
  218. }
  219. .text {
  220. font-size: 28rpx;
  221. color: rgba(0, 0, 0, 0.35);
  222. padding-bottom: 80rpx;
  223. }
  224. }
  225. .list {
  226. width: 680rpx;
  227. margin: 24rpx auto;
  228. box-sizing: border-box;
  229. // padding: 0 20rpx;
  230. background-color: #fff;
  231. border-radius: 24rpx;
  232. margin-top: 24rpx;
  233. .h6 {
  234. padding-top: 32rpx;
  235. font-size: 34rpx;
  236. color: $color;
  237. font-weight: 700;
  238. padding-left: 32rpx;
  239. }
  240. .li {
  241. font-size: 28rpx;
  242. color: rgba(0, 0, 0, 0.6);
  243. padding: 24rpx 32rpx;
  244. .flex {
  245. margin-bottom: 14rpx;
  246. }
  247. .address {
  248. view {
  249. margin-right: 20rpx;
  250. }
  251. }
  252. .class {
  253. display: flex;
  254. flex-direction: row;
  255. align-items: center;
  256. .box {
  257. padding: 4rpx 16rpx;
  258. background: rgba(22, 127, 255, 0.1);
  259. color: #167FFF;
  260. font-size: 24rpx;
  261. margin-right: 16rpx;
  262. border-radius: 24rpx;
  263. }
  264. }
  265. .btn {
  266. padding: 6rpx 24rpx;
  267. background: #F02E2F;
  268. color: #fff;
  269. font-size: 28rpx;
  270. border-radius: 24rpx;
  271. }
  272. .btn1 {
  273. background-color: $color;
  274. }
  275. .one {
  276. color: rgba(0, 0, 0, 0.8);
  277. .type {
  278. max-width: 280rpx;
  279. white-space: nowrap;
  280. overflow: hidden;
  281. text-overflow: ellipsis;
  282. font-size: 32rpx;
  283. color: rgba(0, 0, 0, 0.8);
  284. margin-right: 24rpx;
  285. font-weight: bold;
  286. }
  287. .name {
  288. flex: 1;
  289. }
  290. .status {
  291. position: relative;
  292. }
  293. .status1 {
  294. color: $color;
  295. }
  296. .status2 {
  297. color: #F02E2F;
  298. }
  299. .status::after {
  300. content: '';
  301. position: absolute;
  302. left: -30rpx;
  303. top: 50%;
  304. transform: translateY(-50%);
  305. width: 10rpx;
  306. height: 10rpx;
  307. border-radius: 50%;
  308. background: #F0A22E;
  309. }
  310. .status1::after {
  311. content: '';
  312. position: absolute;
  313. left: -30rpx;
  314. top: 50%;
  315. transform: translateY(-50%);
  316. width: 10rpx;
  317. height: 10rpx;
  318. border-radius: 50%;
  319. background: $color;
  320. }
  321. .status2::after {
  322. content: '';
  323. position: absolute;
  324. left: -30rpx;
  325. top: 50%;
  326. transform: translateY(-50%);
  327. width: 10rpx;
  328. height: 10rpx;
  329. border-radius: 50%;
  330. background: #F02E2F;
  331. }
  332. }
  333. }
  334. }
  335. }
  336. </style>