<html>
|
<head>
|
<meta charset="utf-8">
|
<title>团队粉丝</title>
|
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
|
<link rel="stylesheet" type="text/css" href="../teamFans/css/fansSearchMain.css" />
|
<script>
|
window.onresize = function() {
|
document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
|
};
|
window.onresize();
|
</script>
|
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
|
<script src="http://img.flqapp.com/resource/js/app2019112217.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
</head>
|
<body>
|
<div id="root">
|
<div class="div_search">
|
<div class="div_search_gary">
|
<img src="img/icon_search.png">
|
<input class="inputc" type="text" placeholder="输入快省ID/订单号" />
|
</div>
|
<div class="div_search_button" @click="touchSearch">
|
搜索
|
</div>
|
</div>
|
|
<div class="div_historySearch">
|
<div class="historySearch">
|
历史搜索
|
</div>
|
<div class="clearSearch">
|
清空
|
</div>
|
</div>
|
|
<div class="div_item_bg">
|
<div class="items" v-for="(item, index) in dataList">
|
<div class="div_topHeader" style="height: 0.16rem;"></div>
|
<div class="div_garyBG">
|
<p>{{item}}</p>
|
</div>
|
<img src="img/icon_close.png" class="imageClose">
|
<div class="div_closeClick" @click="deleteList(index)"></div>
|
</div>
|
</div>
|
</div>
|
</body>
|
|
<script>
|
// "http://api.flqapp.com";
|
var host = "http://192.168.1.253:8080";
|
$(function() {
|
var app = new Vue({
|
el: '#root',
|
data: {
|
buttonName: '提交预览',
|
dataList: ['26521651652161631561615656',
|
'26521651652161631561615656',
|
'26521651652161631561615656'
|
|
],
|
},
|
watch: {},
|
methods: {
|
deleteList: function(index) {
|
yesApp.toast('delete')
|
},
|
|
touchSearch: function() {
|
yesApp.jumpWeb('http://192.168.1.114:8848/flqFront/AppInside/teamOrder/orderSearchResult.html', null)
|
}
|
}
|
});
|
|
});
|
</script>
|
</html>
|