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
<apex:page id="Page" controller="HomeBulletinBoardController"  sidebar="false" showHeader="false" action="{!init}">
<style>
div#hbbcontainer
{
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    width:100%;
    height:105px;
}
div#hbbcontainer tr.noHeader
{
    display:none;
}
</style>
<script type="text/javascript" charset="UTF-8">
//alert("18:00开始切换 GPI/JPI的连接,请不要做以下操作¥n1. 新建,修改 客户¥n2. win 询价¥n3. 上传修理¥n4. 新建保有设备");
</script>
<apex:form id="allForm" styleClass="homeTab">
    <apex:pageBlock id="allBlock" title="最近公开的掲示板和资料">
        <apex:pageBlockButtons location="top">
            <apex:commandButton value="{!$ObjectType.Product_Documentation__c.Label}" onclick="window.open('/a0m','_blank','')"/>
            <apex:commandButton value="{!$ObjectType.Bulletin_Board__c.Label}" onclick="window.open('/a0v?fcf=00B100000038JLU&rolodexIndex=-1&page=1','_blank','')"/>
            <apex:commandButton value="{!$ObjectType.Solution.Label}" onclick="window.open('/501/o','_blank','')"/>
            <apex:commandButton value="{!$ObjectType.Campaign.Label}" onclick="window.open('/701/o','_blank','')"/>
        </apex:pageBlockButtons>
        <table class="list" style="border-bottom-width: 0px; font-size:10px;" border="0" cellspacing="0" cellpadding="0">
            <tr class="headerRow">
                <th style="text-align:center;padding-top: 0px;padding-bottom: 0px;border-bottom-width: 0px;border-left-width: 0px;padding-right: 0px;height: 20px;width:80px">公开日</th>
                <th style="text-align:center;padding-top: 0px;padding-bottom: 0px;border-bottom-width: 0px;border-left-width: 1px;padding-right: 0px;height: 20px;width:80px">类型</th>
                <th style="text-align:center;padding-top: 0px;padding-bottom: 0px;border-bottom-width: 0px;border-left-width: 1px;padding-right: 0px;height: 20px;width:180px">分类1</th>
                <th style="text-align:center;padding-top: 0px;padding-bottom: 0px;border-bottom-width: 0px;border-left-width: 1px;padding-right: 0px;height: 20px;">主题</th>
            </tr>
        </table>
        <div id="hbbcontainer" style="font-size:10px;">
        <apex:pageblocktable value="{!hbbInfoList}" var="hbb" id="hhbTable" headerClass="noHeader">
            <apex:column width="80px">
                <apex:outputText value="{0,date,yyyy/MM/dd}">
                    <apex:param value="{!hbb.openday}" />
                </apex:outputText>
            </apex:column>
            <apex:column width="80px">
                <apex:outputText value="{!hbb.daiBunrui}"/>
            </apex:column>
            <apex:column width="180px">
                <apex:outputText value="{!hbb.bunrui}"/>
            </apex:column>
            <apex:column >
                <apex:outputLink target="_blank" value="/{!hbb.linkId}">{!hbb.subject}</apex:outputLink>
            </apex:column>
        </apex:pageblocktable>
        </div>
    </apex:pageBlock>
</apex:form>
</apex:page>