|
@@ -15,10 +15,11 @@
|
|
|
<image :src="'https://www.hnyfwlw.com:8006/bigdata_app'+'/image/cb/banner.jpg'" mode="widthFix"></image>
|
|
<image :src="'https://www.hnyfwlw.com:8006/bigdata_app'+'/image/cb/banner.jpg'" mode="widthFix"></image>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="tab-box">
|
|
<view class="tab-box">
|
|
|
- <view v-for="(item,index) in equipArr" :key="item.type" v-if="item.tf" @click="tabClick(index)" :class="['tab-item',active==index?'active':'']">
|
|
|
|
|
- <text>{{item.name}}</text>
|
|
|
|
|
|
|
+ <view v-for="(item,index) in equipArr" :key="index" @click="tabClick(index,item)" :class="['tab-item',active==index?'active':'']">
|
|
|
|
|
+ <text>{{item.type_name}}</text>
|
|
|
<text class="bottom-line"></text>
|
|
<text class="bottom-line"></text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <!-- <u-tabs :list="equipArr" :current="active" active-color="#14A478" @change="tabClick"></u-tabs> -->
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="loading" v-if="loadingtf">
|
|
<view class="loading" v-if="loadingtf">
|
|
@@ -26,7 +27,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
<view class="" style="position: absolute;top: 190px;width: 100%;">
|
|
<view class="" style="position: absolute;top: 190px;width: 100%;">
|
|
|
<view class="content">
|
|
<view class="content">
|
|
|
- <template v-for="(item,index) in equipArr[active].list">
|
|
|
|
|
|
|
+ <template v-for="(item,index) in equipArr[active].list" >
|
|
|
<equipItem @click.native="itemClick(item)" v-bind:item="item" :key="index">
|
|
<equipItem @click.native="itemClick(item)" v-bind:item="item" :key="index">
|
|
|
<view class="date">
|
|
<view class="date">
|
|
|
<p>设备ID:{{item.imei||item.device_id}}</p>
|
|
<p>设备ID:{{item.imei||item.device_id}}</p>
|
|
@@ -52,20 +53,23 @@
|
|
|
<view class="backtop" @click="top" v-if="isTop">
|
|
<view class="backtop" @click="top" v-if="isTop">
|
|
|
<image src="../../../static/images/1.png" mode="" class="img0"></image>
|
|
<image src="../../../static/images/1.png" mode="" class="img0"></image>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
<view class="more">
|
|
<view class="more">
|
|
|
- <view class="box" @click="online" v-show="filtrateTF">
|
|
|
|
|
|
|
+ <view class="box" @click="findSearch(1)" v-show="filtrateTF">
|
|
|
<p>在线</p>
|
|
<p>在线</p>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="box" @click="offline" v-show="filtrateTF">
|
|
|
|
|
|
|
+ <view class="box" @click="findSearch(0)" v-show="filtrateTF">
|
|
|
<p>离线</p>
|
|
<p>离线</p>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="box" @click="complete" v-show="filtrateTF">
|
|
|
|
|
|
|
+ <view class="box" @click="findSearch('')" v-show="filtrateTF">
|
|
|
<p>全部</p>
|
|
<p>全部</p>
|
|
|
</view>
|
|
</view>
|
|
|
<view @click="filtrate">
|
|
<view @click="filtrate">
|
|
|
<image src="../../../static/images/b0bcdb0e3fe8690520f743aa8303bf2.png" mode="" class="img1"></image>
|
|
<image src="../../../static/images/b0bcdb0e3fe8690520f743aa8303bf2.png" mode="" class="img1"></image>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
@@ -78,112 +82,34 @@
|
|
|
return {
|
|
return {
|
|
|
active: 0, //默认选中虫情测报
|
|
active: 0, //默认选中虫情测报
|
|
|
equipArr: [{
|
|
equipArr: [{
|
|
|
- name: '虫情测报',
|
|
|
|
|
- type: 3, //3虫情测报灯 7孢子仪 4智能性诱
|
|
|
|
|
- list: [],
|
|
|
|
|
- pageIndex: 1,
|
|
|
|
|
- tf:false,
|
|
|
|
|
- }, {
|
|
|
|
|
- name: '孢子仪',
|
|
|
|
|
- type: 7, //3虫情测报灯 7孢子仪 4智能性诱
|
|
|
|
|
- list: [],
|
|
|
|
|
- pageIndex: 1,
|
|
|
|
|
- tf:false,
|
|
|
|
|
- }, {
|
|
|
|
|
- name: '性诱测报',
|
|
|
|
|
- type: 4, //3虫情测报灯 7孢子仪 4智能性诱
|
|
|
|
|
- list: [],
|
|
|
|
|
- pageIndex: 1,
|
|
|
|
|
- tf:false,
|
|
|
|
|
- device_model: 1
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- name: '性诱2.0',
|
|
|
|
|
- type: 10, //3虫情测报灯 7孢子仪 4智能性诱 性诱2.0
|
|
|
|
|
- list: [],
|
|
|
|
|
- pageIndex: 1,
|
|
|
|
|
- tf:false
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- name: '性诱3.0',
|
|
|
|
|
- type: 8, //3虫情测报灯 7孢子仪 4智能性诱 性诱2.0
|
|
|
|
|
- list: [],
|
|
|
|
|
- pageIndex: 1,
|
|
|
|
|
- tf: false
|
|
|
|
|
- }, {
|
|
|
|
|
- name: '吸虫塔',
|
|
|
|
|
- type: 12, //3虫情测报灯 7孢子仪 4智能性诱 性诱2.0
|
|
|
|
|
- list: [],
|
|
|
|
|
- pageIndex: 1,
|
|
|
|
|
- tf: false
|
|
|
|
|
- }, {
|
|
|
|
|
- name: '病虫害可视监测',
|
|
|
|
|
- type: 14, //3虫情测报灯 7孢子仪 4智能性诱 性诱2.0
|
|
|
|
|
- list: [],
|
|
|
|
|
- pageIndex: 1,
|
|
|
|
|
- tf: false
|
|
|
|
|
- }
|
|
|
|
|
- ],
|
|
|
|
|
- device_id: '3', //筛选的设备id
|
|
|
|
|
|
|
+ name: ''
|
|
|
|
|
+ }],
|
|
|
isTop: false,
|
|
isTop: false,
|
|
|
filtrateTF:false,
|
|
filtrateTF:false,
|
|
|
device_status:"",
|
|
device_status:"",
|
|
|
loadingtf:false,//设备列表加载中
|
|
loadingtf:false,//设备列表加载中
|
|
|
- device_type:"3",
|
|
|
|
|
|
|
+ device_type:3,
|
|
|
show: false,
|
|
show: false,
|
|
|
title: "",
|
|
title: "",
|
|
|
content: "",
|
|
content: "",
|
|
|
|
|
+ searchinput:'',
|
|
|
|
|
+ data:{search:''}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
- onLoad() {
|
|
|
|
|
- uni.getStorage({
|
|
|
|
|
- key:"jurisdiction",
|
|
|
|
|
- success:(res)=>{
|
|
|
|
|
- let items = JSON.parse(res.data).filter((item) => {
|
|
|
|
|
- return item.pur_id == 36
|
|
|
|
|
- })
|
|
|
|
|
- var arr = items[0].children
|
|
|
|
|
- for (var i = 0; i < arr.length; i++) {
|
|
|
|
|
- switch (arr[i].pur_id) {
|
|
|
|
|
- case 37:
|
|
|
|
|
- this.equipArr[0].tf = true //"虫情测报灯"
|
|
|
|
|
- this.getEquipList(0)
|
|
|
|
|
- break
|
|
|
|
|
- case 38:
|
|
|
|
|
- this.equipArr[2].tf = true //"性诱测报"
|
|
|
|
|
- this.getEquipList(2)
|
|
|
|
|
- break
|
|
|
|
|
- case 39:
|
|
|
|
|
- this.equipArr[1].tf = true //"孢子仪"
|
|
|
|
|
- this.getEquipList(1)
|
|
|
|
|
- break
|
|
|
|
|
- case 161:
|
|
|
|
|
- this.equipArr[3].tf = true //"性诱2.0"
|
|
|
|
|
- this.getxyEquipList(3)
|
|
|
|
|
- break
|
|
|
|
|
- case 198:
|
|
|
|
|
- this.equipArr[4].tf = true //"性诱2.0"
|
|
|
|
|
- this.getthxyEquipList(4)
|
|
|
|
|
- break
|
|
|
|
|
- case 171:
|
|
|
|
|
- this.equipArr[5].tf = true //"性诱3.0"
|
|
|
|
|
- this.getxctEquipList(5)
|
|
|
|
|
- break
|
|
|
|
|
- case 167:
|
|
|
|
|
- this.equipArr[6].tf = true //"性诱3.0"
|
|
|
|
|
- this.getEquipList(6)
|
|
|
|
|
- break
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- for(var i=0;i<this.equipArr.length;i++){
|
|
|
|
|
- if(this.equipArr[i].tf){
|
|
|
|
|
- this.active = i
|
|
|
|
|
- this.device_type = this.equipArr[i].type
|
|
|
|
|
- break
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ computed:{
|
|
|
|
|
+ tabActiveStyle(){
|
|
|
|
|
+ return {
|
|
|
|
|
+ color: '#303133',
|
|
|
|
|
+ fontWeight: 'bold'
|
|
|
}
|
|
}
|
|
|
- })
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ onLoad() {
|
|
|
|
|
+ this.equipArr = [{
|
|
|
|
|
+ name: ''
|
|
|
|
|
+ }]
|
|
|
|
|
+ this.usertype()
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
onShow() {
|
|
onShow() {
|
|
|
|
|
|
|
@@ -241,12 +167,38 @@
|
|
|
return true;
|
|
return true;
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ search(){
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ //获取用户测报设备列表
|
|
|
|
|
+ async usertype() {
|
|
|
|
|
+ const res = await this.$myRequest({
|
|
|
|
|
+ url: '/api/api_gateway?method=home.homes.user_device_type',
|
|
|
|
|
+ data:{
|
|
|
|
|
+ model:'测报'
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ console.log('设备列表',res)
|
|
|
|
|
+ // this.equipArr = res
|
|
|
|
|
+ this.equipArr.shift()
|
|
|
|
|
+ res.forEach(item=>{
|
|
|
|
|
+ item.name=item.type_name
|
|
|
|
|
+ item.list = []
|
|
|
|
|
+ item.pageIndex = 1
|
|
|
|
|
+ this.equipArr.push(item)
|
|
|
|
|
+ })
|
|
|
|
|
+ if (res.length) {
|
|
|
|
|
+ this.device_type =this.equipArr[0].id
|
|
|
|
|
+ this.choosePOST()
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
async getEquipList(act) {
|
|
async getEquipList(act) {
|
|
|
|
|
+
|
|
|
this.loadingtf = true
|
|
this.loadingtf = true
|
|
|
const res = await this.$myRequest({
|
|
const res = await this.$myRequest({
|
|
|
url: '/api/api_gateway?method=forecast.worm_lamp.lamp_list',
|
|
url: '/api/api_gateway?method=forecast.worm_lamp.lamp_list',
|
|
|
data: {
|
|
data: {
|
|
|
- device_type_id: this.equipArr[act].type,
|
|
|
|
|
|
|
+ device_type_id: this.equipArr[act].id,
|
|
|
page: this.equipArr[act].pageIndex,
|
|
page: this.equipArr[act].pageIndex,
|
|
|
page_size: 10,
|
|
page_size: 10,
|
|
|
device_status:this.device_status,
|
|
device_status:this.device_status,
|
|
@@ -268,14 +220,15 @@
|
|
|
this.equipArr[act].list[i]['device_expiretext'] = "即将到期"
|
|
this.equipArr[act].list[i]['device_expiretext'] = "即将到期"
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- console.log(this.equipArr[act].list)
|
|
|
|
|
|
|
+ console.log('处理后的结果',this.equipArr[act].list)
|
|
|
},
|
|
},
|
|
|
|
|
+ // 性诱2.0
|
|
|
async getxyEquipList(act) {
|
|
async getxyEquipList(act) {
|
|
|
this.loadingtf = true
|
|
this.loadingtf = true
|
|
|
const res = await this.$myRequest({
|
|
const res = await this.$myRequest({
|
|
|
url: '/api/api_gateway?method=sex_lure_nl.sex_lure.nl_device_list',
|
|
url: '/api/api_gateway?method=sex_lure_nl.sex_lure.nl_device_list',
|
|
|
data: {
|
|
data: {
|
|
|
- device_type_id: this.equipArr[act].type,
|
|
|
|
|
|
|
+ device_type_id: this.equipArr[act].id,
|
|
|
page: this.equipArr[act].pageIndex,
|
|
page: this.equipArr[act].pageIndex,
|
|
|
page_size: 10,
|
|
page_size: 10,
|
|
|
device_status:this.device_status
|
|
device_status:this.device_status
|
|
@@ -286,12 +239,13 @@
|
|
|
this.equipArr[act].list = [...this.equipArr[act].list, ...res.data]
|
|
this.equipArr[act].list = [...this.equipArr[act].list, ...res.data]
|
|
|
console.log(this.equipArr[act].list)
|
|
console.log(this.equipArr[act].list)
|
|
|
},
|
|
},
|
|
|
|
|
+ // 性诱3.0
|
|
|
async getthxyEquipList(act) {
|
|
async getthxyEquipList(act) {
|
|
|
this.loadingtf = true
|
|
this.loadingtf = true
|
|
|
const res = await this.$myRequest({
|
|
const res = await this.$myRequest({
|
|
|
url: '/api/api_gateway?method=forecast.worm_lamp.xy_three_list',
|
|
url: '/api/api_gateway?method=forecast.worm_lamp.xy_three_list',
|
|
|
data: {
|
|
data: {
|
|
|
- device_type_id: this.equipArr[act].type,
|
|
|
|
|
|
|
+ device_type_id: this.equipArr[act].id,
|
|
|
page: this.equipArr[act].pageIndex,
|
|
page: this.equipArr[act].pageIndex,
|
|
|
page_size: 10,
|
|
page_size: 10,
|
|
|
device_status: this.device_status,
|
|
device_status: this.device_status,
|
|
@@ -302,12 +256,13 @@
|
|
|
this.equipArr[act].list = [...this.equipArr[act].list, ...res.data]
|
|
this.equipArr[act].list = [...this.equipArr[act].list, ...res.data]
|
|
|
console.log(this.equipArr[act].list)
|
|
console.log(this.equipArr[act].list)
|
|
|
},
|
|
},
|
|
|
|
|
+ // 吸虫塔
|
|
|
async getxctEquipList(act) {
|
|
async getxctEquipList(act) {
|
|
|
this.loadingtf = true
|
|
this.loadingtf = true
|
|
|
const res = await this.$myRequest({
|
|
const res = await this.$myRequest({
|
|
|
url: '/api/api_gateway?method=forecast.worm_lamp.xct_list',
|
|
url: '/api/api_gateway?method=forecast.worm_lamp.xct_list',
|
|
|
data: {
|
|
data: {
|
|
|
- device_type_id: this.equipArr[act].type,
|
|
|
|
|
|
|
+ device_type_id: this.equipArr[act].id,
|
|
|
page: this.equipArr[act].pageIndex,
|
|
page: this.equipArr[act].pageIndex,
|
|
|
page_size: 10,
|
|
page_size: 10,
|
|
|
device_status: this.device_status,
|
|
device_status: this.device_status,
|
|
@@ -319,19 +274,42 @@
|
|
|
console.log(this.equipArr[act].list)
|
|
console.log(this.equipArr[act].list)
|
|
|
},
|
|
},
|
|
|
tabClick(index) {
|
|
tabClick(index) {
|
|
|
|
|
+
|
|
|
this.active = index;
|
|
this.active = index;
|
|
|
- this.device_id = this.equipArr[index].type
|
|
|
|
|
- this.device_type = this.equipArr[index].type
|
|
|
|
|
|
|
+ this.device_type = this.equipArr[index].id
|
|
|
|
|
+ this.choosePOST()
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ choosePOST(){
|
|
|
|
|
+ let index = this.active
|
|
|
|
|
+ let typeId = this.device_type
|
|
|
|
|
+ if(typeId == 10){
|
|
|
|
|
+ // 性诱2.0
|
|
|
|
|
+ this.getxyEquipList(index)
|
|
|
|
|
+ }else if(typeId == 8){
|
|
|
|
|
+ // 性诱3.0
|
|
|
|
|
+ this.getthxyEquipList(index)
|
|
|
|
|
+ }else if(typeId == 12){
|
|
|
|
|
+ // 吸虫塔
|
|
|
|
|
+ this.getxctEquipList(index)
|
|
|
|
|
+ }
|
|
|
|
|
+ else{
|
|
|
|
|
+ // 测报接口
|
|
|
|
|
+ this.getEquipList(index)
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
clickRight() {
|
|
clickRight() {
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
- url: "./search?device_id=" + this.device_id
|
|
|
|
|
|
|
+ url: "./search?device_id=" + this.device_type
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
itemClick(itemOld) {
|
|
itemClick(itemOld) {
|
|
|
let item = JSON.parse(JSON.stringify(itemOld))
|
|
let item = JSON.parse(JSON.stringify(itemOld))
|
|
|
- item.type = this.equipArr[this.active].type
|
|
|
|
|
|
|
+ item.type= this.equipArr[this.active].id
|
|
|
|
|
+ item.pur_id = this.equipArr[this.active].pur_id||0
|
|
|
let data = JSON.stringify(item)
|
|
let data = JSON.stringify(item)
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
if (item.type == 10) {
|
|
if (item.type == 10) {
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
url: '/pages/cb/xy2.0/particulars?info=' + data
|
|
url: '/pages/cb/xy2.0/particulars?info=' + data
|
|
@@ -349,6 +327,10 @@
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
url: '/pages/cb/sy/detail?detail=' + data
|
|
url: '/pages/cb/sy/detail?detail=' + data
|
|
|
});
|
|
});
|
|
|
|
|
+ }else if (item.type == 32||item.type == 33||item.type == 34||item.type == 35) {
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ url: '/pages/cb/equip-detail/equip-detail-new?info=' + data
|
|
|
|
|
+ });
|
|
|
} else{
|
|
} else{
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
url: '/pages/cb/equip-detail/equip-detail?info=' + data
|
|
url: '/pages/cb/equip-detail/equip-detail?info=' + data
|
|
@@ -369,49 +351,12 @@
|
|
|
duration: 500
|
|
duration: 500
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
- online(){
|
|
|
|
|
- this.equipArr[this.active].pageIndex=1
|
|
|
|
|
- this.equipArr[this.active].list =[]
|
|
|
|
|
- this.device_status = 1
|
|
|
|
|
- if (this.active == 4) {
|
|
|
|
|
- this.getthxyEquipList(4)
|
|
|
|
|
- } else if (this.active == 5) {
|
|
|
|
|
- this.getxctEquipList(5)
|
|
|
|
|
- } else if (this.active == 3) {
|
|
|
|
|
- this.getxyEquipList(3)
|
|
|
|
|
- } else {
|
|
|
|
|
- this.getEquipList(this.active)
|
|
|
|
|
- }
|
|
|
|
|
- this.filtrateTF = !this.filtrateTF
|
|
|
|
|
- },
|
|
|
|
|
- offline(){
|
|
|
|
|
- this.equipArr[this.active].pageIndex=1
|
|
|
|
|
- this.equipArr[this.active].list =[]
|
|
|
|
|
- this.device_status = 0
|
|
|
|
|
- if (this.active == 4) {
|
|
|
|
|
- this.getthxyEquipList(4)
|
|
|
|
|
- } else if (this.active == 5) {
|
|
|
|
|
- this.getxctEquipList(5)
|
|
|
|
|
- } else if (this.active == 3) {
|
|
|
|
|
- this.getxyEquipList(3)
|
|
|
|
|
- } else {
|
|
|
|
|
- this.getEquipList(this.active)
|
|
|
|
|
- }
|
|
|
|
|
- this.filtrateTF = !this.filtrateTF
|
|
|
|
|
- },
|
|
|
|
|
- complete(){
|
|
|
|
|
|
|
+ findSearch(device_status){
|
|
|
|
|
+
|
|
|
|
|
+ this.device_status = device_status
|
|
|
this.equipArr[this.active].pageIndex=1
|
|
this.equipArr[this.active].pageIndex=1
|
|
|
this.equipArr[this.active].list =[]
|
|
this.equipArr[this.active].list =[]
|
|
|
- this.device_status = ""
|
|
|
|
|
- if (this.active == 4) {
|
|
|
|
|
- this.getthxyEquipList(4)
|
|
|
|
|
- } else if (this.active == 5) {
|
|
|
|
|
- this.getxctEquipList(5)
|
|
|
|
|
- } else if (this.active == 3) {
|
|
|
|
|
- this.getxyEquipList(3)
|
|
|
|
|
- } else {
|
|
|
|
|
- this.getEquipList(this.active)
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ this.choosePOST()
|
|
|
this.filtrateTF = !this.filtrateTF
|
|
this.filtrateTF = !this.filtrateTF
|
|
|
},
|
|
},
|
|
|
examine(e) {
|
|
examine(e) {
|
|
@@ -468,7 +413,7 @@
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.bases_search {
|
|
.bases_search {
|
|
|
- width: 60%;
|
|
|
|
|
|
|
+ width: 80%;
|
|
|
background-color: #FFFFFF;
|
|
background-color: #FFFFFF;
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
top: 10rpx;
|
|
top: 10rpx;
|
|
@@ -495,6 +440,14 @@
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+ // .tab-box {
|
|
|
|
|
+ // font-size: 30rpx;
|
|
|
|
|
+ // line-height: 80rpx;
|
|
|
|
|
+ // background-color: #ffffff;
|
|
|
|
|
+ // width: 100vw;
|
|
|
|
|
+ // z-index: 2;
|
|
|
|
|
+ // margin-top: -10rpx;
|
|
|
|
|
+ // }
|
|
|
.tab-box {
|
|
.tab-box {
|
|
|
// position: fixed;
|
|
// position: fixed;
|
|
|
// top: 170px;
|
|
// top: 170px;
|
|
@@ -532,7 +485,6 @@
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
.top {
|
|
.top {
|
|
|
position: fixed;
|
|
position: fixed;
|
|
|
right: 10px;
|
|
right: 10px;
|