other.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import cloneDeep from 'lodash/cloneDeep'
  2. const stateReset = {
  3. isShowSeiminModel: false, //是否显示切换科室弹窗
  4. qucikCreateOrderType: "", //快捷建单类型
  5. qucikCreateOrderTypeId: "", //快捷建单类型id
  6. deptDisplay: 1, //护士端科室显示选择(名称还是别名)1是名称,2是别名
  7. updateTipsForNurses: "", //护士端更新提示
  8. specimenButton: "", //标本按钮文字
  9. //护士科室切换提示自动关闭设置
  10. // (1) 当用户设置为正数时,用户必须查看此窗体指定秒数。
  11. // (2) 当用户设置为负数时,用户可点击知道了也可倒计时自动关闭。
  12. // (3) 如果用户填写0则为无自动关闭和强制查看时间。
  13. nurseDeptSwitchTip: 0,
  14. // 搜索到的科室-searchDept
  15. searchDeptResult: {},
  16. // 搜索到的科室集合-searchDept-选起点科室并且需要选终点科室
  17. searchDeptResultList: {},
  18. // 搜索科室需要传递的参数
  19. searchDeptParams: {},
  20. };
  21. const state = cloneDeep(stateReset);
  22. const getters = {};
  23. const mutations = {
  24. // 重置数据
  25. resetVxOther(state) {
  26. Object.assign(state, cloneDeep(stateReset));
  27. },
  28. //是否显示切换科室弹窗
  29. changeSeiminModel(state, args) {
  30. state.isShowSeiminModel = args;
  31. },
  32. //快捷建单类型
  33. changeQucikCreateOrderType(state, args) {
  34. state.qucikCreateOrderType = args.type;
  35. state.qucikCreateOrderTypeId = args.taskTypeId;
  36. },
  37. //护士端科室显示选择(名称还是别名)1是名称,2是别名
  38. changeDeptDisplay(state, args) {
  39. state.deptDisplay = args;
  40. },
  41. //护士端更新提示
  42. changeUpdateTipsForNurses(state, args) {
  43. state.updateTipsForNurses = args;
  44. },
  45. //标本按钮文字
  46. changeSpecimenButton(state, args) {
  47. state.specimenButton = args;
  48. },
  49. //护士科室切换提示自动关闭设置
  50. changeNurseDeptSwitchTip(state, args) {
  51. state.nurseDeptSwitchTip = args;
  52. },
  53. //搜索到的科室-searchDept
  54. changeSearchDeptResult(state, args) {
  55. state.searchDeptResult = args || {};
  56. },
  57. //搜索到的科室集合-searchDept-选起点科室并且需要选终点科室
  58. changeSearchDeptResultList(state, args) {
  59. state.searchDeptResultList = args || {};
  60. },
  61. //搜索科室需要传递的参数
  62. changeSearchDeptParams(state, args) {
  63. state.searchDeptParams = args;
  64. },
  65. };
  66. const actions = {
  67. };
  68. export default {
  69. namespaced: true,
  70. state,
  71. getters,
  72. mutations,
  73. actions,
  74. };