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

View File

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