|
@@ -27,6 +27,9 @@
|
|
|
<auth :auths="['studentRegistration/preRegisterExport']">
|
|
|
<el-button type="primary" @click="downloadFile">导出</el-button>
|
|
|
</auth>
|
|
|
+ <auth :auths="['studentRegistration/preRegisterExport']">
|
|
|
+ <el-button type="primary" @click="subjectVisible = true">意向统计</el-button>
|
|
|
+ </auth>
|
|
|
</div>
|
|
|
|
|
|
<div class="m-core">
|
|
@@ -219,6 +222,17 @@
|
|
|
>
|
|
|
<visit-model v-if="visitVisible" @close="visitVisible = false" :detail="visitDetail" @submited="getList"/>
|
|
|
</el-dialog>
|
|
|
+
|
|
|
+ <!-- 回访记录 -->
|
|
|
+ <el-dialog
|
|
|
+ title="意向列表"
|
|
|
+ width="600px"
|
|
|
+ destroy-on-close
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :visible.sync="subjectVisible"
|
|
|
+ >
|
|
|
+ <intention-model v-if="subjectVisible" @close="subjectVisible = false" />
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -229,10 +243,11 @@ import { permission } from "@/utils/directivePage";
|
|
|
import { vaildStudentUrl } from '@/utils/validate'
|
|
|
import { Export } from '@/utils/downLoadFile'
|
|
|
import visitModel from '@/views/withdrawal-application/modals/visit'
|
|
|
+import intentionModel from './modals/intention'
|
|
|
import { queryPreApplyList, finishPreApply, sendParentMeetingNotice } from './api'
|
|
|
export default {
|
|
|
name: 'forecastName',
|
|
|
- components: { pagination, qrCode, visitModel },
|
|
|
+ components: { pagination, qrCode, visitModel, intentionModel },
|
|
|
data() {
|
|
|
const query = this.$route.query
|
|
|
return {
|
|
@@ -254,6 +269,7 @@ export default {
|
|
|
page_size: [10, 20, 40, 50], // 选择限制显示条数
|
|
|
},
|
|
|
visitVisible: false,
|
|
|
+ subjectVisible: false,
|
|
|
visitDetail: null,
|
|
|
extendPaymentStatus: false,
|
|
|
extendForm: {
|