Commit f14d8b37 authored by 罗超's avatar 罗超

临时提交

parent 00c093eb
......@@ -291,5 +291,8 @@ button.bg-accent:active {
background: #ecf1ff !important;
color: var(--q-color-primary) !important;
}
.big-dialog .q-dialog__inner--minimized > div{
max-width: unset !important;
}
/***************************************************** End 重写ElementUI 抽屉效果 ***************************************************************/
</style>
......@@ -123,6 +123,9 @@
</template>
</q-input>
</div>
<div v-if="tabCheck == 'second'">
<q-btn outline dense icon="add" class="q-px-sm" color="primary" @click="showAddForm=true" label="新增客户"></q-btn>
</div>
</div>
<div class="page-content">
<q-table
......@@ -500,6 +503,9 @@
@close="closeDetail"
:save-obj="sendObj"
></schedulFanke>
<q-dialog v-model="showAddForm" persistent content-class="bg-grey-1 big-dialog">
<student-add-form></student-add-form>
</q-dialog>
</div>
</template>
<script>
......@@ -509,6 +515,7 @@ import { saveStudentVisitFeedback } from "../../api/customerstudent/customerstud
import { getGuestBasicsEnumList } from "../../api/sale/sale";
import schedulFanke from "../schedul/schedul-fanke";
import { queryDutyTrialLesson } from "../../api/duty/index";
import studentAddForm from '../../components/school/student/studentAddForm'
export default {
props: {
......@@ -522,7 +529,8 @@ export default {
}
},
components: {
schedulFanke
schedulFanke,
studentAddForm
},
data() {
return {
......@@ -576,6 +584,7 @@ export default {
label: "操作"
}
],
showAddForm:false,
visitColumns: [
{
name: "StuName",
......@@ -1003,4 +1012,4 @@ export default {
</script>
<style lang="sass">
@import url('~assets/css/table.sass')
</style>
</style>
\ No newline at end of file
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