|
|
@@ -3,59 +3,63 @@
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
<el-form-item label="省份" prop="location">
|
|
|
<el-input
|
|
|
- v-model="queryParams.location"
|
|
|
- placeholder="请输入省份"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
+ v-model="queryParams.location"
|
|
|
+ placeholder="请输入省份"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="开始时间" prop="startDate">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.startDate"
|
|
|
- placeholder="请输入开始时间"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
- />
|
|
|
+ <el-date-picker clearable
|
|
|
+ v-model="queryParams.startDate"
|
|
|
+ type="date"
|
|
|
+ value-format="YYYY-MM-DD"
|
|
|
+ placeholder="请选择开始时间">
|
|
|
+ </el-date-picker>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="结束时间" prop="endDate">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.endDate"
|
|
|
- placeholder="请输入结束时间"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
- />
|
|
|
+ <el-date-picker clearable
|
|
|
+ v-model="queryParams.endDate"
|
|
|
+ type="date"
|
|
|
+ value-format="YYYY-MM-DD"
|
|
|
+ placeholder="请选择结束时间">
|
|
|
+ </el-date-picker>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="是否生效(0:否,1:是)" prop="isValid">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.isValid"
|
|
|
- placeholder="请输入是否生效(0:否,1:是)"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
- />
|
|
|
+ <el-form-item label="是否生效" prop="isValid">
|
|
|
+ <el-select v-model="queryParams.isValid" placeholder="请选择是否生效" clearable style="width: 220px">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in bool_values"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="计划年度" prop="planYear">
|
|
|
<el-input
|
|
|
- v-model="queryParams.planYear"
|
|
|
- placeholder="请输入计划年度"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
+ v-model="queryParams.planYear"
|
|
|
+ placeholder="请输入计划年度"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="录取年度" prop="submitYear">
|
|
|
<el-input
|
|
|
- v-model="queryParams.submitYear"
|
|
|
- placeholder="请输入录取年度"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
+ v-model="queryParams.submitYear"
|
|
|
+ placeholder="请输入录取年度"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="开启考生" prop="examTypes">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.examTypes"
|
|
|
- placeholder="请输入开启考生"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
- />
|
|
|
+ <el-select v-model="queryParams.examTypes" placeholder="请选择开启考生" clearable style="width: 220px">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in exam_type"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
@@ -66,40 +70,40 @@
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="Plus"
|
|
|
- @click="handleAdd"
|
|
|
- v-hasPermi="['dz:control:add']"
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ icon="Plus"
|
|
|
+ @click="handleAdd"
|
|
|
+ v-hasPermi="['dz:control:add']"
|
|
|
>新增</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
- type="success"
|
|
|
- plain
|
|
|
- icon="Edit"
|
|
|
- :disabled="single"
|
|
|
- @click="handleUpdate"
|
|
|
- v-hasPermi="['dz:control:edit']"
|
|
|
+ type="success"
|
|
|
+ plain
|
|
|
+ icon="Edit"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate"
|
|
|
+ v-hasPermi="['dz:control:edit']"
|
|
|
>修改</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
- type="danger"
|
|
|
- plain
|
|
|
- icon="Delete"
|
|
|
- :disabled="multiple"
|
|
|
- @click="handleDelete"
|
|
|
- v-hasPermi="['dz:control:remove']"
|
|
|
+ type="danger"
|
|
|
+ plain
|
|
|
+ icon="Delete"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['dz:control:remove']"
|
|
|
>删除</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
- type="warning"
|
|
|
- plain
|
|
|
- icon="Download"
|
|
|
- @click="handleExport"
|
|
|
- v-hasPermi="['dz:control:export']"
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="Download"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['dz:control:export']"
|
|
|
>导出</el-button>
|
|
|
</el-col>
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
@@ -109,12 +113,28 @@
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="ID" align="center" prop="id" />
|
|
|
<el-table-column label="省份" align="center" prop="location" />
|
|
|
- <el-table-column label="开始时间" align="center" prop="startDate" />
|
|
|
- <el-table-column label="结束时间" align="center" prop="endDate" />
|
|
|
- <el-table-column label="是否生效(0:否,1:是)" align="center" prop="isValid" />
|
|
|
+ <el-table-column label="开始时间" align="center" prop="startDate" width="180">
|
|
|
+ <template #default="scope">
|
|
|
+ <span>{{ parseTime(scope.row.startDate, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="结束时间" align="center" prop="endDate" width="180">
|
|
|
+ <template #default="scope">
|
|
|
+ <span>{{ parseTime(scope.row.endDate, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="是否生效(0:否,1:是)" align="center" prop="isValid">
|
|
|
+ <template #default="scope">
|
|
|
+ <dict-tag :options="bool_values" :value="scope.row.isValid"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="计划年度" align="center" prop="planYear" />
|
|
|
<el-table-column label="录取年度" align="center" prop="submitYear" />
|
|
|
- <el-table-column label="开启考生" align="center" prop="examTypes" />
|
|
|
+ <el-table-column label="开启考生" align="center" prop="examTypes">
|
|
|
+ <template #default="scope">
|
|
|
+ <dict-tag :options="exam_type" :value="scope.row.examTypes"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template #default="scope">
|
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['dz:control:edit']">修改</el-button>
|
|
|
@@ -122,13 +142,13 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
-
|
|
|
+
|
|
|
<pagination
|
|
|
- v-show="total>0"
|
|
|
- :total="total"
|
|
|
- v-model:page="queryParams.pageNum"
|
|
|
- v-model:limit="queryParams.pageSize"
|
|
|
- @pagination="getList"
|
|
|
+ v-show="total>0"
|
|
|
+ :total="total"
|
|
|
+ v-model:page="queryParams.pageNum"
|
|
|
+ v-model:limit="queryParams.pageSize"
|
|
|
+ @pagination="getList"
|
|
|
/>
|
|
|
|
|
|
<!-- 添加或修改单招省份状态对话框 -->
|
|
|
@@ -138,13 +158,30 @@
|
|
|
<el-input v-model="form.location" placeholder="请输入省份" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="开始时间" prop="startDate">
|
|
|
- <el-input v-model="form.startDate" placeholder="请输入开始时间" />
|
|
|
+ <el-date-picker clearable
|
|
|
+ v-model="form.startDate"
|
|
|
+ type="date"
|
|
|
+ value-format="YYYY-MM-DD"
|
|
|
+ placeholder="请选择开始时间">
|
|
|
+ </el-date-picker>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="结束时间" prop="endDate">
|
|
|
- <el-input v-model="form.endDate" placeholder="请输入结束时间" />
|
|
|
+ <el-date-picker clearable
|
|
|
+ v-model="form.endDate"
|
|
|
+ type="date"
|
|
|
+ value-format="YYYY-MM-DD"
|
|
|
+ placeholder="请选择结束时间">
|
|
|
+ </el-date-picker>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="是否生效(0:否,1:是)" prop="isValid">
|
|
|
- <el-input v-model="form.isValid" placeholder="请输入是否生效(0:否,1:是)" />
|
|
|
+ <el-form-item label="是否生效" prop="isValid">
|
|
|
+ <el-select v-model="form.isValid" placeholder="请选择是否生效">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in bool_values"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="parseInt(dict.value)"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="计划年度" prop="planYear">
|
|
|
<el-input v-model="form.planYear" placeholder="请输入计划年度" />
|
|
|
@@ -153,7 +190,14 @@
|
|
|
<el-input v-model="form.submitYear" placeholder="请输入录取年度" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="开启考生" prop="examTypes">
|
|
|
- <el-input v-model="form.examTypes" placeholder="请输入开启考生" />
|
|
|
+ <el-select v-model="form.examTypes" placeholder="请选择开启考生" multiple>
|
|
|
+ <el-option
|
|
|
+ v-for="dict in exam_type"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<template #footer>
|
|
|
@@ -167,148 +211,149 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup name="Control">
|
|
|
-import { listControl, getControl, delControl, addControl, updateControl } from "@/api/dz/control"
|
|
|
+ import { listControl, getControl, delControl, addControl, updateControl } from "@/api/dz/control"
|
|
|
|
|
|
-const { proxy } = getCurrentInstance()
|
|
|
+ const { proxy } = getCurrentInstance()
|
|
|
+ const { exam_type, bool_values } = proxy.useDict('exam_type', 'bool_values')
|
|
|
|
|
|
-const controlList = ref([])
|
|
|
-const open = ref(false)
|
|
|
-const loading = ref(true)
|
|
|
-const showSearch = ref(true)
|
|
|
-const ids = ref([])
|
|
|
-const single = ref(true)
|
|
|
-const multiple = ref(true)
|
|
|
-const total = ref(0)
|
|
|
-const title = ref("")
|
|
|
-
|
|
|
-const data = reactive({
|
|
|
- form: {},
|
|
|
- queryParams: {
|
|
|
- pageNum: 1,
|
|
|
- pageSize: 10,
|
|
|
- location: null,
|
|
|
- startDate: null,
|
|
|
- endDate: null,
|
|
|
- isValid: null,
|
|
|
- planYear: null,
|
|
|
- submitYear: null,
|
|
|
- examTypes: null
|
|
|
- },
|
|
|
- rules: {
|
|
|
- isValid: [
|
|
|
- { required: true, message: "是否生效(0:否,1:是)不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- }
|
|
|
-})
|
|
|
+ const controlList = ref([])
|
|
|
+ const open = ref(false)
|
|
|
+ const loading = ref(true)
|
|
|
+ const showSearch = ref(true)
|
|
|
+ const ids = ref([])
|
|
|
+ const single = ref(true)
|
|
|
+ const multiple = ref(true)
|
|
|
+ const total = ref(0)
|
|
|
+ const title = ref("")
|
|
|
|
|
|
-const { queryParams, form, rules } = toRefs(data)
|
|
|
-
|
|
|
-/** 查询单招省份状态列表 */
|
|
|
-function getList() {
|
|
|
- loading.value = true
|
|
|
- listControl(queryParams.value).then(response => {
|
|
|
- controlList.value = response.rows
|
|
|
- total.value = response.total
|
|
|
- loading.value = false
|
|
|
+ const data = reactive({
|
|
|
+ form: {},
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ location: null,
|
|
|
+ startDate: null,
|
|
|
+ endDate: null,
|
|
|
+ isValid: null,
|
|
|
+ planYear: null,
|
|
|
+ submitYear: null,
|
|
|
+ examTypes: null
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ isValid: [
|
|
|
+ { required: true, message: "是否生效(0:否,1:是)不能为空", trigger: "change" }
|
|
|
+ ],
|
|
|
+ }
|
|
|
})
|
|
|
-}
|
|
|
|
|
|
-// 取消按钮
|
|
|
-function cancel() {
|
|
|
- open.value = false
|
|
|
- reset()
|
|
|
-}
|
|
|
+ const { queryParams, form, rules } = toRefs(data)
|
|
|
|
|
|
-// 表单重置
|
|
|
-function reset() {
|
|
|
- form.value = {
|
|
|
- id: null,
|
|
|
- location: null,
|
|
|
- startDate: null,
|
|
|
- endDate: null,
|
|
|
- isValid: null,
|
|
|
- planYear: null,
|
|
|
- submitYear: null,
|
|
|
- examTypes: null
|
|
|
+ /** 查询单招省份状态列表 */
|
|
|
+ function getList() {
|
|
|
+ loading.value = true
|
|
|
+ listControl(queryParams.value).then(response => {
|
|
|
+ controlList.value = response.rows
|
|
|
+ total.value = response.total
|
|
|
+ loading.value = false
|
|
|
+ })
|
|
|
}
|
|
|
- proxy.resetForm("controlRef")
|
|
|
-}
|
|
|
|
|
|
-/** 搜索按钮操作 */
|
|
|
-function handleQuery() {
|
|
|
- queryParams.value.pageNum = 1
|
|
|
- getList()
|
|
|
-}
|
|
|
+ // 取消按钮
|
|
|
+ function cancel() {
|
|
|
+ open.value = false
|
|
|
+ reset()
|
|
|
+ }
|
|
|
|
|
|
-/** 重置按钮操作 */
|
|
|
-function resetQuery() {
|
|
|
- proxy.resetForm("queryRef")
|
|
|
- handleQuery()
|
|
|
-}
|
|
|
+ // 表单重置
|
|
|
+ function reset() {
|
|
|
+ form.value = {
|
|
|
+ id: null,
|
|
|
+ location: null,
|
|
|
+ startDate: null,
|
|
|
+ endDate: null,
|
|
|
+ isValid: null,
|
|
|
+ planYear: null,
|
|
|
+ submitYear: null,
|
|
|
+ examTypes: null
|
|
|
+ }
|
|
|
+ proxy.resetForm("controlRef")
|
|
|
+ }
|
|
|
|
|
|
-// 多选框选中数据
|
|
|
-function handleSelectionChange(selection) {
|
|
|
- ids.value = selection.map(item => item.id)
|
|
|
- single.value = selection.length != 1
|
|
|
- multiple.value = !selection.length
|
|
|
-}
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ function handleQuery() {
|
|
|
+ queryParams.value.pageNum = 1
|
|
|
+ getList()
|
|
|
+ }
|
|
|
|
|
|
-/** 新增按钮操作 */
|
|
|
-function handleAdd() {
|
|
|
- reset()
|
|
|
- open.value = true
|
|
|
- title.value = "添加单招省份状态"
|
|
|
-}
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ function resetQuery() {
|
|
|
+ proxy.resetForm("queryRef")
|
|
|
+ handleQuery()
|
|
|
+ }
|
|
|
+
|
|
|
+ // 多选框选中数据
|
|
|
+ function handleSelectionChange(selection) {
|
|
|
+ ids.value = selection.map(item => item.id)
|
|
|
+ single.value = selection.length != 1
|
|
|
+ multiple.value = !selection.length
|
|
|
+ }
|
|
|
|
|
|
-/** 修改按钮操作 */
|
|
|
-function handleUpdate(row) {
|
|
|
- reset()
|
|
|
- const _id = row.id || ids.value
|
|
|
- getControl(_id).then(response => {
|
|
|
- form.value = response.data
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ function handleAdd() {
|
|
|
+ reset()
|
|
|
open.value = true
|
|
|
- title.value = "修改单招省份状态"
|
|
|
- })
|
|
|
-}
|
|
|
+ title.value = "添加单招省份状态"
|
|
|
+ }
|
|
|
+
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ function handleUpdate(row) {
|
|
|
+ reset()
|
|
|
+ const _id = row.id || ids.value
|
|
|
+ getControl(_id).then(response => {
|
|
|
+ form.value = response.data
|
|
|
+ open.value = true
|
|
|
+ title.value = "修改单招省份状态"
|
|
|
+ })
|
|
|
+ }
|
|
|
|
|
|
-/** 提交按钮 */
|
|
|
-function submitForm() {
|
|
|
- proxy.$refs["controlRef"].validate(valid => {
|
|
|
- if (valid) {
|
|
|
- if (form.value.id != null) {
|
|
|
- updateControl(form.value).then(response => {
|
|
|
- proxy.$modal.msgSuccess("修改成功")
|
|
|
- open.value = false
|
|
|
- getList()
|
|
|
- })
|
|
|
- } else {
|
|
|
- addControl(form.value).then(response => {
|
|
|
- proxy.$modal.msgSuccess("新增成功")
|
|
|
- open.value = false
|
|
|
- getList()
|
|
|
- })
|
|
|
+ /** 提交按钮 */
|
|
|
+ function submitForm() {
|
|
|
+ proxy.$refs["controlRef"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (form.value.id != null) {
|
|
|
+ updateControl(form.value).then(response => {
|
|
|
+ proxy.$modal.msgSuccess("修改成功")
|
|
|
+ open.value = false
|
|
|
+ getList()
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ addControl(form.value).then(response => {
|
|
|
+ proxy.$modal.msgSuccess("新增成功")
|
|
|
+ open.value = false
|
|
|
+ getList()
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- })
|
|
|
-}
|
|
|
+ })
|
|
|
+ }
|
|
|
|
|
|
-/** 删除按钮操作 */
|
|
|
-function handleDelete(row) {
|
|
|
- const _ids = row.id || ids.value
|
|
|
- proxy.$modal.confirm('是否确认删除单招省份状态编号为"' + _ids + '"的数据项?').then(function() {
|
|
|
- return delControl(_ids)
|
|
|
- }).then(() => {
|
|
|
- getList()
|
|
|
- proxy.$modal.msgSuccess("删除成功")
|
|
|
- }).catch(() => {})
|
|
|
-}
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ function handleDelete(row) {
|
|
|
+ const _ids = row.id || ids.value
|
|
|
+ proxy.$modal.confirm('是否确认删除单招省份状态编号为"' + _ids + '"的数据项?').then(function() {
|
|
|
+ return delControl(_ids)
|
|
|
+ }).then(() => {
|
|
|
+ getList()
|
|
|
+ proxy.$modal.msgSuccess("删除成功")
|
|
|
+ }).catch(() => {})
|
|
|
+ }
|
|
|
|
|
|
-/** 导出按钮操作 */
|
|
|
-function handleExport() {
|
|
|
- proxy.download('dz/control/export', {
|
|
|
- ...queryParams.value
|
|
|
- }, `control_${new Date().getTime()}.xlsx`)
|
|
|
-}
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ function handleExport() {
|
|
|
+ proxy.download('dz/control/export', {
|
|
|
+ ...queryParams.value
|
|
|
+ }, `control_${new Date().getTime()}.xlsx`)
|
|
|
+ }
|
|
|
|
|
|
-getList()
|
|
|
+ getList()
|
|
|
</script>
|