repositoryFilter.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. <template>
  2. <view class="container" @touchmove.stop.prevent v-if="pageData.pageRouter === 'default'">
  3. <view class="container_form">
  4. <view class="hospital">
  5. <text class="name">标题</text>
  6. <text class="value ellipsis">
  7. <input class="uni-input" v-model="searchData.title" placeholder="请输入标题" />
  8. </text>
  9. </view>
  10. <view class="category" v-if="props.viewType!='repairs'">
  11. <text class="name">故障现象</text>
  12. <text class="value">
  13. <uni-data-picker @change="categoryChange" v-model="searchData.category" :localdata="pageData.categoryList" popup-title="请选择故障信息" :map="{text:'category',value:'id'}">
  14. </uni-data-picker>
  15. </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. </view>
  26. <view class="mask" @touchmove.stop.prevent></view>
  27. <view class="line" @touchmove.stop.prevent></view>
  28. </template>
  29. <script setup>
  30. import { defineEmits, ref, reactive, defineProps } from 'vue'
  31. import { onLoad } from '@dcloudio/uni-app'
  32. import { useLoginUserStore } from '@/stores/loginUser'
  33. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  34. import { api_area, api_incidentcategory } from "@/http/api.js"
  35. import { transform } from '@/utils/index.js'
  36. const emit = defineEmits(['cancelEmit', 'confirmEmit']);
  37. const loginUserStore = useLoginUserStore();
  38. const repositorySearchStore = repositoryListSearchStore();
  39. const props = defineProps({
  40. viewType:null
  41. })
  42. // 页面数据
  43. const pageData = reactive({
  44. pageRouter: 'default',
  45. areaList: [],
  46. categoryList: [],
  47. });
  48. const searchData = reactive({
  49. title:'',
  50. hospital: {},
  51. selected: 'todoingAll',
  52. area: {id: 0, area: '全部'},
  53. category: {},
  54. acceptDate: [],
  55. categoryChangeData:[]
  56. })
  57. // 清空
  58. function clear(){
  59. searchData.category = {};
  60. searchData.acceptDate = [];
  61. searchData.title = '';
  62. searchData.categoryChangeData = [];
  63. repositorySearchStore.clearRepositoryListSearchData()
  64. }
  65. // 取消
  66. function cancel(){
  67. emit('cancelEmit')
  68. }
  69. // 确认
  70. function confirm(){
  71. repositorySearchStore.setRepositoryListSearchData(searchData)
  72. emit('confirmEmit', searchData);
  73. }
  74. function categoryChange(val){
  75. searchData.categoryChangeData = val.detail.value
  76. }
  77. // 获取故障现象列表
  78. function getCategoryList(){
  79. uni.showLoading({
  80. title: "加载中",
  81. mask: true,
  82. });
  83. let postData = {
  84. hasThird:true,
  85. category: {
  86. dutyIds: loginUserStore.loginUser.user.currentHospital.id,
  87. },
  88. }
  89. api_incidentcategory(postData).then(res => {
  90. uni.hideLoading();
  91. if(res.status == 200){
  92. let list = res.data || [];
  93. list = list.map(i=> ({...i, parentid: i.parent?.id}))
  94. pageData.categoryList = transform(list, 'id', 'parentid')
  95. }else{
  96. uni.showToast({
  97. icon: 'none',
  98. title: res.msg || '请求数据失败!'
  99. });
  100. }
  101. })
  102. }
  103. // 页面路由跳转
  104. function clickPageRouter(type){
  105. pageData.pageRouter = type;
  106. switch(type){
  107. case 'category':
  108. getCategoryList('one');
  109. break;
  110. }
  111. }
  112. onLoad((option) => {
  113. getCategoryList()
  114. let data = repositorySearchStore.repositorySearch.data
  115. searchData.category = data && data.category;
  116. searchData.title = data && data.title;
  117. searchData.categoryChangeData = data && data.categoryChangeData
  118. })
  119. </script>
  120. <style lang="scss" scoped>
  121. .mask{
  122. position: fixed;
  123. left: 0;
  124. top: 0;
  125. right: 0;
  126. bottom: 0;
  127. background-color: rgba(0, 0, 0, 0.4);
  128. z-index: 999;
  129. }
  130. .line{
  131. content: '';
  132. position: fixed;
  133. top: 0;
  134. left: 0;
  135. z-index: 9999;
  136. height: 8rpx;
  137. width: 100%;
  138. background-color: #EBEBEB;
  139. }
  140. .container{
  141. position: fixed;
  142. left: 125rpx;
  143. top: 0;
  144. right: 0;
  145. bottom: 0;
  146. z-index: 9999;
  147. background-color: #F7F7F7;
  148. display: flex;
  149. flex-direction: column;
  150. justify-content: space-between;
  151. .container_form{
  152. height: 100%;
  153. display: flex;
  154. flex-direction: column;
  155. flex: 1;
  156. min-height: 0;
  157. .item{
  158. padding: 32rpx;
  159. }
  160. }
  161. .hospital{
  162. display: flex;
  163. align-items: center;
  164. padding: 32rpx 24rpx 24rpx;
  165. background-color: #fff;
  166. .name{
  167. font-size: 28rpx;
  168. flex-shrink: 0;
  169. margin-right: 24rpx;
  170. }
  171. .value{
  172. width: 100%;
  173. font-size: 22rpx;
  174. .uni-input{
  175. font-size: 26rpx;
  176. }
  177. }
  178. }
  179. .areas{
  180. flex: 1;
  181. min-height: 0;
  182. margin-top: 16rpx;
  183. background-color: #fff;
  184. .areas_item{
  185. padding: 24rpx;
  186. border-bottom: 1rpx solid #DEDEDE;
  187. }
  188. }
  189. .categorys{
  190. flex: 1;
  191. min-height: 0;
  192. margin-top: 16rpx;
  193. background-color: #fff;
  194. .categorys_item{
  195. padding: 24rpx;
  196. border-bottom: 1rpx solid #DEDEDE;
  197. }
  198. }
  199. .tabs{
  200. margin-top: 16rpx;
  201. background-color: #FBFBFB;
  202. display: flex;
  203. flex-wrap: wrap;
  204. justify-content: space-between;
  205. gap: 16rpx 0;
  206. padding: 24rpx 16rpx;
  207. .tab{
  208. width: 180rpx;
  209. height: 60rpx;
  210. display: flex;
  211. justify-content: center;
  212. align-items: center;
  213. background-color: #F7F7F7;
  214. font-size: 28rpx;
  215. position: relative;
  216. .newicon-xuanzejiaobiao{
  217. opacity: 0;
  218. position: absolute;
  219. right: 0;
  220. bottom: 0;
  221. font-size: 38rpx;
  222. color: #53B9BB;
  223. }
  224. &.active{
  225. background-color: rgba(149, 220, 231, 0.30);
  226. .newicon-xuanzejiaobiao{
  227. opacity: 1;
  228. }
  229. }
  230. }
  231. }
  232. .area,
  233. .category,
  234. .acceptDate{
  235. display: flex;
  236. justify-content: space-between;
  237. align-items: center;
  238. padding: 24rpx;
  239. background-color: #fff;
  240. margin-top: 24rpx;
  241. .name{
  242. font-size: 28rpx;
  243. flex-shrink: 0;
  244. margin-right: 24rpx;
  245. }
  246. .value{
  247. flex:1;
  248. }
  249. }
  250. .container_foot{
  251. .clear{
  252. padding: 24rpx;
  253. font-size: 28rpx;
  254. background-color: #fff;
  255. margin: 0 16rpx;
  256. display: flex;
  257. align-items: center;
  258. justify-content: center;
  259. }
  260. .foot_btns{
  261. margin-top: 24rpx;
  262. display: flex;
  263. border-top: 1rpx solid #BFBFBF;
  264. .cancel{
  265. flex: 1;
  266. background-color: #fff;
  267. font-size: 32rpx;
  268. padding: 24rpx;
  269. display: flex;
  270. justify-content: center;
  271. }
  272. .confirm{
  273. flex: 1;
  274. font-size: 32rpx;
  275. padding: 24rpx;
  276. background-color: $uni-primary;
  277. display: flex;
  278. justify-content: center;
  279. color: #fff;
  280. }
  281. }
  282. }
  283. }
  284. </style>