功能区数据采集
This commit is contained in:
@@ -8,24 +8,24 @@
|
||||
<a-row>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="年份:">
|
||||
<a-select v-model:value="where.monitorYear" placeholder="年份">
|
||||
<a-select v-model:value="where.monitorYear" placeholder="选择年份">
|
||||
<a-select-option v-for="(o) in yearOptions" :key="o" :value="o">{{o}}</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="季度:">
|
||||
<a-select v-model:value="where.monitorQuarter" placeholder="选择季度">
|
||||
<a-select-option v-for="(o) in quarterOptions" :key="o.value" :value="o.value">{{o.label}}</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="昼夜:">
|
||||
<a-select :options="timeSlotOptions" v-model:value="where.timeSlot" placeholder="昼夜">
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="8" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="时间范围:">
|
||||
<!-- <a-month-picker v-model:value="timeScope" placeholder="起始" /> -->
|
||||
<a-range-picker v-model:value="timeScope" format="YYYY-MM-DD" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
<a-col :lg="4" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
|
||||
<a-space>
|
||||
@@ -322,6 +322,21 @@
|
||||
|
||||
},
|
||||
data() {
|
||||
const quarterOptions = [{
|
||||
label: "第一季度",
|
||||
value: 1
|
||||
},
|
||||
{
|
||||
label: "第二季度",
|
||||
value: 2
|
||||
},
|
||||
{
|
||||
label: "第三季度",
|
||||
value: 3
|
||||
},{
|
||||
label: "第四季度",
|
||||
value: 4
|
||||
}];
|
||||
return {
|
||||
url: pageRoadNoiseStatisticUrl,
|
||||
data: [],
|
||||
@@ -344,6 +359,7 @@
|
||||
label: "市"
|
||||
}],
|
||||
yearOptions: [],
|
||||
quarterOptions,
|
||||
timeSlotOptions: [{
|
||||
value: "昼",
|
||||
label: "昼"
|
||||
|
||||
Reference in New Issue
Block a user