Layout.vue 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. <template>
  2. <div class="app-wrapper" :class="classObj">
  3. <div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside"></div>
  4. <div class="mainBox">
  5. <div class="navLeft">
  6. <div v-if="menzhenShow" :class="index == 0 ? 'navOne navActive' : 'navOne'" @click="clickActive(0,'HIS管理')">
  7. <i class="iconfont icon--yishengmenzhen navIcon"></i>
  8. <p>HIS管理</p>
  9. </div>
  10. <div v-if="bingliShow" :class="index == 1 ? 'navOne navActive' : 'navOne'" @click="clickActive(1,'电子病历')">
  11. <i class="iconfont icon-s_bingli navIcon"></i>
  12. <p>电子病历</p>
  13. </div>
  14. <div v-if="medicianshow" :class="index == 7 ? 'navOne navActive' : 'navOne'" @click="clickActive(7,'药房管理')">
  15. <i class="iconfont icon-shangcheng-1 navIcon"></i>
  16. <p>药房管理</p>
  17. </div>
  18. <div v-if="touxiShow" :class="index == 2 ? 'navOne navActive' : 'navOne'" @click="clickActive(2,'透析管理')">
  19. <i class="iconfont icon-computer_fill navIcon"></i>
  20. <p>透析管理</p>
  21. </div>
  22. <div v-if="caigouShow" :class="index == 5 ? 'navOne navActive' : 'navOne'" @click="clickActive(5,'采购管理')">
  23. <i class="iconfont icon-kccx navIcon"></i>
  24. <p>采购管理</p>
  25. </div>
  26. <div v-if="kucunShow" :class="index == 3 ? 'navOne navActive' : 'navOne'" @click="clickActive(3,'库房管理')">
  27. <i class="iconfont icon-kccx navIcon"></i>
  28. <p>库房管理</p>
  29. </div>
  30. <div v-if="kuyishoppingShow" :class="index == 4 ? 'navOne navActive' : 'navOne'" @click="clickActive(4,'圣械通')">
  31. <i class="iconfont icon-shangcheng-1 navIcon"></i>
  32. <p>圣械通</p>
  33. </div>
  34. <div class="navOne" @click="open">
  35. <i class="iconfont icon-manage_fill navIcon"></i>
  36. <p>更多</p>
  37. </div>
  38. </div>
  39. <sidebar :navTitle="navTitle" v-show="navShow" class="sidebar-container" @func="show"></sidebar>
  40. <div class="main-container new-main-container" style="flex:1;margin-top:50px;">
  41. <navbar></navbar>
  42. <!-- <tags-view></tags-view> -->
  43. <app-main></app-main>
  44. </div>
  45. </div>
  46. <div class="dialogMadol" v-if="sign" @click="close"></div>
  47. <div class="dialogBox" v-if="sign">
  48. <div class="dialogBoxTitle">
  49. <span>更多菜单</span>
  50. <span @click="close">关闭</span>
  51. </div>
  52. <div class="dialogMain">
  53. <!-- <div class="dialogMainOne" @click="clickActive(5,'库存管理')">
  54. <div class="dialogIcon">
  55. <i class="el-icon-menu newIcon"></i>
  56. </div>
  57. <p>库存管理</p>
  58. </div> -->
  59. <!-- <a :href="CDMWebsit()" target="_blank" v-if="this.$store.getters.xt_user.cdm_role_exist">
  60. <div class="dialogMainOne">
  61. <div class="dialogIcon">
  62. <i class="iconfont icon-yiliao newIcon"></i>
  63. </div>
  64. <p>慢病管理</p>
  65. </div>
  66. </a>
  67. <a :href="SCRMWebsit()" target="_blank" v-if="this.$store.getters.xt_user.scrm_role_exist">
  68. <div class="dialogMainOne">
  69. <div class="dialogIcon">
  70. <i class="iconfont icon-yingxiao newIcon"></i>
  71. </div>
  72. <p>营销管理</p>
  73. </div>
  74. </a> -->
  75. <!-- <div class="dialogMainOne">
  76. <div class="dialogIcon">
  77. <i class="iconfont icon-shujufenxi-jingyinggaikuang newIcon"></i>
  78. </div>
  79. <p>经营中心</p>
  80. </div> -->
  81. <a :href="MircoMallWebsit()" target="_blank" v-if="this.$store.getters.xt_user.mall_role_exist">
  82. <div class="dialogMainOne">
  83. <div class="dialogIcon">
  84. <i class="iconfont icon-fenxiao newIcon"></i>
  85. </div>
  86. <p>分销商城</p>
  87. </div>
  88. </a>
  89. <div v-if="peizhiShow" class="dialogMainOne" @click="clickActive(11,'配置管理')">
  90. <div class="dialogIcon">
  91. <i class="iconfont icon-setup_fill newIcon"></i>
  92. </div>
  93. <p>配置管理</p>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. </template>
  99. <script>
  100. import { mapGetters } from "vuex";
  101. import { Navbar, Sidebar, AppMain, TagsView } from './components'
  102. import ResizeMixin from './mixin/ResizeHandler'
  103. export default {
  104. name: 'layout',
  105. components: {
  106. Navbar,
  107. Sidebar,
  108. AppMain,
  109. TagsView
  110. },
  111. mixins: [ResizeMixin],
  112. data(){
  113. return{
  114. index:2,
  115. navTitle:'透析管理',
  116. sign:false,
  117. navShow:true,
  118. //
  119. menzhenShow:true,
  120. bingliShow:true,
  121. touxiShow:true,
  122. kucunShow:true,
  123. medicianshow:true,
  124. peizhiShow:true,
  125. kuyishoppingShow:true,
  126. caigouShow:true,
  127. }
  128. },
  129. created(){
  130. let menzhen = ['hospitalStation',"hospitalRecord","hospitalCharges","DepositManagement","hisTool","eleFaPiao",'outpatientRegistration','outpatientDoctorStation','outpatientCharges','outpatientPharmacy','outpatientRecord'];
  131. let bingli = ['User','createPatient'];
  132. let touxi = ['home','workforce', 'dialysisrecord', 'dialysis', 'medicalScheduling', 'signIndex', 'qcd', 'device', 'quality_control','dialysis_index','log_index'];
  133. let kucun = ['stockManage','stockDrugs','selfPreparedMedicine','inventoryTransfer','wareHouseManage','otherManagement'];
  134. let caigou = ['supplyManage','supplyList'];
  135. let peizhi = ['system','roleManage','DepartManage', 'bedManagement', 'dictionaryManagement', 'templateManagement','showconfig','printTemplate','integration_config','basicConfig'];
  136. let kuyishopping = ['kuyiShopping'];
  137. let medician = ['PatientDispensing','DrugDispensing','DispensingDetails','stockDrugs']
  138. let menzhenArr = [];
  139. let bingliArr = [];
  140. let touxiArr = [];
  141. let kucunArr = [];
  142. let peizhiArr = [];
  143. let kuyishoppingArr = [];
  144. let caigouArr =[]
  145. let medicianArr = []
  146. this.permission_routers.map(item => {
  147. if(menzhen.indexOf(item.name) > -1){
  148. menzhenArr.push(item)
  149. }else if(bingli.indexOf(item.name) > -1){
  150. bingliArr.push(item)
  151. }else if(touxi.indexOf(item.name) > -1){
  152. touxiArr.push(item)
  153. }else if(kucun.indexOf(item.name) > -1){
  154. kucunArr.push(item)
  155. }else if(peizhi.indexOf(item.name) > -1){
  156. peizhiArr.push(item)
  157. }else if(kuyishopping.indexOf(item.name) > -1){
  158. kuyishoppingArr.push(item)
  159. }else if(caigou.indexOf(item.name)>-1){
  160. caigouArr.push(item)
  161. }else if(medician.indexOf(item.name) > -1){
  162. medicianArr.push(item)
  163. }
  164. });
  165. // console.log('menzhenArr.length',menzhenArr.length)
  166. // console.log('bingliArr.length',bingliArr.length)
  167. // console.log('touxiArr.length',touxiArr.length)
  168. // console.log('kucunArr.length',kucunArr.length)
  169. // console.log('peizhiArr.length',peizhiArr.length)
  170. // console.log('kuyishoppingArr.length',kuyishoppingArr.length)
  171. // console.log("cagouArr23323322323",caigouArr.length)
  172. if(menzhenArr.length == 0){
  173. this.menzhenShow = false
  174. }else if(bingliArr.length == 0){
  175. this.bingliShow = false
  176. }else if(touxiArr.length == 0){
  177. this.touxiShow = false
  178. }else if(kucunArr.length == 0){
  179. this.kucunShow = false
  180. }else if(peizhiArr.length == 0){
  181. this.peizhiShow = false
  182. }else if(kuyishoppingArr.length == 0){
  183. this.kuyishoppingShow = false
  184. }else if(caigouArr.length == 0){
  185. this.caigouShow = false
  186. }
  187. },
  188. computed: {
  189. ...mapGetters(["permission_routers"]),
  190. sidebar() {
  191. return this.$store.state.app.sidebar
  192. },
  193. device() {
  194. return this.$store.state.app.device
  195. },
  196. classObj() {
  197. return {
  198. hideSidebar: !this.sidebar.opened,
  199. openSidebar: this.sidebar.opened,
  200. withoutAnimation: this.sidebar.withoutAnimation,
  201. mobile: this.device === 'mobile'
  202. }
  203. }
  204. },
  205. methods: {
  206. handleClickOutside() {
  207. this.$store.dispatch('closeSideBar', { withoutAnimation: false })
  208. },
  209. clickActive(index,title){
  210. if(index == 4){
  211. // this.$router.push({ path: "/kuyiShopping",name:"kuyiShopping" })
  212. this.$router.push('/kuyiShopping/index')
  213. }else if(index == 6){
  214. this.CDMWebsit()
  215. }
  216. this.index = index;
  217. this.navTitle = title;
  218. this.sign = false
  219. },
  220. open(){
  221. this.sign = true
  222. },
  223. close(){
  224. this.sign = false
  225. },
  226. show(data){
  227. this.navShow = data
  228. },
  229. SCRMWebsit() {
  230. return process.env.SRCM_HOST;
  231. },
  232. MircoMallWebsit() {
  233. return process.env.MIRCO_MALL_HOST;
  234. },
  235. CDMWebsit() {
  236. return process.env.CDM_HOST;
  237. },
  238. }
  239. }
  240. </script>
  241. <style rel="stylesheet/scss" lang="scss" scoped>
  242. @import "src/styles/mixin.scss";
  243. .app-wrapper {
  244. @include clearfix;
  245. position: relative;
  246. height: 100%;
  247. width: 100%;
  248. &.mobile.openSidebar{
  249. position: fixed;
  250. top: 0;
  251. }
  252. }
  253. .drawer-bg {
  254. background: #000;
  255. opacity: 0.3;
  256. width: 100%;
  257. top: 0;
  258. height: 100%;
  259. position: absolute;
  260. z-index: 999;
  261. }
  262. // .sidebar-container{
  263. // position: fixed;
  264. // top:50px;
  265. // left:0;
  266. // }
  267. .navLeft{
  268. width:80px;
  269. height:100%;
  270. background: #1F2D3D;
  271. margin-top:50px;
  272. .navOne{
  273. font-size:14px;
  274. width:80px;
  275. height:80px;
  276. color:#BFCBD9;
  277. display: flex;
  278. align-items: center;
  279. flex-direction: column;
  280. cursor: pointer;
  281. .navIcon{
  282. margin: 16px 0 10px 0;
  283. font-size: 24px;
  284. }
  285. }
  286. .navActive{
  287. background: #409EFF;
  288. color:#fff;
  289. }
  290. }
  291. .mainBox{
  292. display:flex;
  293. width:100%;
  294. height:calc(100% - 50px)
  295. }
  296. #app .sidebar-container {
  297. width: 140px !important;
  298. height: 100%;
  299. margin-top:50px;
  300. overflow: visible;
  301. background-color: #fff;
  302. }
  303. .dialogBox{
  304. width: 392px;
  305. height: 400px;
  306. background: #304155;
  307. position: fixed;
  308. bottom:0;
  309. left:80px;
  310. z-index:4000;
  311. .dialogBoxTitle{
  312. display: flex;
  313. justify-content: space-between;
  314. padding:0 16px;
  315. border-bottom:1px solid #BFCBD9;
  316. height:44px;
  317. align-items: center;
  318. color:#BFCBD9;
  319. >:last-child{
  320. cursor: pointer;
  321. }
  322. }
  323. .dialogMain{
  324. display: flex;
  325. flex-wrap: wrap;
  326. }
  327. .dialogMainOne{
  328. color:#BFCBD9;
  329. display: flex;
  330. align-items: center;
  331. flex-direction: column;
  332. margin: 16px;
  333. .dialogIcon{
  334. width: 66px;
  335. height: 66px;
  336. background: rgba(64, 158, 255, 0.2);
  337. display: flex;
  338. align-items: center;
  339. margin-bottom: 10px;
  340. }
  341. .newIcon{
  342. margin: 0 auto;
  343. font-size: 24px;
  344. }
  345. >p{
  346. font-size: 14px;
  347. }
  348. }
  349. }
  350. .dialogMadol{
  351. position: fixed;
  352. left: 0;
  353. top: 0;
  354. width: 100%;
  355. height: 100%;
  356. opacity: .5;
  357. background: #000;
  358. z-index: 3000;
  359. }
  360. .new-main-container{
  361. width: calc(100% - 220px);
  362. }
  363. .sidebar-container{
  364. transform: translate3d(0, 0, 0) !important;
  365. }
  366. </style>