Parcourir la source

康复管理-模块管理权限

zhangyanfang il y a 6 ans
Parent
commit
5e0e31a86a
1 fichiers modifiés avec 14 ajouts et 9 suppressions
  1. 14 9
      app/rehabilitation/js/health_control.js

+ 14 - 9
app/rehabilitation/js/health_control.js

@ -107,7 +107,6 @@ layui.use('element', function () {
                        var ishospitalName = val[i].hospitalName
                        vm.planCreateUser = val[i].planCreateUser
                        if (ishospitalName == null) {
                            $("#hospitalName_" + val[i].id).html("暂无社区信息")
                        }
@ -171,7 +170,6 @@ layui.use('element', function () {
        },
        mounted() {
            var vm = this
            // vm.getModal()
            vm.getDatas()
            vm.gettypes()
@ -205,7 +203,8 @@ layui.use('element', function () {
                            vm.wujilu = true
                        }
                        vm.docInfo = JSON.parse(window.localStorage.getItem('wlyyAgent'))
                        vm.docCode=vm.docInfo.code
                        console.log(vm.docCode)
                        vm.doctorType = vm.docInfo.doctorType
                        if (vm.doctorType != 1) {
                            $(".neironglef>button:nth-child(1)").attr('disabled', "true")
@ -215,19 +214,25 @@ layui.use('element', function () {
                        }
                        healthAPI.doctorBaseinfo().then(function (res) {
                            vm.isLeader = res.data.isLeader
                            vm.isLeader = res.data.isLeader//0非团队长 1团队长
                            vm.level=res.data.level//1专科医生,2全科医生,3健康管理师
                            vm.planCreateUser //创建者跟登录者相等可中止操作
                            console.log(vm.doctorType)
                            for (var i = 0; i < vm.tablelist.length; i++) {
                                if (vm.isLeader == 0) {
                                if(vm.docCode!=vm.planCreateUser){
                                    $("#stopBtn_" + vm.tablelist[i].id).attr('disabled', "true")
                                    $("#stopBtn_" + vm.tablelist[i].id).addClass("falsebutton")
                                    $(".neironglef>button:nth-child(2)").attr('disabled', "true")
                                    $(".neironglef>button:nth-child(2)").addClass("falsebutton")
                                    $(".neironglef>button:nth-child(2)").css("color", "white")
                                }
                               
                            }
                            if (vm.isLeader == 0||vm.level != 1) {
                                $(".neironglef>button:nth-child(2)").attr('disabled', "true")
                                $(".neironglef>button:nth-child(2)").addClass("falsebutton")
                                $(".neironglef>button:nth-child(2)").css("color", "white")
                            }
                        })