DESKTOP-0K9VGFE\hp
2022-03-11 6d766b0c8e9b31e7e03ffd344a94c2851aa9beb9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<apex:page controller="MoreMaintenanceContractPopController"    showHeader="false"   sidebar="true" id="allPage"  title="经销商对医院修理价格录入">
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
<apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
<!-- action="{!init}" -->
<style type="text/css">
/*----------------------------------------------------
Default
-----------------------------------------------------*/
body,ul,ol,dl,dt,dd,li,p,h1,h2,h3,h4,h5,h6,form,label,fieldset,table,td,img,div,th{
border:0;margin:0px; padding:0;}
li,dd,dl,dt {list-style-type:none;}
table {border-collapse:collapse;} 
b,em,i,u,strong{font-weight:normal;font-style:normal;text-decoration:none;}
.clear{ clear:both; line-height:0; font-size:0;  border:none; height:0; }
.empty { line-height:0; font-size:0;}
.fr{ float:right;}
.fl{ float:left;}
.clearfix{overflow:hidden;zoom:1}
.br { word-wrap:break-word;    word-break:break-all;}
.out{white-space: nowrap;  text-overflow:ellipsis;  overflow:hidden;}
.mb30{margin-bottom: 30px;}
.mr30{margin-right: 30px;}
.mr33{margin-right: 33px;}
/*-----------------------------------------------------
User-defined
-----------------------------------------------------*/
h1,h2,h3,h4,h5,h6 { font-family:Tahoma, Helvetica, Arial, 'Microsoft YaHei', sans-serif; font-size:12px; font-weight:normal;}    
body {font-size:12px; font-family:Tahoma, Helvetica, Arial, 'Microsoft YaHei', sans-serif; color:#333; background:#fff;}
input,select,textarea{ margin: 0; padding:0; vertical-align:middle; font-family:Tahoma, Helvetica, Arial, 'Microsoft YaHei', sans-serif; color:#333; outline:none; resize:none;}
 
a { color: #333; text-decoration: none; }
a:hover { color:#333; }
.w_vis_range_wrap{width: 100%;height: 100%;position: fixed;left:0;top:0;background: rgba(0,0,0,0.5);}
.w_vis_range{width: 440px;height: 388px;background: #fff;position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;border-radius: 5px}
.w_vis_ra_head{height:50px;background: #f5faff;border-bottom: 1px solid #cce5ff;line-height: 50px;font-size: 18px;padding: 0 10px}
.w_vis_ra_head h3{font-size: 18px;text-align: center;}
 
.w_vis_ra_foot{padding: 20px 0px;font-size: 14px;text-align: center}
.w_vis_ra_foot span{cursor: pointer;display: inline-block;width: 180px;height: 32px;line-height: 32px;border-radius: 2px;text-align: center;}
.w_vis_ra_foot .w_sure{color: #fff;background:#0099ff;}
.w_vis_ra_foot .w_close{color: #999999;background: #f2f2f2;margin-left: 30px}
.w_del{height: 240px;font-size: 14px;}
.w_del_txt {text-align: center;padding: 30px 20px 0}
.w_del_txt p{line-height: 35px;;color: #333;font-size: 16px}
.w_del_txt a:hover{color: #0099ff}
.w_col_09f{color: #0099ff}
.w_inp_wrap{padding: 10px 20px;}
.w_inp_wrap .w_inp{width: 350px;line-height: 30px;height: 30px;border-radius: 2px;border: 1px solid #ccc;vertical-align: middle}
.w_inp_wrap span{vertical-align: middle;}
 
/*.w_close_btn{display: inline-block;width: 15px;height: 15px;background: url(../images/close.png) no-repeat center;margin-top: 17px;vertical-align: middle}*/
</style>
<script type="text/javascript">
    function yesGO(){
        var Id ="{!id}";
        var RecordTypeName = "{!RecordTypeName}"
        window.location.href="/apex/MoreMaintenanceContract?Id=" +Id+'&RecordTypeName='+RecordTypeName;
    }
    function noGo(){
        window.location.href="http://powerbi.olympus.com.cn/Home/Login";
    }
</script>
<div class="w_vis_range_wrap">
    <div class="w_del w_vis_range">
        <div class="w_vis_ra_head">
            <!-- <span class="w_close_btn fr"></span> -->
            <h3>提示</h3>
        </div>
        <apex:outputPanel rendered="{!!isVM}">
            <div class="w_del_txt ">
                <p>本合同的签订对象为经销商,请确认是否需要输入经销商对医院合同信息。</p>
            </div>
            <div class="w_vis_ra_foot">
                <span class="w_sure" onclick="yesGO();">是,录入经销商对医院价格</span>
                <span class="w_close" onclick="noGo();">否,直接登录PBI</span>
            </div>
        </apex:outputPanel>
        <!-- 20201228 zh LJPH-BWJ8PM 制作报告书按钮 start -->
        <apex:outputPanel rendered="{!isVM}">
            <div class="w_del_txt ">
                <p>请确认是否手动调整合同金额信息。</p>
            </div>
            <div class="w_vis_ra_foot">
                <span class="w_sure" onclick="yesGO();">是,维护对医院价格</span>
                <span class="w_close" onclick="noGo();">否,直接登录PBI</span>
            </div>
        </apex:outputPanel>
        <!-- 20201228 zh LJPH-BWJ8PM 制作报告书按钮 end -->
    </div>
</div>
</apex:page>