searchMuti.vue 10 KB

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