searchMuti.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. <template>
  2. <view class="content">
  3. <view class="search-keyword">
  4. <scroll-view class="keyword-list-box" scroll-y>
  5. <checkbox-group @change="checkboxChange">
  6. <label v-for="(row, index) in dataList" :key="row.id">
  7. <view class="keyword-entry" hover-class="keyword-entry-tap">
  8. <view class="keyword-text">
  9. <checkbox color="#42b983" :value="row.id" :checked="row.checked" />
  10. <rich-text :nodes="row.buildingName"></rich-text>
  11. </view>
  12. <view class="keyword-img">
  13. <image src="/static/HM-search/back.png"></image>
  14. </view>
  15. </view>
  16. </label>
  17. </checkbox-group>
  18. </scroll-view>
  19. </view>
  20. <view class="toolbar" @click="determine()" hover-class="seimin-btn-hover">
  21. <text class="toolbar-sao">确定</text>
  22. </view>
  23. <!-- 弹窗 -->
  24. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content" @know="know" :operate="models.operate"></showModel>
  25. </view>
  26. </template>
  27. <script>
  28. import {
  29. post,
  30. webHandle
  31. } from "../../http/http.js";
  32. export default {
  33. data() {
  34. return {
  35. type: "", //进入该页面的类型
  36. configName: "", //快速组合名称
  37. id: "", //快速组合id
  38. changedept: 0, //是否从列表过来的切换负责科室
  39. hosId: "",
  40. dataList: [],
  41. //系统设置的科室类型
  42. sysDeptType: 0,
  43. // 弹窗model
  44. models: {
  45. disjunctor: false,
  46. },
  47. };
  48. },
  49. onLoad(options) {
  50. this.hosId = uni.getStorageSync("userData").user.currentHospital.id;
  51. console.log(options, 'options');
  52. this.type = options.type;
  53. if (this.type == "setBuilding") {
  54. this.configName = options.configName;
  55. this.id = options.id;
  56. this.changedept = options.changedept;
  57. this.getSysDeptType();
  58. } else {
  59. this.getSysDeptType();
  60. }
  61. // this.init();
  62. // #ifdef APP-PLUS
  63. webHandle("no", "app");
  64. // #endif
  65. // #ifdef H5
  66. webHandle("no", "wx");
  67. // #endif
  68. },
  69. methods: {
  70. //知道了
  71. know() {
  72. this.models.disjunctor = false;
  73. },
  74. // 确认
  75. determine() {
  76. console.log(this.dataList);
  77. const dataList = this.dataList.filter(v => v.checked);
  78. if (dataList.length === 0) {
  79. this.models = {
  80. disjunctor: true,
  81. title: "提示",
  82. content: "请选择至少一个楼栋",
  83. icon: "warn",
  84. operate: {
  85. know: "知道了",
  86. },
  87. };
  88. } else {
  89. let postData = {
  90. "idx": 0,
  91. "sum": 1000,
  92. department: {
  93. hospital: {id: this.hosId},
  94. type: {id: this.sysDeptType},
  95. buildIds: dataList.map(v => v.id).toString()
  96. }
  97. }
  98. uni.showLoading({
  99. title: "加载中",
  100. });
  101. post("/data/fetchDataList/department", postData).then((res) => {
  102. uni.hideLoading();
  103. if (res.status == 200) {
  104. let obj = uni.getStorageSync("setDepts");
  105. console.log(res.list,obj)
  106. if (obj) {
  107. let list = [...res.list, ...obj];
  108. let newArr = [];
  109. let obj1 = {};
  110. for (let i = 0; i < list.length; i++) {
  111. if (!obj1[list[i].id]) {
  112. newArr.push(list[i]);
  113. obj1[list[i].id] = true;
  114. }
  115. }
  116. console.log(newArr);
  117. uni.setStorageSync("setDepts", newArr);
  118. } else {
  119. uni.setStorageSync("setDepts", res.list);
  120. }
  121. uni.navigateTo({
  122. url: `../setDept/setDept?configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,//不知道
  123. });
  124. } else {
  125. uni.showToast({
  126. icon: "none",
  127. title: "请求失败!",
  128. });
  129. }
  130. })
  131. }
  132. },
  133. // 选择楼栋
  134. checkboxChange: function(e) {
  135. var dataList = this.dataList,
  136. values = e.detail.value;
  137. for (var i = 0, lenI = dataList.length; i < lenI; ++i) {
  138. const item = dataList[i]
  139. if (values.includes(item.id)) {
  140. this.$set(item, 'checked', true)
  141. } else {
  142. this.$set(item, 'checked', false)
  143. }
  144. }
  145. },
  146. //获取系统设置的科室类型
  147. getSysDeptType() {
  148. uni.showLoading({
  149. title: "加载中",
  150. });
  151. let postData = {
  152. "idx": 0,
  153. "sum": 1,
  154. systemConfiguration: {
  155. keyconfig: "busiViewDeptId"
  156. }
  157. }
  158. post("/simple/data/fetchDataList/systemConfiguration", postData).then((res) => {
  159. this.getBuildings();
  160. if (res.status == 200) {
  161. this.sysDeptType = res.list[0].valueconfig
  162. } else {
  163. uni.showToast({
  164. icon: "none",
  165. title: "请求失败!",
  166. });
  167. }
  168. })
  169. },
  170. //获取楼栋列表
  171. getBuildings() {
  172. let postData = {
  173. "idx": 0,
  174. "sum": 100,
  175. building: {
  176. hosId: this.hosId
  177. }
  178. }
  179. post("/simple/data/fetchDataList/building", postData).then((res) => {
  180. uni.hideLoading();
  181. if (res.status == 200) {
  182. this.dataList = res.list || [];
  183. } else {
  184. uni.showToast({
  185. icon: "none",
  186. title: "请求失败!",
  187. });
  188. }
  189. })
  190. },
  191. },
  192. };
  193. </script>
  194. <style scoped lang="less">
  195. view {
  196. display: block;
  197. }
  198. // 底部
  199. .toolbar {
  200. position: fixed;
  201. left: 0;
  202. right: 0;
  203. bottom: 0;
  204. z-index: 9999;
  205. height: 88rpx;
  206. display: flex;
  207. justify-content: center;
  208. align-items: center;
  209. box-sizing: border-box;
  210. border-radius: 4rpx;
  211. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.24);
  212. background-color: #e5e9ed;
  213. .toolbar-sao {
  214. font-size: 36rpx;
  215. color: #49b856;
  216. }
  217. }
  218. .search-box {
  219. width: 95%;
  220. background-color: rgb(242, 242, 242);
  221. padding: 15upx 2.5%;
  222. display: flex;
  223. justify-content: space-between;
  224. position: sticky;
  225. top: 0;
  226. }
  227. .search-box .mSearch-input-box {
  228. width: 100%;
  229. }
  230. .search-box .input-box {
  231. width: 85%;
  232. flex-shrink: 1;
  233. display: flex;
  234. justify-content: center;
  235. align-items: center;
  236. }
  237. .search-box .search-btn {
  238. width: 15%;
  239. margin: 0 0 0 2%;
  240. display: flex;
  241. justify-content: center;
  242. align-items: center;
  243. flex-shrink: 0;
  244. font-size: 28upx;
  245. color: #fff;
  246. background: linear-gradient(to right, #ff9801, #ff570a);
  247. border-radius: 60upx;
  248. }
  249. .search-box .input-box>input {
  250. width: 100%;
  251. height: 60upx;
  252. font-size: 32upx;
  253. border: 0;
  254. border-radius: 60upx;
  255. -webkit-appearance: none;
  256. -moz-appearance: none;
  257. appearance: none;
  258. padding: 0 3%;
  259. margin: 0;
  260. background-color: #ffffff;
  261. }
  262. .placeholder-class {
  263. color: #9e9e9e;
  264. }
  265. .search-keyword {
  266. width: 100%;
  267. background-color: rgb(242, 242, 242);
  268. }
  269. .keyword-list-box {
  270. height: calc(100vh - 110upx);
  271. padding-top: 10upx;
  272. border-radius: 20upx 20upx 0 0;
  273. background-color: #fff;
  274. }
  275. .keyword-entry-tap {
  276. background-color: #eee;
  277. }
  278. .keyword-entry {
  279. width: 94%;
  280. height: 80upx;
  281. margin: 0 3%;
  282. font-size: 30upx;
  283. color: #333;
  284. display: flex;
  285. justify-content: space-between;
  286. align-items: center;
  287. border-bottom: solid 1upx #e7e7e7;
  288. }
  289. .keyword-entry image {
  290. width: 60upx;
  291. height: 60upx;
  292. }
  293. .keyword-entry .keyword-text,
  294. .keyword-entry .keyword-img {
  295. height: 80upx;
  296. display: flex;
  297. align-items: center;
  298. }
  299. .keyword-entry .keyword-text {
  300. width: 90%;
  301. }
  302. .keyword-entry .keyword-img {
  303. width: 10%;
  304. justify-content: center;
  305. }
  306. .keyword-box {
  307. height: calc(100vh - 110upx);
  308. border-radius: 20upx 20upx 0 0;
  309. background-color: #fff;
  310. }
  311. .keyword-box .keyword-block {
  312. padding: 10upx 0;
  313. }
  314. .keyword-box .keyword-block .keyword-list-header {
  315. width: 94%;
  316. padding: 10upx 3%;
  317. font-size: 27upx;
  318. color: #333;
  319. display: flex;
  320. justify-content: space-between;
  321. }
  322. .keyword-box .keyword-block .keyword-list-header image {
  323. width: 40upx;
  324. height: 40upx;
  325. }
  326. .keyword-box .keyword-block .keyword {
  327. width: 94%;
  328. padding: 3px 3%;
  329. display: flex;
  330. flex-flow: wrap;
  331. justify-content: flex-start;
  332. }
  333. .keyword-box .keyword-block .hide-hot-tis {
  334. display: flex;
  335. justify-content: center;
  336. font-size: 28upx;
  337. color: #6b6b6b;
  338. }
  339. .keyword-box .keyword-block .keyword>view {
  340. display: flex;
  341. justify-content: center;
  342. align-items: center;
  343. border-radius: 60upx;
  344. padding: 0 20upx;
  345. margin: 10upx 20upx 10upx 0;
  346. height: 60upx;
  347. font-size: 28upx;
  348. background-color: rgb(242, 242, 242);
  349. color: #6b6b6b;
  350. }
  351. </style>