forked from kidgrow-microservices-platform

dougang
2021-03-03 26d15716f44e8e936d8cd39e8027eaab4d3a8172
kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/hospital.html
@@ -106,13 +106,23 @@
                    },
                    {
                        field: 'hospitalLink',
                        width: "6%",
                        width: "7%",
                        title: '联系人'
                    },
                    {
                        field: 'hospitalTel',
                        width: "8%",
                        title: '联系方式'
                    },
                    {
                        field: 'departmentLink',
                        width: "6%",
                        title: '科室联系人'
                    },
                    {
                        field: 'departmentTel',
                        width: "8%",
                        title: '科室联系方式'
                    },
                    {
                        field: 'orderType', width: 80,  title: '状态', templet: function (d) {
@@ -341,7 +351,7 @@
                        where: {
                            'hospitalId': data.hospitalId,
                            'departmentId': data.departmentId,
                            'enabled': 1
                            'enabled': true
                        },
                        headers: {
                            'Authorization': 'Bearer ' + config.getToken().access_token
@@ -390,7 +400,7 @@
                                    title: '开始时间',
                                    templet: function (d) {
                                        return new Date(d.proBegintime)
                                            .dateFormat("yyyy/MM/dd");
                                            .dateFormat("yyyy/MM/dd hh:mm:ss");
                                    }
                                },
                                {
@@ -398,8 +408,11 @@
                                    width: 180,
                                    title: '结束时间',
                                    templet: function (d) {
                                        return new Date(d.proEndtime)
                                            .dateFormat("yyyy/MM/dd");
                                        var dateTime=new Date(d.proEndtime);
                                         dateTime=dateTime.setDate(dateTime.getDate()-1);
                                        dateTime=new Date(dateTime);
                                        return dateTime
                                            .dateFormat("yyyy/MM/dd")+" 24:00:00";
                                    }
                                },
                                {