check.vue
4.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<template>
<view>
<!-- 顶部区域 -->
<check-top-wrap @changeParamType="changeParamType" :yearVal="yearTxt" :keyword="keyword" :cityVal="basinTxt" @showPicker="showPicker"></check-top-wrap>
<w-picker
:visible.sync="visibleYear"
mode="date"
:current="true"
fields="year"
@confirm="onConfirm($event,'year')"
@cancel="onCancel"
:disabled-after="false"
ref="date"
>选择年份</w-picker>
<w-picker
:visible.sync="visibleRegion"
mode="region"
:value="defaultRegion"
default-type="label"
:hide-area="true"
@confirm="onConfirm($event,'region')"
@cancel="onCancel"
ref="region"
>选择地区</w-picker>
<view class="factoryList">
<navigator class="factoryItem" v-for="(item,index) in list" :key="index" :url="'factoryDetail?factoryName='+item.OWNERCOMPANY+'&companyid='+item.companyid" hover-class="none">
<view class="factoryLeft">
<view class="factoryNum">
{{index + 1}}
</view>
</view>
<view class="factoryRight">
<view class="factoryName">
{{item.OWNERCOMPANY}}
</view>
<view class="typeAddress">
{{item.TYPE}}
<view class="address">
{{item.PROVINCE}}
</view>
</view>
<view class="factoryDate">
{{item.MISSIONTM}}
</view>
</view>
</navigator>
</view>
</view>
</template>
<script>
import checkTopWrap from '@/components/checkTopWrap.vue'
import wPicker from "@/components/w-picker/w-picker.vue"
import {mapState} from "vuex"
export default {
data() {
return {
yearTxt:new Date().getFullYear().toString(),
basinTxt:'全流域',
param:{
// 恢复位置
year:new Date().getFullYear().toString(),
basin:'',
type:'',
companyName:this.$store.state.keyword
},
list:[],
visibleYear:false,
visibleRegion:false,
defaultRegion:[]
}
},
components:{
checkTopWrap,
wPicker
},
computed:{
...mapState(["keyword"])
},
onReady() {
if(this.keyword != ''){
uni.setNavigationBarTitle({
title:'搜索'
})
uni.setNavigationBarColor({
frontColor: '#000000',
backgroundColor: '#ffffff'
})
}
},
onLoad() {
//#ifdef APP-PLUS
/* uni.getLocation({
type: 'gcj02',
geocode: true,
success: (res) => {
this.param.basin = res.address.city
this.basinTxt = res.address.city
this.defaultRegion = [res.address.province,res.address.city]
}
}); */
//#endif
//#ifdef H5
// 恢复位置
// this.defaultRegion = ['全流域','']
//#endif
this.param.basin = ''
this.basinTxt = '全流域'
this.defaultRegion = ['全流域','']
this.getData()
},
methods: {
getData(){
uni.showLoading({
title:'加载中'
})
uni.request({
url:this.apiUrl+'license/list',
data:this.param,
success: (res) => {
this.list = res.data.data
uni.hideLoading()
}
})
},
changeParamType(e){
if(e.tabIndex == -1){
this.param.type = ''
this.getData()
}else{
this.param.type = e.tabIndex.toString()
this.getData()
}
},
showPicker(e){
if(e.pickerType == 'year'){
this.visibleYear = true
}
if(e.pickerType == 'region'){
this.visibleRegion = true
}
},
onCancel(){
},
onConfirm(e,pickerType){
console.log(e.result)
if(pickerType == 'year'){
if(e.result == '全'){
this.param.year = ''
this.yearTxt = '全'
}else{
this.param.year = e.result
this.yearTxt = e.result
}
}
if(pickerType == 'region'){
if(e.obj.city.label != ''){
this.param.basin = e.obj.city.label
this.basinTxt = e.obj.city.label
}else{
this.param.basin = ''
this.basinTxt = '全流域'
}
}
this.getData()
}
}
}
</script>
<style>
page{background: #f7f8fa;}
/* 厂家列表区域 */
.factoryList{padding: 24rpx 32rpx;}
.factoryList .factoryItem{padding: 32rpx 32rpx 36rpx 0;border-radius: 24rpx;background: #fff;margin-top: 24rpx;display: flex;}
.factoryList .factoryItem:nth-child(1){margin-top: 0;}
.factoryItem .factoryLeft{width: 92rpx;}
.factoryLeft .factoryNum{background: #f2f3f5;width: 52rpx;height: 40rpx;text-align: center;line-height: 40rpx;font-size: 28rpx;color: #646566;border-radius: 0 30rpx 30rpx 0;}
.factoryItem .factoryRight{flex: 1;}
.factoryRight .factoryName{font-size: 36rpx;}
.factoryRight .typeAddress{display: flex;padding-top: 24rpx;font-size: 28rpx;color: #969799;align-items: center;}
.typeAddress .address{margin-left: 24rpx;padding: 0 5rpx;height: 32rpx;background: #e6faf1;border-radius: 8rpx;text-align: center;line-height: 32rpx;font-size: 24rpx;color: #6fc393;}
.factoryRight .factoryDate{font-size: 24rpx;color: #c8c9cc;padding-top: 4rpx;}
</style>