This commit is contained in:
guochunsi
2026-01-30 16:29:15 +08:00
parent 53f71066f3
commit c6da6e286f
70 changed files with 688 additions and 519 deletions

View File

@@ -11,7 +11,7 @@
ref="formRef"
:model="formData"
:rules="formRules"
label-width="120px"
label-width="100px"
class="form-content"
>
<el-row :gutter="20">
@@ -22,7 +22,6 @@
filterable
clearable
placeholder="请选择单位"
style="width: 100%"
>
<el-option
v-for="item in companyList"
@@ -107,7 +106,6 @@
v-model="formData.inoutFlag"
clearable
placeholder="请选择"
style="width: 100%"
>
<el-option
v-for="item in yesNoDict"

View File

@@ -11,7 +11,7 @@
ref="formRef"
:model="formData"
:rules="formRules"
label-width="120px"
label-width="100px"
class="form-content"
>
<el-row :gutter="20">
@@ -22,7 +22,6 @@
filterable
clearable
placeholder="请选择班级"
style="width: 100%"
>
<el-option
v-for="item in companyList"
@@ -86,7 +85,6 @@
v-model="formData.inoutFlag"
clearable
placeholder="请选择"
style="width: 100%"
>
<el-option
v-for="item in yesNoDict"

View File

@@ -71,11 +71,11 @@
<!-- 操作按钮 -->
<el-row>
<div class="mb15">
<el-button
<el-button
v-if="hasAuth('professional_outercompanyemployee_add')"
type="primary"
icon="FolderAdd"
@click="handleAdd"
v-auth="'professional_outercompanyemployee_add'">
icon="FolderAdd"
@click="handleAdd">
</el-button>
<el-button
type="primary"
@@ -108,6 +108,7 @@
<el-table
ref="tableRef"
:data="state.dataList"
row-key="id"
v-loading="state.loading"
border
:cell-style="tableStyle.cellStyle"
@@ -156,22 +157,22 @@
<el-table-column label="操作" width="250" align="center" fixed="right">
<template #default="scope">
<el-button
v-auth="'professional_outercompanyemployee_edit'"
<el-button
v-if="hasAuth('professional_outercompanyemployee_edit')"
icon="edit-pen"
link
type="primary"
@click="handleEdit(scope.row)">修改
</el-button>
<el-button
v-auth="'professional_outercompanyemployee_reset_pw'"
v-if="hasAuth('professional_outercompanyemployee_reset_pw')"
icon="RefreshLeft"
link
type="primary"
@click="resetPassword(scope.row)">重置密码
</el-button>
<!-- <el-button
v-auth="'professional_outercompanyemployee_del'"
v-if="hasAuth('professional_outercompanyemployee_del')"
icon="delete"
link
type="primary"
@@ -237,6 +238,7 @@
<script setup lang="ts">
import { ref, reactive, onMounted } from 'vue'
import { BasicTableProps, useTable } from '/@/hooks/table'
import { useAuth } from '/@/hooks/auth'
import { useMessage } from '/@/hooks/message'
import { useMessageBox } from '/@/hooks/message'
import { useDict } from '/@/hooks/dict'
@@ -253,6 +255,9 @@ import {
import { getList as getCompanyList } from '/@/api/professional/stayschool/outercompany'
const FormDialog = defineAsyncComponent(() => import('./form.vue'))
// 无权限即无节点
const { hasAuth } = useAuth()
// 消息提示 hooks
const message = useMessage()
const messageBox = useMessageBox()
@@ -441,14 +446,14 @@ const batchDelect = () => {
// 重置密码
const resetPassword = (row: any) => {
messageBox.confirm('是否确定重置密码?', '提示').then(async () => {
messageBox.confirm('是否确定重置密码?').then(async () => {
try {
const response = await resetPassWord(row)
const pw = response.data?.data
const pw = response.data
if (!validateNull(pw)) {
messageBox.alert('重置后密码为: ' + pw, '重置密码')
messageBox.info('重置后密码为: ' + pw)
} else {
messageBox.alert('系统繁忙,请重试', '重置密码')
messageBox.error('系统繁忙,请重试')
}
} catch (error) {
// 重置密码失败

View File

@@ -77,11 +77,11 @@
<!-- 操作按钮 -->
<el-row>
<div class="mb15" style="width: 100%; position: relative;">
<el-button
<el-button
v-if="hasAuth('professional_outercompanyemployee_add')"
type="primary"
icon="FolderAdd"
@click="handleAdd"
v-auth="'professional_outercompanyemployee_add'"
>
</el-button>
@@ -127,6 +127,7 @@
<el-table
ref="tableRef"
:data="state.dataList"
row-key="id"
v-loading="state.loading"
border
:cell-style="tableStyle.cellStyle"
@@ -148,7 +149,13 @@
<el-table-column prop="inoutFlag" label="允许进出" width="100" align="center">
<template #default="scope">
<el-tag v-if="scope.row.inoutFlag">{{ getDictLabel(scope.row.inoutFlag) }}</el-tag>
<el-tag
v-if="scope.row.inoutFlag"
:type="scope.row.inoutFlag === '1' ? 'success' : 'info'"
effect="plain"
>
{{ getDictLabel(scope.row.inoutFlag) }}
</el-tag>
<span v-else>-</span>
</template>
</el-table-column>
@@ -170,22 +177,22 @@
<el-table-column label="操作" width="250" align="center" fixed="right">
<template #default="scope">
<el-button
v-auth="'professional_outercompanyemployee_edit'"
<el-button
v-if="hasAuth('professional_outercompanyemployee_edit')"
icon="edit-pen"
link
type="primary"
@click="handleEdit(scope.row)">修改
</el-button>
<el-button
v-auth="'professional_outercompanyemployee_reset_pw'"
v-if="hasAuth('professional_outercompanyemployee_reset_pw')"
icon="RefreshLeft"
link
type="primary"
@click="resetPassword(scope.row)">重置密码
</el-button>
<!-- <el-button
v-auth="'professional_outercompanyemployee_del'"
v-if="hasAuth('professional_outercompanyemployee_del')"
icon="delete"
link
type="primary"
@@ -252,6 +259,7 @@
<script setup lang="ts">
import { ref, reactive, onMounted } from 'vue'
import { BasicTableProps, useTable } from '/@/hooks/table'
import { useAuth } from '/@/hooks/auth'
import { useMessage } from '/@/hooks/message'
import { useMessageBox } from '/@/hooks/message'
import { useDict } from '/@/hooks/dict'
@@ -270,6 +278,9 @@ import {
import { getList as getCompanyList } from '/@/api/professional/stayschool/outercompany'
const FormDialog = defineAsyncComponent(() => import('./form.vue'))
// 无权限即无节点
const { hasAuth } = useAuth()
// 消息提示 hooks
const message = useMessage()
const messageBox = useMessageBox()

View File

@@ -77,11 +77,11 @@
<!-- 操作按钮 -->
<el-row>
<div class="mb15" style="width: 100%;">
<el-button
<el-button
v-if="hasAuth('professional_outercompanyemployee_add')"
type="primary"
icon="FolderAdd"
@click="handleAdd"
v-auth="'professional_outercompanyemployee_add'"
>
</el-button>
@@ -127,6 +127,7 @@
<el-table
ref="tableRef"
:data="state.dataList"
row-key="id"
v-loading="state.loading"
border
:cell-style="tableStyle.cellStyle"
@@ -148,7 +149,13 @@
<el-table-column prop="inoutFlag" label="允许进出" width="100" align="center">
<template #default="scope">
<el-tag v-if="scope.row.inoutFlag">{{ getDictLabel(scope.row.inoutFlag) }}</el-tag>
<el-tag
v-if="scope.row.inoutFlag"
:type="scope.row.inoutFlag === '1' ? 'success' : 'info'"
effect="plain"
>
{{ getDictLabel(scope.row.inoutFlag) }}
</el-tag>
<span v-else>-</span>
</template>
</el-table-column>
@@ -170,22 +177,22 @@
<el-table-column label="操作" width="250" align="center" fixed="right">
<template #default="scope">
<el-button
v-auth="'professional_outercompanyemployee_edit'"
<el-button
v-if="hasAuth('professional_outercompanyemployee_edit')"
icon="edit-pen"
link
type="primary"
@click="handleEdit(scope.row)">修改
</el-button>
<el-button
v-auth="'professional_outercompanyemployee_reset_pw'"
v-if="hasAuth('professional_outercompanyemployee_reset_pw')"
icon="RefreshLeft"
link
type="primary"
@click="resetPassword(scope.row)">重置密码
</el-button>
<!-- <el-button
v-auth="'professional_outercompanyemployee_del'"
v-if="hasAuth('professional_outercompanyemployee_del')"
icon="delete"
link
type="primary"
@@ -252,6 +259,7 @@
<script setup lang="ts">
import { ref, reactive, onMounted } from 'vue'
import { BasicTableProps, useTable } from '/@/hooks/table'
import { useAuth } from '/@/hooks/auth'
import { useMessage } from '/@/hooks/message'
import { useMessageBox } from '/@/hooks/message'
import { useDict } from '/@/hooks/dict'
@@ -272,6 +280,9 @@ import { getList as getCompanyList } from '/@/api/professional/stayschool/outerc
import { defineAsyncComponent } from 'vue';
const FormTrain = defineAsyncComponent(() => import('./formTrain.vue'))
// 无权限即无节点
const { hasAuth } = useAuth()
// 消息提示 hooks
const message = useMessage()
const messageBox = useMessageBox()