This commit is contained in:
BianLzhaoMin 2025-04-28 18:10:58 +08:00
parent e85ba62ec8
commit f1e3c9825c
2 changed files with 2 additions and 14 deletions

View File

@ -798,8 +798,6 @@ export default {
async onConfirm() {
this.$refs.addAndEditFormRef.validate(async (valid) => {
if (valid) {
console.log(this.addAndEditForm)
//
const params = {
...this.addAndEditForm,
@ -1006,8 +1004,6 @@ export default {
})
}
// console.log(params)
const API = this.formType === 1 ? addGwTemplateAPI : editGwTemplateAPI
if (this.formType === 3) {
params.id = this.queryId
@ -1282,8 +1278,6 @@ export default {
// change
async onChangePerson(value) {
console.log(value, 'value')
console.log(this.companyKeyPersonList, 'this.companyKeyPersonList')
if (
this.companyKeyPersonList.length > 0 &&
this.companyKeyPersonList.some((item) => item.userId == value)

View File

@ -147,7 +147,6 @@ export default {
},
//
onHandleDelete(row) {
console.log(row)
this.$modal
.confirm('确定删除该业绩吗?')
.then(async () => {
@ -157,9 +156,7 @@ export default {
this.getGwTemplateList()
}
})
.catch(() => {
console.log('取消')
})
.catch(() => {})
},
//
onHandleAddOrEdit(row, type) {
@ -178,9 +175,7 @@ export default {
this.dialogConfig.outerVisible = true
},
//
onHandleDownload(row) {
console.log(row)
},
onHandleDownload(row) {},
//
async getGwTemplateList() {
@ -194,7 +189,6 @@ export default {
const res = await getGwTemplateListAPI(this.queryParams)
this.tableList = res.rows
this.total = res.total
console.log(res, 'res')
},
//
resetQueryParams() {