123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <script setup lang="ts">
- import { ref, nextTick, onMounted, onUnmounted } from 'vue'
- import { UserFilled } from '@element-plus/icons-vue'
- import { ElMessage } from 'element-plus'
- import TableBase from '@/components/TableBase/index.vue'
- import { ColumnProps } from '@/components/TableBase/interface/index'
- import { Overtime_List, Overtime_Approval } from '@/api/workAttendance/index'
- import { getFormatDuration } from '@/utils/common'
- import { GlobalStore } from '@/stores/index'
- const globalStore = GlobalStore()
- const TableRef = ref()
- const columns: ColumnProps[] = [{ prop: 'T_user_name', label: '姓名', name: 'T_user_name' }]
- interface UserInfoIn {
- T_user_name: string
- T_dept: string
- T_post: string
- T_type_name: string
- T_start_time: string
- T_end_time: string
- T_text: string
- Id: string
- T_duration: string
- T_prove_img: string
- }
- const userInfo = ref<UserInfoIn>({
- T_user_name: '',
- T_dept: '',
- T_post: '',
- T_type_name: '',
- T_start_time: '',
- T_end_time: '',
- T_text: '',
- Id: '',
- T_prove_img: '',
- T_duration: ''
- })
- const initParam = {
- User_tokey: globalStore.GET_User_tokey
- }
- const getSalaryParams = (row: any) => {
- console.log(row)
- userInfo.value = { ...row, T_prove_img: 'https://erposs.baozhida.cn' + row.T_prove_img }
- }
- const LeaveUser = async (T_State: number) => {
- if (!userInfo.value.Id) return
- const params = {
- User_tokey: globalStore.GET_User_tokey,
- T_id: userInfo.value.Id,
- T_State
- }
- const res: any = await Overtime_Approval(params)
- if (res.Code === 200) {
- if (T_State) {
- ElMessage.success('审核通过!')
- } else {
- ElMessage.warning('审核不通过!')
- }
- nextTick(() => {
- TableRef.value.getTableList()
- userInfo.value = {} as UserInfoIn
- })
- }
- }
- let cardHeight = ref(0)
- const resize = () => {
- const height = document.documentElement.clientHeight
- cardHeight.value = height - 3 * 12 - 140 - 60 - 6
- }
- onMounted(() => {
- resize()
- window.onresize = resize
- })
- onUnmounted(() => {
- window.onresize = null
- })
- </script>
- <template>
- <div class="Leave">
- <div style="width: 290px">
- <TableBase
- ref="TableRef"
- :columns="columns"
- :requestApi="Overtime_List"
- :initParam="initParam"
- layout="prev, pager, next"
- :rowClick="getSalaryParams"
- >
- <template #table-header>
- <h3 class="title">待处理</h3>
- </template>
- <template #T_user_name="{ row }">
- <el-button type="primary" text @click="getSalaryParams(row)">{{ row.T_user_name }}</el-button>
- </template>
- </TableBase>
- </div>
- <el-row class="h-100 f-1 margin-left-3">
- <el-col :span="24" class="h-100" style="overflow: hidden">
- <el-card class="m-b-3 b-show-0">
- <h3 class="title m-b-5">员工基本信息</h3>
- <div class="info-content">
- <el-avatar shape="square" size="large" :icon="UserFilled" />
- <div class="info-name">
- <h4 class="m-b-3">名字:{{ userInfo.T_user_name }}</h4>
- </div>
- </div>
- </el-card>
- <el-card class="m-b-3 b-show-0" :style="{ height: cardHeight + 'px' }">
- <el-row>
- <el-col :span="12"
- ><div>
- 开始时间:<el-tag v-if="userInfo.T_start_time" type="success" effect="dark">
- {{ userInfo.T_start_time }}
- </el-tag>
- </div></el-col
- >
- <el-col :span="12"
- ><div>
- 结束时间:<el-tag v-if="userInfo.T_end_time" type="success" effect="dark">
- {{ userInfo.T_end_time }}
- </el-tag>
- </div></el-col
- >
- </el-row>
- <el-row>
- <el-col :span="12"
- ><div>
- 加班时长:<el-tag v-if="userInfo.T_duration" type="success" effect="dark">
- {{ getFormatDuration(userInfo.T_duration as any) }}
- </el-tag>
- </div></el-col
- >
- </el-row>
- <el-row>
- <el-col style="display: flex">
- 取证:
- <img :src="userInfo.T_prove_img" class="img" />
- </el-col>
- </el-row>
- <el-row>
- <el-col>
- <span class="ml-3 w-35 text-gray-600 inline-flex items-center">内容:</span>
- <el-input
- v-model="userInfo.T_text"
- :autosize="{ minRows: 4, maxRows: 6 }"
- type="textarea"
- placeholder="Please input"
- />
- </el-col>
- </el-row>
- <div class="btn">
- <el-button type="primary" @click="LeaveUser(1)">通过</el-button>
- <el-button type="danger" @click="LeaveUser(0)">不通过</el-button>
- </div>
- </el-card>
- </el-col>
- </el-row>
- </div>
- </template>
- <style scoped lang="scss">
- .Leave {
- display: flex;
- overflow: hidden;
- .img {
- width: 200px;
- }
- .b-show-0 {
- box-shadow: none;
- font-size: 16px;
- font-weight: 500;
- .el-row {
- margin-bottom: 10px;
- .el-col {
- padding: 15px;
- }
- }
- }
- .title {
- width: 100%;
- text-align: center;
- }
- .btn {
- margin-top: 2rem;
- display: flex;
- justify-content: end;
- }
- .info-content {
- display: flex;
- color: #303133;
- .info-name {
- display: flex;
- // flex-direction: column;
- align-items: center;
- padding-left: 0.75rem;
- span:first-child {
- margin-right: 2rem;
- }
- }
- }
- }
- </style>
|