12.24iMobile管理页面添加(前端改)
一、页面新增tab:面向移动端开发者
###1.页面添加
html
limitedTimeLicense_zh_CN.html
limitedTimeLicense.html
<li><a id="mobile_content" href="#mobile">面向移动端开发者</a></li>
<li><a id="mobile_content" href="#mobile">For mobile developers</a></li>###2.js修改
js
limitTimeLicense.js
1. 122 点击事件
$("#desktop_content, #web_content, #object_content,#mobile_content").on("click", function() {
...
}
2. 3 catagoy 分类新增
var catagory = {
"desktop" : "5",
"web" : "6",
"object" : "8",
"mobile" : "9"
};catagory : 9 是 之前的mobile设置的分类。###3.管理页面添加
html
cloudLicenseAddManage_zh_CN.html
cloudLicenseAddManage.html
53行
<input id="category4" type="radio" value="9" name="category"/>
<label for="category4" class="category">面向移动端开发</label>