Browse Source

整合预约步骤组件

raolu 7 years ago
parent
commit
c4eaee3b1f

+ 5 - 3
page/appointment/html/confirm-info.html

@ -14,15 +14,16 @@
        <link rel="stylesheet" type="text/css" href="../../../plugins/artDialog/6.0.5/api/css/ui-dialog.css"/>
        <link rel="stylesheet" type="text/css" href="../../../css/style.min.css"/>
        <link rel="stylesheet" type="text/css" href="../../../css/cross.css"/>
        <link rel="stylesheet" type="text/css" href="../../../css/common.css"/>
        <link rel="stylesheet" type="text/css" href="../css/appointment.css"/>
    </head>
    <body class="bgc-f5f9f9">
        <div id="main">
            <page-header></page-header>
            <div class="container mt10">
            <div class="container mt20">
                <div class="ui-grid">
                    <div class="ui-col-0">
                        
                    <div class="ui-col-0 mr15">
                        <appointment-step></appointment-step>
                    </div>
                    <div class="ui-col-1">
                        <div class="bgc-fff c-border plr20">
@ -93,6 +94,7 @@
        <script src="../../../component/common/header.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../component/common/footer.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../component/common/event-bus.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../component/common/appointment-step.js" type="text/javascript" charset="utf-8"></script>
        <script src="../js/confirm-info.js" type="text/javascript" charset="utf-8"></script>
    </body>
</html>

+ 6 - 4
page/appointment/html/select-time.html

@ -14,19 +14,20 @@
        <link rel="stylesheet" type="text/css" href="../../../plugins/artDialog/6.0.5/api/css/ui-dialog.css"/>
        <link rel="stylesheet" type="text/css" href="../../../css/style.min.css"/>
        <link rel="stylesheet" type="text/css" href="../../../css/cross.css"/>
        <link rel="stylesheet" type="text/css" href="../../../css/common.css"/>
        <link rel="stylesheet" type="text/css" href="../css/appointment.css"/>
    </head>
    <body>
        <div id="main">
            <page-header></page-header>
            <div class="container">
            <div class="container mt20">
                <div class="ui-grid">
                    <div class="ui-col-0">
                        
                    <div class="ui-col-0 mr15">
                        <appointment-step></appointment-step>
                    </div>
                    <div class="ui-col-1">
                        <!--医生基本信息展示-->
                        <section class="mt30" name="doc-info">
                        <section class="mt10" name="doc-info">
                            <div class="ui-grid">
                                <div class="ui-col-0 mr30">
                                    <img src="../../../images/d-male.png" width="120" height="120" class="c-images-cycle">
@ -63,6 +64,7 @@
        <script src="../../../component/common/header.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../component/common/footer.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../component/common/event-bus.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../component/common/appointment-step.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../component/appointment/date-source.js" type="text/javascript" charset="utf-8"></script>
        <script src="../js/select-time.js" type="text/javascript" charset="utf-8"></script>
    </body>

+ 3 - 0
page/appointment/js/confirm-info.js

@ -2,5 +2,8 @@ new Vue({
    el: "#main",
    data: {
        
    },
    mounted: function(){
        EventBus.$emit("jump-step",{step:4});//step:跳转的步数
    }
})

+ 3 - 0
page/appointment/js/select-time.js

@ -2,5 +2,8 @@ new Vue({
    el: "#main",
    data: {
        
    },
    mounted: function(){
        EventBus.$emit("jump-step",{step:3});//step:跳转的步数
    }
})