InspectionListFilter.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <template>
  2. <view class="container" @touchmove.stop.prevent v-if="pageData.pageRouter === 'default'">
  3. <view class="container_form">
  4. <view class="category" @click="clickPageRouter('inspectionForm')">
  5. <text class="name">巡检单</text>
  6. <text class="value ellipsis">{{searchData.inspectionForm ? searchData.inspectionForm.name : ''}}</text>
  7. </view>
  8. <view class="area" @click="clickPageRouter('area')">
  9. <text class="name">楼栋</text>
  10. <text class="value ellipsis">{{searchData.area ? searchData.area.buildingName : ''}}</text>
  11. </view>
  12. <view class="acceptDate" @click="changeIsShowDate()">
  13. <text class="name">登记时间</text>
  14. <text class="value ellipsis" v-if="searchData.acceptDate.length">{{searchData.acceptDate[0] || ''}}至{{searchData.acceptDate[1] || ''}}</text>
  15. <text class="value ellipsis" v-else>全部</text>
  16. </view>
  17. </view>
  18. <view class="container_foot">
  19. <view class="clear" @click="clear">清除选项</view>
  20. <view class="foot_btns">
  21. <view class="cancel" @click="cancel">取消</view>
  22. <view class="confirm" @click="confirm">确认</view>
  23. </view>
  24. </view>
  25. <PyhRdtpicker
  26. :show="isShowDate"
  27. :start="start"
  28. :end="end"
  29. @showchange="showDatechange"
  30. :value="searchData.acceptDate"
  31. @change="bindDateChange"
  32. :themeColor="primaryColor"
  33. ></PyhRdtpicker>
  34. </view>
  35. <view class="container" @touchmove.stop.prevent v-else-if="pageData.pageRouter === 'area'">
  36. <view class="container_form">
  37. <view class="hospital">
  38. <text class="name">楼栋</text>
  39. </view>
  40. <scroll-view scroll-y class="areas">
  41. <view class="areas_item" v-for="area in pageData.areaList" :key="area.id" @click="clickArea(area)">{{area.buildingName}}</view>
  42. </scroll-view>
  43. </view>
  44. <view class="container_foot">
  45. <view class="foot_btns">
  46. <view class="cancel" @click="clickPageRouter('default')">取消</view>
  47. </view>
  48. </view>
  49. </view>
  50. <view class="container" @touchmove.stop.prevent v-else-if="pageData.pageRouter === 'inspectionForm'">
  51. <view class="container_form">
  52. <view class="hospital">
  53. <text class="name">巡检单</text>
  54. </view>
  55. <scroll-view scroll-y class="categorys">
  56. <view class="categorys_item" v-for="item in pageData.inspectionFormList" :key="item.id" @click="clickInspectionForm(item)">{{item.name}}</view>
  57. </scroll-view>
  58. </view>
  59. <view class="container_foot">
  60. <view class="foot_btns">
  61. <view class="cancel" @click="clickPageRouter('default')">取消</view>
  62. </view>
  63. </view>
  64. </view>
  65. <view class="mask" @touchmove.stop.prevent></view>
  66. <view class="line" @touchmove.stop.prevent></view>
  67. </template>
  68. <script setup>
  69. import PyhRdtpicker from '@/components/PyhRdtpicker/PyhRdtpicker.vue';
  70. import { defineEmits, ref, reactive, defineProps } from 'vue'
  71. import { startOfYear, endOfYear, format, add } from 'date-fns'
  72. import { onLoad } from '@dcloudio/uni-app'
  73. import { useLoginUserStore } from '@/stores/loginUser'
  74. import { api_building, getFetchDataList, api_inspectionForm } from "@/http/api.js"
  75. import { defaultColor } from '@/static/js/theme.js'
  76. const emit = defineEmits(['cancelEmit', 'confirmEmit']);
  77. const { evt } = defineProps({
  78. evt: {
  79. type: Object,
  80. required: true,
  81. },
  82. });
  83. const loginUserStore = useLoginUserStore();
  84. // 主题颜色
  85. const primaryColor = ref(defaultColor)
  86. // 登记时间
  87. const isShowDate = ref(false)
  88. const start = ref(format(startOfYear(add(new Date(), { years: -5})), 'yyyy-MM-dd'));
  89. const end = ref(format(endOfYear(add(new Date(), { years: 0})), 'yyyy-MM-dd'));
  90. // 页面数据
  91. const pageData = reactive({
  92. pageRouter: 'default',
  93. areaList: [],
  94. inspectionFormList: [],
  95. });
  96. const searchData = reactive({
  97. area: {id: 0, buildingName: '全部'},
  98. inspectionForm: {id: 0, name: '全部'},
  99. acceptDate: [],
  100. })
  101. // 显示登记时间
  102. function showDatechange(){
  103. isShowDate.value = !isShowDate.value;
  104. }
  105. // 登记时间确定
  106. function bindDateChange(e){
  107. console.log(e);
  108. searchData.acceptDate = e;
  109. }
  110. // 点击区域
  111. function clickArea(area){
  112. pageData.pageRouter = 'default';
  113. searchData.area = area;
  114. }
  115. // 点击故障现象
  116. function clickInspectionForm(inspectionForm){
  117. pageData.pageRouter = 'default';
  118. searchData.inspectionForm = inspectionForm;
  119. }
  120. // 清空
  121. function clear(){
  122. searchData.area = {id: 0, buildingName: '全部'};
  123. searchData.inspectionForm = {id: 0, name: '全部'};
  124. searchData.acceptDate = [];
  125. console.log(searchData.acceptDate)
  126. }
  127. // 取消
  128. function cancel(){
  129. emit('cancelEmit')
  130. }
  131. // 确认
  132. function confirm(){
  133. emit('confirmEmit', searchData);
  134. }
  135. // 获取楼栋列表
  136. function getAreaList(){
  137. uni.showLoading({
  138. title: "加载中",
  139. mask: true,
  140. });
  141. let postData = {
  142. idx: 0,
  143. sum: 9999,
  144. building:{
  145. hosId: null,
  146. }
  147. };
  148. if(loginUserStore.loginUser.user.currentHospital.parent){
  149. postData.building.hosId = loginUserStore.loginUser.user.currentHospital.parent.id
  150. }else{
  151. postData.building.hosId = loginUserStore.loginUser.user.currentHospital.id
  152. }
  153. getFetchDataList("simple/data", "building", postData)
  154. .then((res) => {
  155. uni.hideLoading();
  156. let list = res.list || [];
  157. pageData.areaList = [{ id: 0, buildingName: '全部' }, ...list];
  158. console.log(444,pageData.areaList )
  159. });
  160. }
  161. // 获取巡检单
  162. function getInspectionFormList(){
  163. uni.showLoading({
  164. title: "加载中",
  165. mask: true,
  166. });
  167. let postData = {
  168. idx: 0,
  169. sum: 9999,
  170. account: loginUserStore.loginUser.user.account,
  171. inspectionForm: {
  172. hosId:loginUserStore.loginUser.user.currentHospital.id,
  173. status: {value: "1"},
  174. },
  175. }
  176. api_inspectionForm(postData).then(res => {
  177. uni.hideLoading();
  178. if(res.status == 200){
  179. let list = res.list || [];
  180. pageData.inspectionFormList = [{ id:0, name: '全部' }, ...list];
  181. }else{
  182. uni.showToast({
  183. icon: 'none',
  184. title: res.msg || '请求数据失败!'
  185. });
  186. }
  187. })
  188. }
  189. // 页面路由跳转
  190. function clickPageRouter(type){
  191. pageData.pageRouter = type;
  192. switch(type){
  193. case 'area':
  194. getAreaList();
  195. break;
  196. case 'inspectionForm':
  197. getInspectionFormList();
  198. break;
  199. }
  200. }
  201. // 显示登记时间
  202. function changeIsShowDate(type){
  203. isShowDate.value = true;
  204. }
  205. onLoad((option) => {
  206. searchData.area = evt.area;
  207. searchData.inspectionForm = evt.inspectionForm;
  208. searchData.acceptDate = evt.acceptDate;
  209. })
  210. </script>
  211. <style lang="scss" scoped>
  212. .mask{
  213. position: fixed;
  214. left: 0;
  215. top: 0;
  216. right: 0;
  217. bottom: 0;
  218. background-color: rgba(0, 0, 0, 0.4);
  219. z-index: 999;
  220. }
  221. .line{
  222. content: '';
  223. position: fixed;
  224. top: 0;
  225. left: 0;
  226. z-index: 9999;
  227. height: 8rpx;
  228. width: 100%;
  229. background-color: #EBEBEB;
  230. }
  231. .container{
  232. position: fixed;
  233. left: 125rpx;
  234. top: 0;
  235. right: 0;
  236. bottom: 0;
  237. z-index: 9999;
  238. background-color: #F7F7F7;
  239. display: flex;
  240. flex-direction: column;
  241. justify-content: space-between;
  242. .container_form{
  243. height: 100%;
  244. display: flex;
  245. flex-direction: column;
  246. flex: 1;
  247. min-height: 0;
  248. }
  249. .hospital{
  250. display: flex;
  251. justify-content: space-between;
  252. align-items: center;
  253. padding: 32rpx 24rpx 24rpx;
  254. background-color: #fff;
  255. .name{
  256. font-size: 30rpx;
  257. flex-shrink: 0;
  258. margin-right: 24rpx;
  259. }
  260. .value{
  261. font-size: 26rpx;
  262. color: #5DAAB6;
  263. }
  264. }
  265. .areas{
  266. flex: 1;
  267. min-height: 0;
  268. margin-top: 16rpx;
  269. background-color: #fff;
  270. .areas_item{
  271. padding: 24rpx;
  272. border-bottom: 1rpx solid #DEDEDE;
  273. }
  274. }
  275. .categorys{
  276. flex: 1;
  277. min-height: 0;
  278. margin-top: 16rpx;
  279. background-color: #fff;
  280. .categorys_item{
  281. padding: 24rpx;
  282. border-bottom: 1rpx solid #DEDEDE;
  283. }
  284. }
  285. .tabs{
  286. margin-top: 16rpx;
  287. background-color: #FBFBFB;
  288. display: flex;
  289. flex-wrap: wrap;
  290. justify-content: space-between;
  291. gap: 16rpx 0;
  292. padding: 24rpx 16rpx;
  293. .tab{
  294. width: 180rpx;
  295. height: 60rpx;
  296. display: flex;
  297. justify-content: center;
  298. align-items: center;
  299. background-color: #F7F7F7;
  300. font-size: 28rpx;
  301. position: relative;
  302. .newicon-xuanzejiaobiao{
  303. opacity: 0;
  304. position: absolute;
  305. right: 0;
  306. bottom: 0;
  307. font-size: 38rpx;
  308. color: #53B9BB;
  309. }
  310. &.active{
  311. background-color: rgba(149, 220, 231, 0.30);
  312. .newicon-xuanzejiaobiao{
  313. opacity: 1;
  314. }
  315. }
  316. }
  317. }
  318. .area,
  319. .category,
  320. .acceptDate{
  321. display: flex;
  322. justify-content: space-between;
  323. align-items: center;
  324. padding: 24rpx;
  325. background-color: #fff;
  326. margin-top: 24rpx;
  327. .name{
  328. font-size: 28rpx;
  329. flex-shrink: 0;
  330. margin-right: 24rpx;
  331. }
  332. }
  333. .container_foot{
  334. .clear{
  335. padding: 24rpx;
  336. font-size: 28rpx;
  337. background-color: #fff;
  338. margin: 0 16rpx;
  339. display: flex;
  340. align-items: center;
  341. justify-content: center;
  342. }
  343. .foot_btns{
  344. margin-top: 24rpx;
  345. display: flex;
  346. border-top: 1rpx solid #BFBFBF;
  347. .cancel{
  348. flex: 1;
  349. background-color: #fff;
  350. font-size: 32rpx;
  351. padding: 24rpx;
  352. display: flex;
  353. justify-content: center;
  354. }
  355. .confirm{
  356. flex: 1;
  357. font-size: 32rpx;
  358. padding: 24rpx;
  359. background-color: $uni-primary;
  360. display: flex;
  361. justify-content: center;
  362. color: #fff;
  363. }
  364. }
  365. }
  366. }
  367. </style>