diff --git a/src/views/basic/basicCompany.vue b/src/views/basic/basicCompany.vue index fe09896..5abe518 100644 --- a/src/views/basic/basicCompany.vue +++ b/src/views/basic/basicCompany.vue @@ -127,7 +127,7 @@ - + - + - + - + - + - + - + - + @@ -342,7 +344,7 @@ - + { }); } else { - console.log("error submit!!"); return false; } }); @@ -1073,7 +1075,6 @@ export default { }).catch(() => { }); } else { - console.log("error submit!!"); return false; } }); @@ -1085,6 +1086,7 @@ export default { } else { this.companyEditDisabled = true; this.companyEditButtonStr = "编辑"; + this.getData(); } }, addUpdateLog(formName) { @@ -1109,7 +1111,6 @@ export default { }).catch(() => { }); } else { - console.log("error submit!!"); return false; } }); @@ -1120,7 +1121,6 @@ export default { customerId: store.getters.customerId, }; getCompany(tquery).then((response) => { - console.log(response) this.loading = false; this.inputQuery = response.data; this.inputQuery.bussinessStatus = this.inputQuery.bussinessStatus + ""; @@ -1375,11 +1375,8 @@ export default { this.inputQuery.areaCode = value.toString(); }, uploadHandleRemove(file, fileList) { - console.log(file, fileList); }, uploadHandlePreview(file) { - console.log(file); - console.log(this.fileList); }, uploadHandleExceed(files, fileList) { this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`); @@ -1411,7 +1408,6 @@ export default { return isLt; }, uploadHandleSuccess(response, file, fileList) { - console.log(response) if (response.code === 20000) { this.uploadFilePath('', response.data.name); @@ -1433,7 +1429,6 @@ export default { } }, uploadHandleSuccess2(response, file, fileList) { - console.log(response) if (response.code === 20000) { this.uploadFilePath('2', response.data.name); @@ -1454,7 +1449,6 @@ export default { } }, uploadHandleSuccess3(response, file, fileList) { - console.log(response) if (response.code === 20000) { this.uploadFilePath('3', response.data.name); @@ -1473,7 +1467,6 @@ export default { } }, uploadHandleSuccess4(response, file, fileList) { - console.log(response) if (response.code === 20000) { this.uploadFilePath('4', response.data.name); diff --git a/src/views/basic/basicCompanyProducts.vue b/src/views/basic/basicCompanyProducts.vue index 7b1e1d5..81d212a 100644 --- a/src/views/basic/basicCompanyProducts.vue +++ b/src/views/basic/basicCompanyProducts.vue @@ -47,7 +47,7 @@ - 查询 + 查询 { - console.log(response) this.loading = false; this.detailList = response.data || []; }) diff --git a/src/views/thrsys/ThrProductsSubmit.vue b/src/views/thrsys/ThrProductsSubmit.vue index 7888c64..5a46f76 100644 --- a/src/views/thrsys/ThrProductsSubmit.vue +++ b/src/views/thrsys/ThrProductsSubmit.vue @@ -50,7 +50,7 @@ - 查询 + 查询 新增 @@ -190,6 +190,10 @@ export default { }; this.getList(); }, + search() { + this.filterQuery.page = 1; + this.getList(); + }, checDialog(row) { this.checkVisible = true; this.curRow = row; diff --git a/src/views/userManage/customerManage.vue b/src/views/userManage/customerManage.vue index a24cafc..57ccbbc 100644 --- a/src/views/userManage/customerManage.vue +++ b/src/views/userManage/customerManage.vue @@ -153,6 +153,7 @@ size="small" style="width: 40%" type="number" + @change="verifyUserCount" > @@ -578,6 +579,12 @@ export default { .catch(() => { }); }, + verifyUserCount(val) { + if (val < 0) { + this.$message.error("用户数不得小于0!"); + this.formData.userMax = 0; + } + }, }, components: { customerUser, diff --git a/src/views/userManage/userAccountManage.vue b/src/views/userManage/userAccountManage.vue index f91c602..18941d5 100644 --- a/src/views/userManage/userAccountManage.vue +++ b/src/views/userManage/userAccountManage.vue @@ -87,6 +87,7 @@ @current-change="handleCurrentChange" layout="prev, pager, next" :total="total" + :current-page="query.page" > @@ -148,6 +149,22 @@ + + + +
+
+ + + +
+
+
+