Merge branch 'material-ui' of http://192.168.30.2:3000/bonus/bonus-ui into material-ui

This commit is contained in:
hongchao 2025-07-23 18:25:54 +08:00
commit 9992dba5a1
5 changed files with 96 additions and 235 deletions

View File

@ -642,7 +642,7 @@ export default {
},
//
async handlePrint(row) {
const res = await getCheckInfo({ id: row.id })
const res = await getCheckInfo({ id: row.id, publishTask: row.publishTask })
this.idTemp = row.id
this.checkDataInfo = res.data.leaseApplyInfo

View File

@ -731,7 +731,8 @@ export default {
//
queryOutView: {
pageNum: 1,
pageSize: 10
pageSize: 10,
keyWord: ''
},
outQuery: {
pageNum: 1,
@ -850,6 +851,7 @@ export default {
const { id, publishTask } = row
this.publishTask = publishTask
this.title = '查看'
this.queryOutView.keyWord = ''
this.showOutView = true
this.queryOutView.id = row.id
outInfoList(id, { keyWord: this.queryOutView.keyWord, publishTask }).then(response => {
@ -1018,7 +1020,7 @@ export default {
},
//
async handlePrint(row) {
const res = await getCheckInfo({ id: row.id })
const res = await getCheckInfo({ id: row.id, publishTask: row.publishTask })
this.idTemp = row.id
this.checkDataInfo = res.data.leaseApplyInfo
@ -1053,6 +1055,7 @@ export default {
//
async handleLld(row) {
this.title = '领料单'
this.queryOutView.keyWord = ''
this.open = true
// var ids = row.id
const { id, publishTask } = row

View File

@ -89,26 +89,10 @@
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleBind"
>
绑定
</el-button>
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBind">绑定</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-minus"
size="mini"
@click="handleNoBind"
>
解绑
</el-button>
<el-button type="warning" plain icon="el-icon-minus" size="mini" @click="handleNoBind">解绑</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button
@ -310,21 +294,10 @@ export default {
}
},
created() {
// this.getInfo()
this.getTreeData()
this.getTreeDataTwo()
// this.getKeeperDataList();
// setTimeout(()=>{
// this.getList();
// },200)
},
methods: {
// getInfo() {
// getInfo().then((res) => {
// console.log(res, 'companyId----')
// this.companyId = res.user.companyId
// })
// },
selectFirstNode() {
const firstNode = this.$refs.treeTwo.getNode(1)
if (firstNode) {
@ -341,9 +314,6 @@ export default {
if (node.data.level == 99) {
iconClass = 'el-icon-user-solid'
}
// else if (node.type === 'file') {
// iconClass = 'el-icon-document';
// }
return (
<span>
@ -430,20 +400,22 @@ export default {
this.loading = true
this.queryParams.displayBindRelationship = 'true'
console.log('queryParams1', this.queryParams)
await getPersonSettingListApi(this.queryParams).then(response => {
console.log('response', response)
this.typeList = response.rows
this.total = response.total
this.loading = false
if (this.typeList.length > 0) {
this.typeList.forEach((item, index) => {
item.rowKey = item.typeId + '_' + index
})
}
}).catch(error => {
console.log('🚀 ~ 列表 ~ error:', error)
this.loading = false
})
await getPersonSettingListApi(this.queryParams)
.then(response => {
console.log('response', response)
this.typeList = response.rows
this.total = response.total
this.loading = false
if (this.typeList.length > 0) {
this.typeList.forEach((item, index) => {
item.rowKey = item.typeId + '_' + index
})
}
})
.catch(error => {
console.log('🚀 ~ 列表 ~ error:', error)
this.loading = false
})
},
// -
filterNode(value, data) {
@ -545,138 +517,76 @@ export default {
//-
handlerSelect(val, row) {
const index = this.userList.findIndex(item => item.typeId === row.typeId)
if (this.ids.indexOf(row.typeId) === -1) {
this.userList.push({ typeId: row.typeId, userId: this.userIdTemp })
if (!row || !row.typeId) return
this.userList = this.userList || []
this.userNoList = this.userNoList || []
this.ids = this.ids || []
const isSelected = this.ids.indexOf(row.typeId) === -1
this.updateList(this.userList, row.typeId, this.userIdTemp, isSelected)
this.updateList(this.userNoList, row.typeId, row.keeperUserId, isSelected)
},
updateList(list, typeId, userId, isSelected) {
const index = list.findIndex(item => item.typeId === typeId)
if (isSelected) {
list.push({ typeId, userId })
} else if (index !== -1) {
this.userList.splice(index, 1)
}
const indexNo = this.userNoList.findIndex(item => item.typeId === row.typeId)
if (this.ids.indexOf(row.typeId) === -1) {
this.userNoList.push({ typeId: row.typeId, userId: row.keeperUserId })
} else if (indexNo !== -1) {
this.userNoList.splice(indexNo, 1)
list.splice(index, 1)
}
},
//-
handlerSelectAll(val) {
if (val.length) {
// :
// 1 2
//
// tableDatavalcurrentSelection
// tableDatavalcurrentSelection
const isAllSelect = this.tableData.every(item => val.some(valItem => valItem.typeId === item.typeId))
if (isAllSelect) {
//
const diff = val.filter(item => !this.userList.some(user => user.typeId === item.typeId))
if (this.userList.length + diff.length > this.maxLength) {
const spaceLeft = this.maxLength - this.userList.length
const toAdd = diff.slice(0, spaceLeft)
this.userList = this.userList.concat(
toAdd.map(item => ({
typeId: item.typeId,
userId: this.userIdTemp
}))
)
diff.slice(spaceLeft).forEach(item => this.$refs.multipleTable.toggleRowSelection(item, false))
} else {
this.userList = this.userList.concat(
diff.map(item => ({
typeId: item.typeId,
userId: this.userIdTemp
}))
)
}
//
const diffNo = val.filter(item => !this.userNoList.some(user => user.typeId === item.typeId))
if (this.userNoList.length + diff.length > this.maxLength) {
const spaceLeft = this.maxLength - this.userNoList.length
const toAdd = diff.slice(0, spaceLeft)
this.userNoList = this.userNoList.concat(
toAdd.map(item => ({
typeId: item.typeId,
userId: item.userId
}))
)
diff.slice(spaceLeft).forEach(item => this.$refs.multipleTable.toggleRowSelection(item, false))
} else {
this.userNoList = this.userNoList.concat(
diff.map(item => ({
typeId: item.typeId,
userId: item.userId
}))
)
}
} else {
this.userList = this.userList.filter(user => !this.tableData.some(item => item.typeId === user.typeId))
this.userNoList = this.userNoList.filter(user => !this.tableData.some(item => item.typeId === user.typeId))
}
} else {
// :
//
if (!Array.isArray(val) || !val.length) {
// &
this.userList = []
this.userNoList = []
return
}
this.tableData = this.tableData || []
this.userList = this.userList || []
this.userNoList = this.userNoList || []
this.maxLength = this.maxLength || 9999 //
const isAllSelect = this.tableData.every(item => val.some(valItem => valItem.typeId === item.typeId))
const getDiff = (source, compareList) =>
source.filter(item => !compareList.some(target => target.typeId === item.typeId))
if (isAllSelect) {
//
const diff = getDiff(val, this.userList)
const diffNo = getDiff(val, this.userNoList)
const addWithLimit = (targetList, diffList, mapFn) => {
const spaceLeft = this.maxLength - targetList.length
const toAdd = diffList.slice(0, spaceLeft).map(mapFn)
const toDeselect = diffList.slice(spaceLeft)
toDeselect.forEach(item => this.$refs.multipleTable?.toggleRowSelection(item, false))
return targetList.concat(toAdd)
}
this.userList = addWithLimit(this.userList, diff, item => ({
typeId: item.typeId,
userId: this.userIdTemp
}))
this.userNoList = addWithLimit(this.userNoList, diffNo, item => ({
typeId: item.typeId,
userId: item.userId
}))
} else {
//
this.userList = this.userList.filter(user => !this.tableData.some(item => item.typeId === user.typeId))
this.userNoList = this.userNoList.filter(user => !this.tableData.some(item => item.typeId === user.typeId))
}
},
// handleSelect(selection, row) {
// this.toggleSelection(selection, row);
// },
// handleSelectAll(selection) {
// this.isAllSelect = !this.isAllSelect;
// let data = this.typeList;
// this.toggleSelect(data,this.isAllSelect,'all');
// },
// //
// selectTr(selection,row){
// this.$set(row,'isChecked',!row.isChecked);
// this.$nextTick(()=>{
// this.isAllSelect = row.isChecked;
// this.toggleSelect(row,row.isChecked,'tr');
// });
// },
// //
// toggleSelect(data,flag,type){
// if(type === 'all'){
// if(data.length > 0){
// data.forEach(item=>{
// this.toggleSelection(item, flag);
// if(item.children && item.children.length > 0){
// this.toggleSelect(item.children,flag,type)
// }
// })
// }
// }else {
// if(data.children && data.children.length > 0){
// data.children.forEach(item =>{
// item.isChecked = !item.isChecked;
// this.$refs.multipleTable.toggleRowSelection(item, flag);
// this.toggleSelect(item,flag,type);
// })
// }
// }
// },
// //
// toggleSelection(row, flag) {
// this.$set(row,'isChecked',flag);
// this.$nextTick(()=>{
// if (flag) {
// this.$refs.multipleTable.toggleRowSelection(row, flag);
// } else {
// this.$refs.multipleTable.clearSelection();
// }
// });
// },
/** 绑定按钮操作 */
handleBind() {
console.log('ids----', this.ids)
if (this.userIdTemp == -1) {
this.$alert('未勾选绑定人,无法绑定', '提示', {
type: 'warning',
@ -684,26 +594,14 @@ export default {
})
return
}
if (this.ids.length == 0) {
this.$alert('未进行勾选相关物资,无法绑定', '提示', {
type: 'warning',
confirmButtonText: '确定'
})
return
} else {
const ids = this.ids.join(',')
}
console.log('userList', this.userList)
// bindKeeper(this.userList).then(response => {
// this.$modal.msgSuccess('')
// this.ids = null
// this.userList = null
// this.userIdTemp = -1
// this.getTreeData()
// this.getList()
// this.$refs.multipleTable.clearSelection()
// })
bindPersonSettingApi(this.userList).then(response => {
const params = [
{
typeId: this.queryParams.typeId,
userId: this.userIdTemp
}
]
bindPersonSettingApi(params).then(response => {
this.$modal.msgSuccess('绑定成功')
this.ids = null
this.userList = null
@ -761,46 +659,6 @@ export default {
})
},
/** 提交按钮 */
// submitForm: function () {
// console.log(this.form, "---");
// this.$refs["form"].validate((valid) => {
// if (valid) {
// if (this.form.typeId != undefined) {
// updateMaType(this.form).then((response) => {
// this.$modal.msgSuccess("");
// this.open = false;
// this.getList();
// this.getTreeData();
// });
// } else {
// // this.form.companyId = this.companyId
// addMaType(this.form).then((response) => {
// this.$modal.msgSuccess("");
// this.open = false;
// this.getList();
// this.getTreeData();
// });
// }
// }
// });
// },
// /** */
// handleDelete(row) {
// const typeIds = row.typeId;
// this.$modal
// .confirm("")
// .then(function () {
// return delMaType(typeIds);
// })
// .then(() => {
// this.$modal.msgSuccess("");
// this.getList();
// this.getTreeData();
// })
// .catch(() => {});
// },
/** 导出按钮操作 */
handleExport() {
const formatTime = date => {

View File

@ -49,11 +49,11 @@
<el-table-column label="维修单号" align="center" width="150" prop="repairCode" :show-overflow-tooltip="true" />
<el-table-column label="物资类型" align="center" width="150" prop="type" :show-overflow-tooltip="true"/>
<el-table-column label="退料单号" align="center" width="150" prop="backCode" :show-overflow-tooltip="true"/>
<el-table-column label="维修班组" align="center" width="120" prop="repairer" :show-overflow-tooltip="true"/>
<!-- <el-table-column label="维修班组" align="center" width="120" prop="repairer" :show-overflow-tooltip="true"/> -->
<!-- <el-table-column label="退料人电话" align="center" prop="phone" :show-overflow-tooltip="true"/> -->
<el-table-column label="创建人" align="center" width="100" prop="createName" :show-overflow-tooltip="true"/>
<el-table-column label="创建时间" align="center" width="180" prop="createTime" :show-overflow-tooltip="true"/>
<el-table-column label="状态" align="center" width="150" :show-overflow-tooltip="true" prop="repairStatusCode">
<el-table-column label="状态" align="center" width="110" :show-overflow-tooltip="true" prop="repairStatusCode">
<template slot-scope="scope">
<dict-tag :options="dict.type.repair_task_status" :value="scope.row.repairStatusCode"/>
</template>

View File

@ -115,7 +115,7 @@
align="center"
:selectable="selectable"
/>
<el-table-column width="70" align="center" label="序号" type="index" :index="indexContinuation(queryParams.pageNum, queryParams.pageSize)"/>
<el-table-column width="55" align="center" label="序号" type="index" :index="indexContinuation(queryParams.pageNum, queryParams.pageSize)"/>
<el-table-column
align="center"
@ -152,25 +152,25 @@
prop="itemType"
:show-overflow-tooltip="true"
/>
<el-table-column
<!-- <el-table-column
label="维修班组"
align="center"
prop="teamName"
width="100px"
:show-overflow-tooltip="true"
/>
/> -->
<el-table-column
label="提交人"
align="center"
prop="createBy"
width="100px"
width="75px"
:show-overflow-tooltip="true"
/>
<el-table-column
label="提交时间"
align="center"
prop="createTime"
width="180px"
width="160px"
:show-overflow-tooltip="true"
>
</el-table-column>