yingzhou 6 лет назад
Родитель
Сommit
2b807ed90e

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

@ -105,7 +105,7 @@
                                </div>
                                <span class="cgre">{{data.allFinishCount}}/</span>
                                <span class="cgre">{{data.allCount}}</span>
                                <p style="margin-left:20px;"class="cred">今日待办:
                                <p style="margin-left:20px;"class="cred">今日:
                                    <span>{{data.todayBacklogCount}}</span>
                                </p>
                                <p class="cgre margin-10">已完成:

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

@ -128,7 +128,7 @@
                                <span class="cgre">{{data.allCount}}</span>
                            </div>
                            <div class="detailc flex-box">
                                <p class="cred">今日项目:
                                <p class="cred">今日:
                                    <span>{{data.todayBacklogCount}}</span>
                                </p>
                                <p class="cgre">已完成:

+ 0 - 5
app/rehabilitation/js/health_control.js

@ -1,5 +1,4 @@
layui.use('element', function () {
    // var $ = layui.jquery
    element = layui.element//Tab的切换功能,切换事件监听等,需要依赖element模块
    function Progress(dom, num) {
        window.setTimeout(function () {
@ -241,10 +240,6 @@ layui.use('element', function () {
                })
            },
            gettypes: function () {
                var vm = this

+ 24 - 0
app/rehabilitation/js/service_item_content.js

@ -20,6 +20,30 @@
			this.getServiceItemList();
		},
		methods:{
			viewDetial:function(type,code){
				var vm=this;
				if(type==4){					
					top.layer.msg('客户端暂不支持查询随访记录');
				}else{
					top.layer.open({
						type: 2,
						//				  offset: ['100px'], //右下角弹出
						area: ['80%', '600px'],
						shade: 0.5,
						title: '指导留言',
						fixed: true, //不固定
						maxmin: true,
						closeBtn: 1,
						shift: 5,
						shadeClose: false, //点击遮罩关闭层
						content: '../../article/html/article-info.html?articleId=' + code,
						end: function() { // 未点击确定按钮,点击关闭按钮  
							vm.getServiceItem();    
						}
					});
					
				}
			},
			chakan:function(){
				this.isCollapse=!this.isCollapse;
			},