|
@@ -0,0 +1,335 @@
|
|
|
+<template>
|
|
|
+ <el-container class="gva-table-box">
|
|
|
+ <el-header>
|
|
|
+ <el-dropdown>
|
|
|
+ <el-button type="primary">
|
|
|
+ 菜单<el-icon class="el-icon--right"><arrow-down /></el-icon>
|
|
|
+ </el-button>
|
|
|
+ <template #dropdown>
|
|
|
+ <el-dropdown-menu>
|
|
|
+ <el-dropdown-item @click="openConstructor = true">
|
|
|
+ 施工人员
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item @click="listSwitching(1)">
|
|
|
+ 详情列表
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item @click="listSwitching(2)">
|
|
|
+ 总列表
|
|
|
+ </el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
+ </el-header>
|
|
|
+ <el-main>
|
|
|
+ <div v-if="isOpen === 1">
|
|
|
+ <el-table :data="workingHoursList">
|
|
|
+ <el-table-column
|
|
|
+ prop="projectCode"
|
|
|
+ label="项目编号"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="constructor.name"
|
|
|
+ label="姓名"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="days"
|
|
|
+ label="天数"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="peopleTime"
|
|
|
+ label="时间"
|
|
|
+ />
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <div v-if="isOpen === 2">
|
|
|
+ <el-table :data="workingHoursSum">
|
|
|
+ <el-table-column
|
|
|
+ prop="Name"
|
|
|
+ label="姓名"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="SumDay"
|
|
|
+ label="总天数"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="PriceSum"
|
|
|
+ label="总金额"
|
|
|
+ />
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <div class="gva-pagination">
|
|
|
+ <el-pagination
|
|
|
+ :current-page="searchWorkingHours.pageInfo.page"
|
|
|
+ :page-size="searchWorkingHours.pageInfo.pageSize"
|
|
|
+ :page-sizes="[10, 30, 50, 100]"
|
|
|
+ :total="workingTotal"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <el-dialog
|
|
|
+ v-model="openConstructor"
|
|
|
+ title="施工人员"
|
|
|
+ width="800"
|
|
|
+ align-center
|
|
|
+ >
|
|
|
+ <el-collapse v-model="activeNames">
|
|
|
+ <el-collapse-item
|
|
|
+ title="操作"
|
|
|
+ name="1"
|
|
|
+ >
|
|
|
+ <el-form>
|
|
|
+ <el-form-item label="施工人员">
|
|
|
+ <el-input
|
|
|
+ v-model="constructorData.name"
|
|
|
+ style="width: 400px"
|
|
|
+ >
|
|
|
+ <template #prepend>
|
|
|
+ <el-select
|
|
|
+ v-model="constructorData.id"
|
|
|
+ placeholder="查询"
|
|
|
+ style="width: 115px"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ @change="changeConstructor"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in constructorOptions"
|
|
|
+ :key="item.ID"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.ID"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </template>
|
|
|
+ <template #append>
|
|
|
+ <el-button @click="erasureConstructor">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="人天单价">
|
|
|
+ <el-input
|
|
|
+ v-model="constructorData.price"
|
|
|
+ style="width: 400px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button @click="saveConstructor">保存</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-collapse-item>
|
|
|
+ <el-collapse-item
|
|
|
+ title="列表"
|
|
|
+ name="2"
|
|
|
+ >
|
|
|
+ <div>
|
|
|
+ <el-table :data="constructorTableData">
|
|
|
+ <el-table-column
|
|
|
+ prop="name"
|
|
|
+ label="姓名"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="price"
|
|
|
+ label="人天单价"
|
|
|
+ />
|
|
|
+ </el-table>
|
|
|
+ <div class="gva-pagination">
|
|
|
+ <el-pagination
|
|
|
+ :current-page="searchData.pageInfo.page"
|
|
|
+ :page-size="searchData.pageInfo.pageSize"
|
|
|
+ :page-sizes="[10, 30, 50, 100]"
|
|
|
+ :total="total"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-collapse-item>
|
|
|
+ </el-collapse>
|
|
|
+ <template #footer>
|
|
|
+ <div class="dialog-footer">
|
|
|
+ <el-button @click="openConstructor = false">取消</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="openConstructor = false"
|
|
|
+ >
|
|
|
+ 确定
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ </el-main>
|
|
|
+ </el-container>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import { ref, onMounted } from 'vue'
|
|
|
+import {
|
|
|
+ createConstructor,
|
|
|
+ deleteConstructor,
|
|
|
+ queryConstructor,
|
|
|
+ queryConstructorList, queryWorkingHoursList, queryWorkingHoursSum,
|
|
|
+ updateConstructor
|
|
|
+} from '@/api/finance'
|
|
|
+import { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
+
|
|
|
+// 施工人员----------------------------------------------------------------
|
|
|
+
|
|
|
+const activeNames = ref(['1'])
|
|
|
+const openConstructor = ref(false)
|
|
|
+
|
|
|
+const constructorOptions = ref()
|
|
|
+const constructorData = ref({
|
|
|
+ id: null,
|
|
|
+ name: '',
|
|
|
+ price: null,
|
|
|
+})
|
|
|
+
|
|
|
+const searchData = ref({
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 10
|
|
|
+ },
|
|
|
+ name: ''
|
|
|
+})
|
|
|
+
|
|
|
+const total = ref(0)
|
|
|
+
|
|
|
+// 分页
|
|
|
+const handleSizeChange = (val) => {
|
|
|
+ searchData.value.pageInfo.pageSize = val
|
|
|
+ queryData()
|
|
|
+}
|
|
|
+
|
|
|
+const handleCurrentChange = (val) => {
|
|
|
+ searchData.value.pageInfo.page = val
|
|
|
+ queryData()
|
|
|
+}
|
|
|
+
|
|
|
+const constructorTableData = ref()
|
|
|
+
|
|
|
+// 工时----------------------------------------------------------------------------------------------------------------
|
|
|
+const searchWorkingHours = ref({
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 10
|
|
|
+ },
|
|
|
+ code: '',
|
|
|
+ time: '',
|
|
|
+ people: null,
|
|
|
+})
|
|
|
+
|
|
|
+const workingTotal = ref(0)
|
|
|
+
|
|
|
+const workingHoursList = ref()
|
|
|
+const workingHoursSum = ref()
|
|
|
+
|
|
|
+const queryData = async() => {
|
|
|
+ await queryConstructor().then(res => {
|
|
|
+ constructorOptions.value = res.data
|
|
|
+ })
|
|
|
+ await queryConstructorList(searchData.value).then(res => {
|
|
|
+ constructorTableData.value = res.data.list
|
|
|
+ searchData.value.pageInfo.page = res.data.page
|
|
|
+ searchData.value.pageInfo.pageSize = res.data.pageSize
|
|
|
+ total.value = res.data.total
|
|
|
+ })
|
|
|
+ await queryWorkingHoursList(searchWorkingHours.value).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ workingHoursList.value = res.data.list
|
|
|
+ searchWorkingHours.value.pageInfo.page = res.data.page
|
|
|
+ searchWorkingHours.value.pageInfo.pageSize = res.data.pageSize
|
|
|
+ workingTotal.value = res.data.total
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const isOpen = ref(1)
|
|
|
+
|
|
|
+// 列表切换
|
|
|
+const listSwitching = async(val) => {
|
|
|
+ if (val === 1) {
|
|
|
+ await queryData()
|
|
|
+ } else if (val === 2) {
|
|
|
+ await queryWorkingHoursSum(searchWorkingHours.value).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ workingHoursSum.value = res.data.list
|
|
|
+ searchWorkingHours.value.pageInfo.page = res.data.page
|
|
|
+ searchWorkingHours.value.pageInfo.pageSize = res.data.pageSize
|
|
|
+ workingTotal.value = res.data.total
|
|
|
+ })
|
|
|
+ }
|
|
|
+ isOpen.value = val
|
|
|
+}
|
|
|
+
|
|
|
+const changeConstructor = (val) => {
|
|
|
+ for (const key in constructorOptions.value) {
|
|
|
+ if (constructorOptions.value[key].ID === val) {
|
|
|
+ constructorData.value.name = constructorOptions.value[key].name
|
|
|
+ constructorData.value.price = constructorOptions.value[key].price
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 保存
|
|
|
+const saveConstructor = async() => {
|
|
|
+ if (constructorData.value.name === '' || constructorData.value.price === null) {
|
|
|
+ ElMessage.error('数据不能为空')
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (constructorData.value.id === null) {
|
|
|
+ await createConstructor(constructorData.value).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('新增成功')
|
|
|
+ }
|
|
|
+ queryData()
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ await updateConstructor(constructorData.value).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('修改成功')
|
|
|
+ }
|
|
|
+ queryData()
|
|
|
+ })
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 删除
|
|
|
+const erasureConstructor = async() => {
|
|
|
+ if (constructorData.value.id === null) {
|
|
|
+ ElMessage.error('请选择人员')
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ ElMessageBox.confirm(
|
|
|
+ '确定进行删除操作吗?',
|
|
|
+ '删除',
|
|
|
+ {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .then(async() => {
|
|
|
+ await deleteConstructor(constructorData.value).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('删除成功')
|
|
|
+ }
|
|
|
+ queryData()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ ElMessage({
|
|
|
+ type: 'info',
|
|
|
+ message: '取消删除',
|
|
|
+ })
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+onMounted(() => {
|
|
|
+ queryData()
|
|
|
+})
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+
|
|
|
+</style>
|