查询提交处理

This commit is contained in:
gengxin
2025-02-20 09:26:06 +08:00
parent 8fcd795421
commit 7b66b50da2

View File

@@ -24,9 +24,9 @@
v-on:keydown.enter="enterPressHadlerSearch" v-on:keydown.enter="enterPressHadlerSearch"
> >
<!-- 0正常数据 1待审核 2审核中 3审核通过 4拒绝 5撤回 --> <!-- 0正常数据 1待审核 2审核中 3审核通过 4拒绝 5撤回 -->
<a-select-option :value="0">正常数据</a-select-option>
<a-select-option :value="1">待审核</a-select-option> <a-select-option :value="1">待审核</a-select-option>
<a-select-option :value="2">审核中</a-select-option> <a-select-option :value="2">审核中</a-select-option>
<a-select-option :value="3">审核通过</a-select-option>
<a-select-option :value="4">拒绝</a-select-option> <a-select-option :value="4">拒绝</a-select-option>
<a-select-option :value="5">撤回</a-select-option> <a-select-option :value="5">撤回</a-select-option>
</a-select> </a-select>
@@ -105,31 +105,31 @@
> >
<div style="color: #1890ff; cursor: pointer">查看</div> <div style="color: #1890ff; cursor: pointer">查看</div>
</lockLecturer> </lockLecturer>
<a-button <!-- <a-button
v-if="record.status != 2 && checkMenu('lecturerTrainOrgEdit')" v-if="record.status != 2 && checkMenu('lecturerTrainOrgEdit')"
type="link" type="link"
@click="() => handleModify(record, String(record.courseform))" @click="() => handleModify(record, String(record.courseform))"
>编辑</a-button >编辑</a-button
> > -->
<a-button <!-- <a-button
v-if="record.status == 2 && false" v-if="record.status == 2 && false"
type="link" type="link"
@click="() => updateModal(record)" @click="() => updateModal(record)"
>撤回</a-button >撤回</a-button
> > -->
<!-- <a-button type="link" @click="() => deleteModal(record, String(record.courseform))">删除</a-button> --> <!-- <a-button type="link" @click="() => deleteModal(record, String(record.courseform))">删除</a-button> -->
<a-button <!-- <a-button
@click="isEnablePost(record, 0)" @click="isEnablePost(record, 0)"
v-if="record.enable && checkMenu('lecturerTrainOrgStop')" v-if="record.enable && checkMenu('lecturerTrainOrgStop')"
type="link" type="link"
>启用</a-button >启用</a-button
> > -->
<a-button <!-- <a-button
@click="isEnablePost(record, 1)" @click="isEnablePost(record, 1)"
v-if="!record.enable && checkMenu('lecturerTrainOrgStop')" v-if="!record.enable && checkMenu('lecturerTrainOrgStop')"
type="link" type="link"
>停用</a-button >停用</a-button
> > -->
</a-space> </a-space>
</template> </template>
</template> </template>