Browse Source

Merge branch 'master' of http://192.168.1.220:10080/raolu/PC-application

yingzhou 6 years ago
parent
commit
ae9f9f2f55

+ 18 - 1
app/rehabilitation/css/management.css

@ -36,6 +36,22 @@ a {
	float: right;
}
.header{
    background-color: #fff;
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 15px;
}
.header .title{
    font-size: 14px;
    font-weight: bold;
    padding-right: 10px;
    color: #333;
    border-right: 1px solid #e1e1e1;
}
.header img{
    vertical-align: text-bottom;
}
.ui-popup-full { width: auto; }
#app>.ui-grid, #app>.ui-grid .ui-grid {
@ -279,7 +295,7 @@ a {
.back-btn {
	display: inline-block;
	width: 120px;
	width: 90px;
	height: 34px;
	line-height: 34px;
	background-color: #12b7f5;
@ -290,6 +306,7 @@ a {
	left: 50%;
	bottom: 10px;
	margin-left: -60px;
	font-size: 14px;
}
.item-detail-wrap {

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

@ -65,8 +65,7 @@
                </div>
                <label class="checkbox all-checkbox">
                    <input type="checkbox" name="tags" class="c-hide" value="1" id="c" @click="daiban()">
                    <i class="icon-chkbox"></i>
                    今日待办
                    <i class="icon-chkbox"></i>今日
                </label>
            </div>
            

+ 5 - 1
app/rehabilitation/html/management.html

@ -16,10 +16,14 @@
        <link rel="stylesheet" type="text/css" href="../css/management.css"/>
        <script src="../../../js/vue.js" type="text/javascript" charset="utf-8"></script>
        <script src="../../../js/jquery-2.2.4.js" type="text/javascript" charset="utf-8"></script>
		
	</head>
	<body>
		<div id="app" >
		    <div class="header">
		        <span class="title mr10">模板管理</span>
		        <img src="../../../images/fanhui_icon.png" @click="backPage">
		        <img src="../../../images/shuaxin_icon.png" class="ml10" @click="refreshPage">
		    </div>
			<router-view></router-view>
		</div>
		<script src="../../../plugins/toastr/toastr.min.js"></script>

+ 6 - 0
app/rehabilitation/js/management.js

@ -69,6 +69,12 @@ new Vue({
	  	})
    },
    methods: {
        backPage: function(){
            window.history.go(-1);
        },
        refreshPage: function(){
            window.location.reload();
        }
    },
    components: {
    }