bns_zhgd_web/src/views/project-manage/projectdePartment.vue

232 lines
7.0 KiB
Vue
Raw Normal View History

2025-04-15 18:05:12 +08:00
<template>
<!-- 基础页面 -->
<div class="app-container">
<el-form v-show="showSearch" :model="queryParams" ref="queryForm" size="small" inline @submit.native.prevent>
<el-form-item prop="keyWord">
<el-input
class="w240"
v-model="queryParams.keyWord"
placeholder="请输入关键字"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!-- 表单按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleQuery">查询</el-button>
<el-button icon="el-icon-refresh" @click="handleReset">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="" plain icon="el-icon-download" size="mini" @click="handleExport">导出</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">新增项目部</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table :data="tableList" fit highlight-current-row style="width: 100%" border>
<el-table-column
type="index"
width="55"
label="序号"
align="center"
:index="(index) => (queryParams.pageNum - 1) * queryParams.pageSize + index + 1"
/>
<el-table-column
v-for="(column, index) in tableColumns"
show-overflow-tooltip
:key="index"
:label="column.label"
:prop="column.prop"
align="center"
>
<!-- 插槽 -->
<template v-slot="{ row }" v-if="column.prop == 'status'">
<span>
2025-04-16 11:07:14 +08:00
<el-switch v-model="row.status" active-value="1" inactive-value="0" @change="changeSwitch(row)"></el-switch>
2025-04-15 18:05:12 +08:00
</span>
</template>
<template v-slot="{ row }" v-else-if="column.prop == 'lotCount'">
<span v-if="row.lotCount > 0" @click="handleLot(row)" style="color: #409eff; cursor: pointer">{{
row.lotCount
}}</span>
<span v-else>-</span>
</template>
</el-table-column>
<!-- 操作 -->
<el-table-column label="操作" align="center" width="150">
<template slot-scope="{ row }">
<el-button type="text" size="mini" icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button type="text" size="mini" icon="el-icon-delete" style="color: #f56c6c" @click="handleDelete(row)">
删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
2025-04-16 11:07:14 +08:00
<LotList ref="lotList" />
<AddEditProDep ref="addEditProDep" @getList="getList" />
2025-04-15 18:05:12 +08:00
</div>
</template>
<script>
export default {
components: {
LotList: () => import('./components/LotList'),
2025-04-16 11:07:14 +08:00
AddEditProDep: () => import('./components/AddEditProDep'),
2025-04-15 18:05:12 +08:00
},
data() {
return {
showSearch: true,
queryParams: {
pageNum: 1,
pageSize: 10,
keyWord: '', // 关键字
},
total: 0, // 总条数
// 表头
tableColumns: [
{ label: '分公司名称', prop: 'proName' },
{ label: '项目部名称', prop: 'projectDepartment' },
{ label: '状态', prop: 'status' },
{ label: '标段工程数量', prop: 'lotCount' },
{ label: '更新人员', prop: 'updateUser' },
{ label: '更新时间', prop: 'updateTime' },
{ label: '备注', prop: 'remark' },
],
// 表格数据
tableList: [
{
id: 1,
proName: '分公司名称',
projectDepartment: '项目部名称',
status: '1',
lotCount: 10,
updateUser: '更新人员',
updateTime: '2023-10-01 12:00:00',
remark: '备注',
},
],
}
},
created() {
this.getList()
},
methods: {
// 查询
handleQuery() {
this.queryParams.pageNum = 1
this.getList()
},
// 重置
handleReset() {
this.queryParams.pageNum = 1
this.queryParams.pageSize = 10
this.$refs.queryForm.resetFields()
this.getList()
},
// 获取列表
async getList() {
console.log('列表-查询', this.queryParams)
const loading = this.$loading({ text: '加载中...' })
try {
const params = { ...this.queryParams }
// const res = await
// console.log('🚀 ~ 获取列表 ~ res:', res)
// this.tableList = res.rows
// this.total = res.total
loading.close()
} catch (error) {
console.log('🚀 ~ 获取列表 ~ error:', error)
this.tableList = []
this.total = 0
loading.close()
}
},
changeSwitch(row) {
console.log('🚀 ~ changeSwitch ~ row:', row)
this.$confirm('是否确认修改状态?', '提示', {
type: 'warning',
showCancelButton: true,
cancelButtonText: '取消',
confirmButtonText: '确定',
})
.then(() => {
// const res = await
// console.log('🚀 ~ 修改状态 ~ res:', res)
row.status = row.status == '1' ? '1' : '0'
})
.catch(() => {
console.log('取消修改', row.status)
row.status = row.status == '1' ? '0' : '1'
this.$message({
type: 'info',
message: '已取消',
})
})
},
handleLot(data) {
this.$refs.lotList.openDialog(data)
},
handleAdd() {
console.log('🚀 ~ handleAdd ~:')
2025-04-16 11:07:14 +08:00
this.$refs.addEditProDep.openDialog({ dialogTitle: '新增项目部', isAdd: true })
2025-04-15 18:05:12 +08:00
},
handleEdit(row) {
console.log('🚀 ~ handleEdit ~ row:', row)
2025-04-16 11:07:14 +08:00
this.$refs.addEditProDep.openDialog({ ...row, dialogTitle: '编辑项目部', isAdd: false })
2025-04-15 18:05:12 +08:00
},
handleDelete(row) {
console.log('🚀 ~ handleDelete ~ row:', row)
this.$confirm('是否确定删除?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
// const res = await
// console.log('🚀 ~ 删除 ~ res:', res)
this.getList()
})
.catch(() => {
console.log('取消删除')
})
},
// 导出数据
handleExport() {
this.$message({
type: 'warning',
message: '导出功能开发中,敬请期待!',
})
return
try {
let fileName = `项目部管理_${new Date().getTime()}.xLsx`
let url = ''
const params = { ...this.queryParams }
console.log('🚀 ~ 导出 ~ params:', params)
this.download(url, params, fileName)
} catch (error) {
console.log('导出数据失败', error)
}
},
},
}
</script>
<style lang="scss" scoped></style>