|
@@ -35,7 +35,7 @@
|
|
|
@change="onStartDateChange"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in 15 - endDate + 1"
|
|
|
+ v-for="item in 60"
|
|
|
:key="item"
|
|
|
:label="item === 1 ? '今天' : item === 2 ? '明天' : `第${item}天`"
|
|
|
:value="item"
|
|
@@ -50,7 +50,7 @@
|
|
|
@change="onEndDateChange"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in 15 - startDate + 1"
|
|
|
+ v-for="item in 60 - startDate + 1"
|
|
|
:key="item + startDate - 1"
|
|
|
:label="
|
|
|
item + startDate - 1 === 1
|
|
@@ -65,7 +65,7 @@
|
|
|
</el-select>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div v-if="field.precisions===2" class="wf-field wf-setting-required">
|
|
|
+ <div v-if="field.precisions === 2" class="wf-field wf-setting-required">
|
|
|
<div class="fieldname">可选时间段</div>
|
|
|
<div
|
|
|
v-for="(item, index) in timeList"
|