監(jiān)理公司管理系統(tǒng) | 工程企業(yè)管理系統(tǒng) | OA系統(tǒng) | ERP系統(tǒng) | 造價(jià)咨詢管理系統(tǒng) | 工程設(shè)計(jì)管理系統(tǒng) | 甲方項(xiàng)目管理系統(tǒng) | 簽約案例 | 客戶案例 | 在線試用
X 關(guān)閉
OA辦公協(xié)同系統(tǒng)

當(dāng)前位置:工程項(xiàng)目OA系統(tǒng) > OA軟件營銷 > OA辦公協(xié)同系統(tǒng)

協(xié)同OA軟件HTML流程運(yùn)用

申請(qǐng)免費(fèi)試用、咨詢電話:400-8352-114

第九部分 泛普免費(fèi)OA軟件Html模式的流程應(yīng)用
一. 泛普OA軟件破解版接口說明
流程的html模式,允許用戶自己寫js代碼,來對(duì)流程表單的數(shù)據(jù)進(jìn)行操作
二. OA軟件應(yīng)用案例
1) 綁定表單字段,這個(gè)是為html模式流程開發(fā)的基礎(chǔ)
要綁定一個(gè)事件,首先要找到的是字段的id,其實(shí)就是對(duì)應(yīng)的html控件的id。
找這個(gè)id是比較容易的,我們有下面3種方式來找到控件的id
i. 通過ie的工具查找,ie8在工具的菜單下面有個(gè)開發(fā)人員工具,如下圖:
我要查找請(qǐng)假天數(shù)這個(gè)字段的id
 
可以看到字段的id為field10146。
同事我們還可以看到請(qǐng)假天數(shù)的span 的id為field10146span。
ii. 從表單上看,如下圖
 
一樣可以看到字段的id為10146??丶?duì)應(yīng)的id就為field10146。
iii. 從html模板里面查看,如下圖
 
我們一樣可以看到字段的id為10146。
綁定事件
綁定事件可以通過jquery來實(shí)現(xiàn),jquery綁定事件非常簡單。
代碼如下:
 
<script language="javascript">
//綁定主字段
//文本框、瀏覽框、使用propertychange事件綁定
//下拉框使用change事件綁定
//check框不能通過值來判斷,需要通過check框的checked屬性來判斷當(dāng)前check框是否被選中了,綁定事件可以用click
//主字段命名規(guī)則,field+字段的id,如field10146 10146為字段的id
jQuery(document).ready(function(){
 
//文本框、瀏覽框
jQuery("#field10146").bind("propertychange",function(){
bindfield10146();
});
 
//下拉框
jQuery("#field10147").bind("change",function(){
alert("請(qǐng)假類型:"+jQuery("#field10147").val());
});
 
//check框
jQuery("#field10161").bind("click",function(){
alert("check框:"+jQuery("#field10161").attr("checked"));
});
 
//如果一進(jìn)入頁面就需要執(zhí)行某件事,比如下面獲得check框是否被選中
//alert("check框:"+jQuery("#field10161").attr("checked"));
 
});
 
function bindfield10146(){
alert("請(qǐng)假天數(shù):"+jQuery("#field10146").val());
}
 
//綁定明細(xì)字段
jQuery(document).ready(function(){
//綁定已經(jīng)存在的數(shù)據(jù)
//綁定明細(xì)表1,indexnum0 代表當(dāng)前有多少行明細(xì),包括刪除的明細(xì)數(shù)據(jù)
//如果需要綁定明細(xì)表2,則需要把indexnum0改成indexnum1,明細(xì)表3,indexnum2,后面的類推
//明細(xì)字段的命名規(guī)則為field+字段的id+"_"+明細(xì)數(shù)據(jù)的行號(hào)
//field10150_0 字段id為10150 行號(hào)為0代辦第一行
if(jQuery("#indexnum0").length>0){//判斷該字段是否存在
var indexnum0 = jQuery("#indexnum0").val() * 1.0;
for(var index=0;index<indexnum0;index++){
//綁定核算部門字段
jQuery("#field10150_"+index).bind("propertychange",function(){
alert(this.value);
});
}
}
 
//動(dòng)態(tài)綁定添加行的里面的字段,當(dāng)前添加的行,行號(hào)等于明細(xì)表行數(shù)的值 - 1
//也就是indexnum0的值 - 1
jQuery("#indexnum0").bind("propertychange",function(){
var indexnum0 = this.value * 1.0 - 1;
//綁定核算部門字段
jQuery("#field10150_"+indexnum0).bind("propertychange",function(){
alert(this.value);
});
});
});
</script>
 
 
 
 
2) 泛普OA管理系統(tǒng)html 模板 之多tab頁應(yīng)用
這個(gè)功能實(shí)現(xiàn)其實(shí)很簡單,就是在html模板里面,把流程的主字段table、明細(xì)表table分別使用div框起來,然后給div加上不同的id。然后再在頁面上添加幾個(gè)點(diǎn)擊(onclick)事件,分別來隱藏或者顯示不同的div里面的內(nèi)容,就可以達(dá)到多tab頁的效果了。
例子如下:
流程頁面有3個(gè)明細(xì)表
 
 
我們加4個(gè)div來實(shí)現(xiàn)點(diǎn)擊上面主表數(shù)據(jù),明細(xì)表1,明細(xì)2,明細(xì)表3來顯示不同的內(nèi)容,也就是對(duì)流程頁面的數(shù)據(jù)進(jìn)行拆分。
 
 
整個(gè)html頁面的代碼如下:
<p>
<link rel="STYLESHEET" type="text/css" href="/css/泛普OA系統(tǒng).css" />
<style type="text/css">
<!-- tab頁的樣式-->
span{
cursor:pointer;
font-size:12px;
}
#tab {width:398px;height:34px;border:1px #cfedff solid;border-bottom:0;}
#tab ul{margin:0;padding:0;}
#tab li{list-style:none;float:left;padding:0 30px;height:34px;line-height:34px;text-align:center;border-right:1px #ebf7ff solid;cursor:pointer;}
#tab li.now{color:#5299c4;background:#fff;font-weight:bold;}</style>
</p>
<table class="ViewForm">
    <tbody>
        <tr>
            <td><br />
            <div align="center"><font style="font-size: 14pt; font-weight: bold">html 模板 多tab頁</font></div>
<!-- 下面這部分為增加的代碼,用來顯示添加的onclick時(shí)間,類似導(dǎo)航欄。start-->
            <div style="margin: 10px; width: 500px; color: #666; font-size: 12px" id="tab">
            <ul>
                <li id="maintable" class="now" onclick="htmlChangeTab(this,'maindata')">主表數(shù)據(jù)</li>
                <li id="detailtable1" onclick="htmlChangeTab(this,'detaildata1')">明細(xì)表1</li>
                <li id="detailtable2" onclick="htmlChangeTab(this,'detaildata2')">明細(xì)表2</li>
                <li id="detailtable3" onclick="htmlChangeTab(this,'detaildata3')">明細(xì)表3</li>
            </ul>
            </div>
<!-- 上面這部分為增加的代碼,用來顯示添加的onclick時(shí)間,類似導(dǎo)航欄。end-->
 
<!-- 主表數(shù)據(jù)加上 div-->
            <div id="maindata">
            <table class="ViewForm">
                <colgroup><col width="10%"></col><col width="40%"></col><col width="10%"></col><col width="40%"></col></colgroup>
                <tbody>
                    <tr class="Spacing">
                        <td style="font-size: 0pt" class="Line1" colspan="4">&nbsp;</td>
                    </tr>
                    <tr>
                        <td><input id="$label10139$" class="Label" name="label10139" value="申請(qǐng)人" type="text" /></td>
                        <td class="field"><input id="$field10139$" class="InputStyle" name="field10139" value="[可編輯]申請(qǐng)人" type="text" /></td>
                        <td><input id="$label10140$" class="Label" name="label10140" value="申請(qǐng)人部門" type="text" /></td>
                        <td class="field"><input id="$field10140$" class="InputStyle" name="field10140" value="[可編輯]申請(qǐng)人部門" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="font-size: 0pt" class="Line2" colspan="4">&nbsp;</td>
                    </tr>
                    <tr>
                        <td><input id="$label10141$" class="Label" name="label10141" value="申請(qǐng)人分部" type="text" /></td>
                        <td class="field"><input id="$field10141$" class="InputStyle" name="field10141" value="[可編輯]申請(qǐng)人分部" type="text" /></td>
                        <td><input id="$label10147$" class="Label" name="label10147" value="請(qǐng)假類型" type="text" /></td>
                        <td class="field"><input id="$field10147$" class="InputStyle" name="field10147" value="[可編輯]請(qǐng)假類型" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="font-size: 0pt" class="Line2" colspan="4">&nbsp;</td>
                    </tr>
                    <tr>
                        <td><input id="$label10142$" class="Label" name="label10142" value="請(qǐng)假開始日期" type="text" /></td>
                        <td class="field"><input id="$field10142$" class="InputStyle" name="field10142" value="[可編輯]請(qǐng)假開始日期" type="text" /></td>
                        <td><input id="$label10143$" class="Label" name="label10143" value="請(qǐng)假開始時(shí)間" type="text" /></td>
                        <td class="field"><input id="$field10143$" class="InputStyle" name="field10143" value="[可編輯]請(qǐng)假開始時(shí)間" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="font-size: 0pt" class="Line2" colspan="4">&nbsp;</td>
                    </tr>
                    <tr>
                        <td><input id="$label10144$" class="Label" name="label10144" value="請(qǐng)假結(jié)束日期" type="text" /></td>
                        <td class="field"><input id="$field10144$" class="InputStyle" name="field10144" value="[可編輯]請(qǐng)假結(jié)束日期" type="text" /></td>
                        <td><input id="$label10145$" class="Label" name="label10145" value="請(qǐng)假結(jié)束時(shí)間" type="text" /></td>
                        <td class="field"><input id="$field10145$" class="InputStyle" name="field10145" value="[可編輯]請(qǐng)假結(jié)束時(shí)間" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="font-size: 0pt" class="Line2" colspan="4">&nbsp;</td>
                    </tr>
                    <tr>
                        <td><input id="$label10146$" class="Label" name="label10146" value="請(qǐng)假天數(shù)" type="text" /></td>
                        <td class="field"><input id="$field10146$" class="InputStyle" name="field10146" value="[只讀]請(qǐng)假天數(shù)" type="text" /></td>
                        <td><input id="$label10148$" class="Label" name="label10148" value="請(qǐng)假歷史記錄" type="text" /></td>
                        <td class="field"><input id="$field10148$" class="InputStyle" name="field10148" value="[只讀]請(qǐng)假歷史記錄" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="font-size: 0pt" class="Line2" colspan="4">&nbsp;</td>
                    </tr>
                </tbody>
            </table>
            </div>
<!-- 明細(xì)表1數(shù)據(jù)加上 div-->
            <div style="display: none" id="detaildata1">
            <table style="width: 100%; word-wrap: break-word; left: 0px" id="table0button" class="form" name="table0button">
                <tbody>
                    <tr>
                        <td style="font-size: 0pt" height="15" colspan="2">&nbsp;</td>
                    </tr>
                    <tr>
                        <td align="left">&nbsp;</td>
                        <td align="right">
                        <div id="div0button"><button accesskey="A" id="$addbutton0$" class="BtnFlow" name="addbutton0" onclick="addRow0(0)"><u>A</u>-添加</button><button accesskey="E" id="$delbutton0$" class="BtnFlow" name="delbutton0" onclick="deleteRow0(0);"><u>E</u>-刪除</button></div>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="2">
                        <table style="width: 100%" id="oTable0" class="ListStyle" name="oTable0">
                            <colgroup><col width="20%"></col><col width="20%"></col><col width="20%"></col><col width="20%"></col><col width="20%"></col></colgroup>
                            <tbody>
                                <tr class="header">
                                    <td nowrap="nowrap" align="center"><input id="$label10149$" class="Label" name="label10149" value="人員核算" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10150$" class="Label" name="label10150" value="部門核算" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10151$" class="Label" name="label10151" value="項(xiàng)目核算" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10152$" class="Label" name="label10152" value="客戶核算" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10153$" class="Label" name="label10153" value="金額" type="text" /></td>
                                </tr>
                                <tr>
                                    <td style="background-color: #e7e7e7"><input id="$field10149$" class="InputStyle" name="field10149" value="[可編輯]人員核算" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10150$" class="InputStyle" name="field10150" value="[可編輯]部門核算" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10151$" class="InputStyle" name="field10151" value="[可編輯]項(xiàng)目核算" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10152$" class="InputStyle" name="field10152" value="[可編輯]客戶核算" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10153$" class="InputStyle" name="field10153" value="[可編輯]金額" type="text" /></td>
                                </tr>
                            </tbody>
                        </table>
                        </td>
                    </tr>
                </tbody>
            </table>
            </div>
<!-- 明細(xì)表2數(shù)據(jù)加上 div-->
            <div style="display: none" id="detaildata2">
            <table style="width: 100%; word-wrap: break-word; left: 0px" id="table1button" class="form" name="table1button">
                <tbody>
                    <tr>
                        <td style="font-size: 0pt" height="15" colspan="2">&nbsp;</td>
                    </tr>
                    <tr>
                        <td align="left">&nbsp;</td>
                        <td align="right">
                        <div id="div1button"><button accesskey="A" id="$addbutton1$" class="BtnFlow" name="addbutton1" onclick="addRow1(1)"><u>A</u>-添加</button><button accesskey="E" id="$delbutton1$" class="BtnFlow" name="delbutton1" onclick="deleteRow1(1);"><u>E</u>-刪除</button></div>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="2">
                        <table style="width: 100%" id="oTable1" class="ListStyle" name="oTable1">
                            <colgroup><col width="25%"></col><col width="25%"></col><col width="25%"></col><col width="25%"></col></colgroup>
                            <tbody>
                                <tr class="header">
                                    <td nowrap="nowrap" align="center"><input id="$label10154$" class="Label" name="label10154" value="e1" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10155$" class="Label" name="label10155" value="e2" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10156$" class="Label" name="label10156" value="e3" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10157$" class="Label" name="label10157" value="e4" type="text" /></td>
                                </tr>
                                <tr>
                                    <td style="background-color: #e7e7e7"><input id="$field10154$" class="InputStyle" name="field10154" value="[可編輯]e1" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10155$" class="InputStyle" name="field10155" value="[可編輯]e2" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10156$" class="InputStyle" name="field10156" value="[可編輯]e3" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10157$" class="InputStyle" name="field10157" value="[可編輯]e4" type="text" /></td>
                                </tr>
                            </tbody>
                        </table>
                        </td>
                    </tr>
                </tbody>
            </table>
            </div>
<!-- 明細(xì)表3數(shù)據(jù)加上 div-->
            <div style="display: none" id="detaildata3">
            <table style="width: 100%; word-wrap: break-word; left: 0px" id="table2button" class="form" name="table2button">
                <tbody>
                    <tr>
                        <td style="font-size: 0pt" height="15" colspan="2">&nbsp;</td>
                    </tr>
                    <tr>
                        <td align="left">&nbsp;</td>
                        <td align="right">
                        <div id="div2button"><button accesskey="A" id="$addbutton2$" class="BtnFlow" name="addbutton2" onclick="addRow2(2)"><u>A</u>-添加</button><button accesskey="E" id="$delbutton2$" class="BtnFlow" name="delbutton2" onclick="deleteRow2(2);"><u>E</u>-刪除</button></div>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="2">
                        <table style="width: 100%" id="oTable2" class="ListStyle" name="oTable2">
                            <colgroup><col width="34%"></col><col width="33%"></col><col width="33%"></col></colgroup>
                            <tbody>
                                <tr class="header">
                                    <td nowrap="nowrap" align="center"><input id="$label10158$" class="Label" name="label10158" value="f1" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10159$" class="Label" name="label10159" value="f2" type="text" /></td>
                                    <td nowrap="nowrap" align="center"><input id="$label10160$" class="Label" name="label10160" value="f3" type="text" /></td>
                                </tr>
                                <tr>
                                    <td style="background-color: #e7e7e7"><input id="$field10158$" class="InputStyle" name="field10158" value="[可編輯]f1" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10159$" class="InputStyle" name="field10159" value="[可編輯]f2" type="text" /></td>
                                    <td style="background-color: #e7e7e7"><input id="$field10160$" class="InputStyle" name="field10160" value="[可編輯]f3" type="text" /></td>
                                </tr>
                            </tbody>
                        </table>
                        </td>
                    </tr>
                </tbody>
            </table>
            </div>
            </td>
        </tr>
    </tbody>
</table>
<!-- 下面這部分用來實(shí)現(xiàn)tab頁切換的js代碼-->
<script language="javascript">
function htmlChangeTab(obj,tabid){
jQuery("#maindata").hide();//隱藏主表數(shù)據(jù)
jQuery("#detaildata1").hide();//隱藏明細(xì)表1數(shù)據(jù)
jQuery("#detaildata2").hide();//隱藏明細(xì)表2數(shù)據(jù)
jQuery("#detaildata3").hide();//隱藏明細(xì)表3數(shù)據(jù)
 
jQuery("#"+tabid).show();//顯示點(diǎn)擊的tab頁數(shù)據(jù)
 
jQuery("li").removeClass("now");//刪除tab頁樣式
jQuery("#"+obj.id).addClass("now");//給當(dāng)前點(diǎn)擊的tab頁加上樣式
}
 
</script>
 
效果圖如下:
 
 
 
3) 泛普OA平臺(tái)綜合應(yīng)用
下面這個(gè)例子將的是,根據(jù)頁面上科目的值,到異構(gòu)系統(tǒng)去查詢?cè)摽颇坑心男┵x值核算項(xiàng),然后再在頁面上添加出對(duì)應(yīng)的輔助核算字段讓客戶填寫。
大家先看下實(shí)現(xiàn)的效果圖:
 
實(shí)現(xiàn)該功能的步驟如下:
實(shí)現(xiàn)改功能建議大家使用我們流程的自定義頁面來寫所需要的代碼。因?yàn)閷懽远x頁面,我們除了可以寫js代碼外,還能寫java代碼,這樣實(shí)現(xiàn)該功能就簡單化了。
第一步,先通過綁定事件對(duì)科目進(jìn)行綁定,添加一個(gè)監(jiān)聽事件
第二步,添加的監(jiān)聽事件,當(dāng)發(fā)現(xiàn)科目的值被修改時(shí),則通過ajax去訪問異構(gòu)系統(tǒng),查詢對(duì)應(yīng)的表,獲得當(dāng)前科目有哪些輔助核算項(xiàng)。
第三步,獲得了當(dāng)前科目有哪些輔助核算項(xiàng)之后,大家需要自己去寫出button的按鈕(這部分可以結(jié)合視頻一起觀看,容易理解些)。這個(gè)button按鈕的內(nèi)容其實(shí)就是要跟我們正常點(diǎn)添加明細(xì)行生成出來的button按鈕一樣。這樣做的一個(gè)好處是,我們不需要自己再去寫后臺(tái)保存輔助核算項(xiàng)的數(shù)據(jù)。
這個(gè)具體的實(shí)現(xiàn),大家可以觀看視頻,我們下面把實(shí)現(xiàn)該接口用到代碼和文檔建附件(巨人通力demo.rar)。
 
發(fā)布:2006-04-22 15:14    編輯:泛普軟件 · admin    [打印此頁]    [關(guān)閉]
相關(guān)文章:

相關(guān)欄目

泛普OA系統(tǒng)推廣 OA智能一體化 OA選型 OA制度 OA應(yīng)用 OA推薦 OA移動(dòng) OA銷售 有哪些OA 好用的OA OA怎么樣 OA哪家好 OA是什么 OA好處 OA作用 OA使用 OA優(yōu)點(diǎn) OA特點(diǎn) OA廠商 OA代理 OA系統(tǒng)對(duì)比 OA試用 免費(fèi)OA OA報(bào)價(jià) OA多少錢 OA注冊(cè) 簡單的OA OA網(wǎng)站 OA技術(shù) OA維護(hù) OA集成 OA介紹 手機(jī)辦公app 在線OA OA與ERP 辦公室OA OA企業(yè)單位 OA集團(tuán)公司 OA表單 OA模塊 OA辦公系統(tǒng) OA功能 即時(shí)通訊 OA辦公軟件 OA問題 辦公管理 OA登陸 泛普OA市場(chǎng)分析 OA辦公系統(tǒng)哪個(gè)好 泛普OA系統(tǒng)演示 OA軟件招投標(biāo) 泛普OA軟件案例 泛普代理商 國內(nèi)OA辦公系統(tǒng)品牌排名 泛普OA軟件價(jià)格 云OA軟件及OA租賃 OA網(wǎng)絡(luò)營銷推廣 OA軟件人員招聘 OA辦公協(xié)同系統(tǒng) OA辦公自動(dòng)化 OA辦公系統(tǒng)是什么 OA軟件知識(shí)