Commit 88bb26a4 authored by 罗超's avatar 罗超

1

parent 2a8153ca
......@@ -58,9 +58,9 @@
</style>
<template>
<div class="page-body studentsClassfee">
<div class="page-search row items-center" v-if="isshowquery">
<div class="page-search row items-center">
<div class="col row wrap q-mr-lg q-col-gutter-md">
<div class="col-3">
<div class="col-3" v-if="isshowquery">
<q-select filled stack-label @input="handleCurrentChanges(1)" option-value="SId" option-label="SName"
v-model="msg.SchoolId" ref="SId" :options="CompanyList" label="校区" :dense="false" emit-value map-options />
</div>
......@@ -69,7 +69,7 @@
option-label="TeacherName" v-model="msg.TeacherId" ref="TId" :options="TeacherList" label="老师"
:dense="false" emit-value map-options />
</div> -->
<div class="col-3">
<div class="col-3" v-if="isshowquery">
<q-select filled stack-label use-input input-debounce="0" option-value="ClassId" clearable @input="getList"
option-label="ClassName" v-model="msg.ClassId" :options="ClassList" label="班级" :dense="false" emit-value
map-options @filter="filterFn">
......@@ -86,7 +86,7 @@
<q-input @input="handleCurrentChanges(1)" clearable standout="bg-primary text-white" v-model="msg.OrderId"
label="订单号" @clear="handleCurrentChanges(1)" maxlength="20" />
</div>
<div class="col-3">
<div class="col-3" v-if="isshowquery">
<q-input @input="handleCurrentChanges(1)" clearable standout="bg-primary text-white" v-model="msg.StudentName"
label="学生名称" @clear="handleCurrentChanges(1)" maxlength="20" />
</div>
......@@ -227,8 +227,8 @@
created() {
let userinfo = this.getLocalStorage();
var myDate = new Date();
this.msg.StartMonth = myDate.getFullYear() + "-" + (myDate.getMonth() + 1)
this.msg.EndMonth = myDate.getFullYear() + "-" + (myDate.getMonth() + 1)
this.msg.StartMonth = myDate.getFullYear() + "-" + '01'
this.msg.EndMonth = myDate.getFullYear() + "-" + '12'
this.valueyear = myDate.getFullYear().toString()
if (this.$route.query && this.$route.query.datetype) {
this.datetype = this.$route.query.datetype
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment