血透系统pad前端

MissionTable.vue 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <template>
  2. <div>
  3. <div class="choice">
  4. <ul>
  5. <li>
  6. 日期查询:
  7. <div @click="openStartPicker" class>
  8. {{parseTime(startTime.getTime()/1000, "{y}-{m}-{d}")}}
  9. <span class="iconfont">&#xe74a;</span>
  10. </div>
  11. <span class="line"></span>
  12. <div @click="openEndPicker" class>
  13. {{parseTime(endTime.getTime()/1000, "{y}-{m}-{d}")}}
  14. <span class="iconfont">&#xe74a;</span>
  15. </div>
  16. </li>
  17. </ul>
  18. </div>
  19. <div class="blueBorder"></div>
  20. <van-list width="100%" v-model="loading" :finished="finished" @load="onLoad">
  21. <div class="tableTit">
  22. <ul>
  23. <li style="width:10%;">序号</li>
  24. <li style="width:25%;">日期</li>
  25. <li style="width:65%;">宣教内容</li>
  26. </ul>
  27. </div>
  28. <div class="tableDate">
  29. <ul v-for="(item,index) in tableDate" :key="index" :value="item.value">
  30. <li style="width:10%;">{{index+1}}</li>
  31. <li style="width:25%;">{{parseTime(item.assessment_date, "{y}-{m}-{d}")}}</li>
  32. <li style="width:65%;">{{item.mission}}</li>
  33. </ul>
  34. </div>
  35. <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
  36. <div class="NoData" v-show="tableDate.length == 0">
  37. <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
  38. </div>
  39. </van-list>
  40. <mt-datetime-picker
  41. ref="start_date_picker"
  42. type="date"
  43. @confirm="handleStartDateConfirm"
  44. :endDate="new Date()"
  45. v-model="startTime"
  46. ></mt-datetime-picker>
  47. <mt-datetime-picker
  48. ref="end_date_picker"
  49. type="date"
  50. @confirm="handleEndDateConfirm"
  51. :endDate="new Date()"
  52. v-model="endTime"
  53. ></mt-datetime-picker>
  54. </div>
  55. </template>
  56. <script>
  57. import { parseTime } from "@/utils";
  58. import { getAllEducationList } from "@/api/patient";
  59. import { Popover } from "vux";
  60. export default {
  61. name: "LongTable",
  62. created() {
  63. this.tableDate = [];
  64. this.queryParams.start_time = this.parseTime(
  65. new Date().getTime() / 1000,
  66. "{y}-{m}-{d}"
  67. );
  68. this.queryParams.end_time = this.parseTime(
  69. new Date().getTime() / 1000,
  70. "{y}-{m}-{d}"
  71. );
  72. this.queryParams.patient_id = this.$route.query.patient_id;
  73. this.queryParams.page = this.queryParams.page + 1;
  74. this.queryParams.limit = 15;
  75. this.tableDate = [];
  76. getAllEducationList(this.queryParams).then(response => {
  77. if (response.data.state == 0) {
  78. return false;
  79. } else {
  80. if (response.data.data.total == 0) {
  81. } else {
  82. for (let i = 0; i < response.data.data.edus.length; i++) {
  83. this.tableDate.push(response.data.data.edus[i]);
  84. }
  85. }
  86. }
  87. });
  88. },
  89. data() {
  90. return {
  91. tableDate: [],
  92. loading: false,
  93. finished: false,
  94. startTime: new Date(),
  95. endTime: new Date(),
  96. queryParams: {
  97. mode_id: "",
  98. start_time: "",
  99. end_time: "",
  100. page: 0,
  101. patient_id: 0,
  102. limit: 15
  103. }
  104. };
  105. },
  106. methods: {
  107. parseTime(time, layout) {
  108. return parseTime(time, layout);
  109. },
  110. onLoad() {
  111. this.queryParams.start_time = this.parseTime(
  112. this.startTime.getTime() / 1000,
  113. "{y}-{m}-{d}"
  114. );
  115. this.queryParams.end_time = this.parseTime(
  116. this.endTime.getTime() / 1000,
  117. "{y}-{m}-{d}"
  118. );
  119. this.queryParams.patient_id = this.$route.query.patient_id;
  120. this.queryParams.page = this.queryParams.page + 1;
  121. this.queryParams.limit = 15;
  122. getAllEducationList(params).then(response => {
  123. if (response.data.state == 0) {
  124. this.finished = true;
  125. this.loading = false;
  126. return false;
  127. } else {
  128. if (response.data.data.edus.length == 0) {
  129. this.finished = true;
  130. this.loading = false;
  131. } else {
  132. for (let i = 0; i < response.data.data.edus.length; i++) {
  133. this.tableDate.push(response.data.data.edus[i]);
  134. }
  135. this.loading = false;
  136. }
  137. }
  138. });
  139. },
  140. handleStartDateConfirm: function(val) {
  141. this.queryParams.start_time = this.parseTime(
  142. this.startTime / 1000,
  143. "{y}-{m}-{d}"
  144. );
  145. this.queryParams.end_time = this.parseTime(
  146. this.endTime / 1000,
  147. "{y}-{m}-{d}"
  148. );
  149. this.queryParams.page = 1;
  150. this.queryParams.limit = 15;
  151. this.getRecordList(this.queryParams);
  152. },
  153. handleEndDateConfirm: function(val) {
  154. this.queryParams.start_time = this.parseTime(
  155. this.startTime / 1000,
  156. "{y}-{m}-{d}"
  157. );
  158. this.queryParams.end_time = this.parseTime(
  159. this.endTime / 1000,
  160. "{y}-{m}-{d}"
  161. );
  162. this.queryParams.page = 1;
  163. this.queryParams.limit = 15;
  164. this.getRecordList(this.queryParams);
  165. },
  166. openStartPicker: function() {
  167. this.$refs.start_date_picker.open();
  168. },
  169. openEndPicker: function() {
  170. this.$refs.end_date_picker.open();
  171. },
  172. getRecordList: function(val) {
  173. this.tableDate = [];
  174. getAllEducationList(val).then(response => {
  175. if (response.data.state == 0) {
  176. return false;
  177. } else {
  178. if (response.data.data.edus.length == 0) {
  179. } else {
  180. for (let i = 0; i < response.data.data.edus.length; i++) {
  181. this.tableDate.push(response.data.data.edus[i]);
  182. }
  183. }
  184. }
  185. });
  186. }
  187. },
  188. components: {
  189. Popover
  190. }
  191. };
  192. </script>
  193. <style style="stylesheet/scss" lang="scss" scoped>
  194. .choice {
  195. border-bottom: 1px #e5e5e5 solid;
  196. ul {
  197. @include display-flex;
  198. @include align-items-center;
  199. @include text-align;
  200. @include justify-content-between;
  201. width: 80%;
  202. margin: 0 auto;
  203. font-size: 0.45rem;
  204. color: $pgh-color;
  205. li {
  206. @include display-flex;
  207. @include align-items-center;
  208. @include text-align;
  209. @include justify-content-between;
  210. padding: 0.3rem 0;
  211. margin: 0 auto;
  212. .iconfont {
  213. margin: 0 0.1rem;
  214. // @media only screen and (max-width: 812px) {
  215. // font-size: 12px !important;
  216. // }
  217. }
  218. .line {
  219. background: #a8b3ba;
  220. width: 0.2rem;
  221. height: 1px;
  222. margin: 0 0.2rem;
  223. display: inline-block;
  224. }
  225. }
  226. }
  227. }
  228. .tableTit {
  229. background: $main-color;
  230. color: $text-color;
  231. @include box-sizing;
  232. ul {
  233. @include display-flex;
  234. @include align-items-center;
  235. @include text-align;
  236. @include justify-content-center;
  237. li {
  238. border-right: 2px #fff solid;
  239. font-size: 0.45rem;
  240. height: 1.2rem;
  241. line-height: 1.2rem;
  242. }
  243. &:last-child {
  244. border-right: none;
  245. }
  246. }
  247. }
  248. .tableDate {
  249. background: #ecf5ff;
  250. color: $pgh-color;
  251. @include box-sizing;
  252. ul {
  253. @include display-flex;
  254. @include align-items-center;
  255. @include text-align;
  256. @include justify-content-center;
  257. li {
  258. font-size: 0.45rem;
  259. padding: 0.16rem 0;
  260. line-height: 0.5rem;
  261. border-right: 2px #fff solid;
  262. span {
  263. @include flex;
  264. border-right: 2px #fff solid;
  265. border-bottom: 2px #fff solid;
  266. background: #ecf5ff;
  267. display: inline-block;
  268. height: 1.2rem;
  269. line-height: 1.2rem;
  270. .iconfont {
  271. color: $main-color;
  272. font-size: 0.3rem;
  273. margin-right: 0.1rem;
  274. }
  275. }
  276. }
  277. &:last-child {
  278. border-right: none;
  279. }
  280. }
  281. }
  282. </style>