zhangyanfang 6 سال پیش
والد
کامیت
6142781862

+ 2 - 2
app/rehabilitation/html/health_control.html

@ -118,8 +118,8 @@
                                <button @click="morePlan(data)">
                                    <a href="javascript: void(0)">更多计划</a>
                                </button>
                                <button @click="checkPlan(data)">
                                    <a href="javascript: void(0)">查看计划</a>
                                <button>
                                    <a href="javascript: void(0)" @click="checkPlan(data)">查看计划</a>
                                </button>
                                <button class="stopBtn" @click="stop(data)" :data-id="data.id" :id="'stopBtn_'+data.id">终止计划</button>
                            </div>

+ 2 - 2
app/rehabilitation/html/moreplan.html

@ -68,7 +68,7 @@
                                <img src="../../../images/moren_yishengqun_img .jpg" width="40" height="40" class="c-images-cycle">
                                <div class="miaoshu cgre">
                                    <p>
                                        <span>家庭医生</span>&nbsp;{{specialistAdminTeamName}}</p>
                                        <span>家庭医生</span>&nbsp;{{signFamilyAdminTeamName}}</p>
                                    <p class="mt10">{{familyHospitalName}}</p>
                                </div>
@ -144,7 +144,7 @@
                    </div>
                    <div class="detaild">
                        <a href="javascript: void(0)" @click="checkPatient()">查看患者</a>
                        <a href="">查看计划</a>
                        <a href="javascript: void(0)" @click="checkPlan(data)">查看计划</a>
                        <a href="javascript: void(0)" class="ii" @click="stop(data)" :id="'stopBtn_'+data.planId">终止计划</a>

+ 17 - 4
app/rehabilitation/js/health_control.js

@ -297,10 +297,7 @@ layui.use('element', function () {
            morePlan: function (data) {
                location.href = "moreplan.html?patientCode=" + data.patientCode
            },
            checkPlan: function (data) {
                location.href = "../../rehabilitation/html/rehabilitation_management.html?planId=" + data.id + "&status=" + data.status
            },
           
            stop: function (data) {
                var vm = this
                vm.planid = data.id
@ -310,6 +307,22 @@ layui.use('element', function () {
            },
            newRecover:function(){
                location.href="../../recover/html/new_recover.html"
            },
            checkPlan:function(data){
                layer.open({
                    type: 2,
                    area: ['600px', '650px'],
                    shade: 0.5,
                    title: '服务项目内容',
                    fixed: true, //不固定
                    maxmin: true,
                    closeBtn:1,
                    shift: 5,
                    shadeClose: false, //点击遮罩关闭层
                    content: '../../rehabilitation/html/service_item_content.html?planids='+data.id
                  });
            }
        }

+ 5 - 1
app/rehabilitation/js/moreplan.js

@ -209,7 +209,11 @@ layui.use('element', function () {
                var vm = this
                location.href = "../../temporary/html/userInfo.html?patient=" + vm.paticentcode
            }
            },
            checkPlan: function (data) {
                location.href = "../../rehabilitation/html/rehabilitation_management.html?planId=" + data.planId
            },
        }
    })