You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
$(function () {
|
|
'use strict';
|
|
|
|
var sLang = $('[http-equiv="content-language"]').attr('content') || 'zh',
|
|
bEn = sLang === 'en',
|
|
/*
|
|
* 目的 抓去展示圖片
|
|
*/
|
|
fnGetPicShow = function (org) {
|
|
return g_api.ConnectLite(Service.apiappcom, ComFn.GetFileList, {
|
|
ParentID: bEn ? org.PicShowId_EN : org.PicShowId_CN
|
|
}, function (res) {
|
|
if (res.RESULT) {
|
|
var saRes = res.DATA.rel,
|
|
sHtml = $('#temp_aboutpic').render(saRes);
|
|
if (saRes.length > 0) {
|
|
$('.aboutPic').html(sHtml + '<p class="clear"> </p>');
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/*
|
|
* 目的 設置簡介
|
|
*/
|
|
fnSetIntroduction = function (org) {
|
|
if (bEn) {
|
|
if (org.Introduction_EN) {
|
|
$('#Introduction').html(org.Introduction_EN);
|
|
}
|
|
}
|
|
else {
|
|
if (org.Introduction_CN) {
|
|
$('#Introduction').html(org.Introduction_CN);
|
|
}
|
|
}
|
|
},
|
|
init = function () {
|
|
var myHelpers = {
|
|
setFilePath: function (val) {
|
|
val = val || '';
|
|
return gServerUrl + '/' + val.replace(/\\/g, "\/");
|
|
}
|
|
};
|
|
$.views.helpers(myHelpers);
|
|
|
|
runByOrgInfo(fnSetIntroduction, true);
|
|
runByOrgInfo(fnGetPicShow);
|
|
};
|
|
|
|
init();
|
|
});
|