appUrl.html
2.41 KB
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
<!DOCTYPE html>
<div id="tt" class="easyui-layout" fit="true" style="height: 90%;display:flex;justify-content:left;align-items:center;" >
<div class="rows" style="margin-left: 20px">
<div >
<label>选择跳转目的地:</label>
<div >
<input id="goTo" name="goTo" class="easyui-combobox" style="width:600px; "/>
</div>
</div>
<div >
<label >跳转地址:</label>
<div >
<input id="goToUrl" style="width:600px;" class="easyui-textbox" placeholder="跳转地址"/>
</div>
</div>
</div>
</div>
<div region="center" id="labelGroupList" style="margin-left: 20px">
</div>
<script>
$("#goTo").combobox({
valueField : "value",
textField : "text",
required:false,
prompt: "选择跳转目的",
// data:[{text:"品牌列表页",value:"go.brand"},{text: "商品详情页", value: "go.productDetail"},
// {text: "优惠券页", value: "go.coupon"}, {text: "收藏列表页", value: "go.fav"}, {text: "我的页面", value: "go.mine"},
// {text: "列表或搜索页", value: "go.list"}, {text: "关注页", value: "go.attention"},
// {text: "plus页", value: "go.plus"},{text: "star页", value: "o.star"},{value: "go.new",text:"新品到着页"},
// {value: "go.sale",text:"折扣页"},{value: "go.h5",text:"h5网页"},{value: "go.guangchannel",text:"逛频道"},
// {value: "go.gender",text:"男女首页"}, {value: "go.activity",text:"app活动页"}, {value: "go.home",text:"频道首页"},
// {value: "go.yohood",text:"YOHOOD"}, {value: "go.top100",text:"热销排行"}, {value: "go.activitytemplate",text:",活动模板"},
// {value: "go.globalpurchase",text: "全球购"}, {value: "go.subchannel",text: "二级频道"}, {value: "go.guangchannel",text: "逛频道或SHOW晒单页"},
// {value: "go.showgoods",text: "去晒单"}, {value: "go.limitpurchase",text: "尖货频道"}, {value: "go.vippro",text: "会员商品"},
// {value: "go.shortsize",text: "断码页"}, {value: "go.discountmarket",text: "折扣专区"}, {value: "go.discountmarketpro",text: "折扣专区详情页"}]
data:[{value: "go.h5",text:"h5网页"}]
});
$(function () {
$("#goTo").combobox("setValue", "go.h5");
});
</script>