|
@@ -78,6 +78,7 @@ const listState = reactive({
|
|
|
loading:false
|
|
|
})
|
|
|
async function getList(){
|
|
|
+ const timeType = ['','publish_time','modify_time','approve_time']
|
|
|
const res=await apiReport.getList({
|
|
|
CurrentIndex:listState.page,
|
|
|
PageSize:listState.pageSize,
|
|
@@ -87,7 +88,7 @@ async function getList(){
|
|
|
ClassifyNameSecond:listState.ClassifyNameSecond,
|
|
|
Frequency:listState.Frequency,
|
|
|
MsgIsSend:listState.MsgIsSend,
|
|
|
- TimeType:dateType.value===1?'publish_time':'modify_time',
|
|
|
+ TimeType:timeType[dateType.value]||'publish_time',
|
|
|
State:listState.publishStatus
|
|
|
})
|
|
|
if(res.Ret===200){
|
|
@@ -259,7 +260,7 @@ function handldReportMsgSend(item){
|
|
|
const calendarMinDate=new Date(2010,0,1)
|
|
|
const showCalendar=ref(false)
|
|
|
const calendarIns=ref(null)
|
|
|
-const dateType=ref(1)//1发布时间 2更新时间
|
|
|
+const dateType=ref(1)//1发布时间 2更新时间 3审批时间
|
|
|
function handleCalendarChange(e){
|
|
|
listState.StartDate=moment(e[0]).format('YYYY-MM-DD')
|
|
|
listState.EndDate=moment(e[1]).format('YYYY-MM-DD')
|
|
@@ -738,8 +739,9 @@ onMounted(async ()=>{
|
|
|
<span>日期选择</span>
|
|
|
</div>
|
|
|
<div class="time-type-box">
|
|
|
- <span @click="dateType=1" :class="['item',dateType===1?'active':'']">{{isApprove?'审批时间':'发布时间'}}</span>
|
|
|
+ <span @click="dateType=1" :class="['item',dateType===1?'active':'']">发布时间</span>
|
|
|
<span @click="dateType=2" :class="['item',dateType===2?'active':'']">更新时间</span>
|
|
|
+ <span @click="dateType=3" :class="['item',dateType===3?'active':'']">审批时间</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
</van-calendar>
|