This commit is contained in:
yanran200730
2023-06-09 15:49:47 +08:00
parent 9c45f25e8d
commit 164fe19a4a
11 changed files with 32 additions and 29 deletions

View File

@@ -131,7 +131,7 @@ export default {
saveSaas() {
this.$refs.saasForm.validate(v => {
if (v) {
this.instance.post("/appSaas/addOrUpdate", this.dialogForm).then(res => {
this.instance.post("/api/appSaas/addOrUpdate", this.dialogForm).then(res => {
if (res?.code == 0) {
this.dialog = false;
this.$message.success("保存成功")
@@ -148,7 +148,7 @@ export default {
this.$refs.updatePwdForm.validate(v => {
if (v) {
this.updatePwdForm.id = this.currentSaas.id
this.instance.post("/appSaas/updatePwd", null, {params: this.updatePwdForm}).then(res => {
this.instance.post("/api/appSaas/updatePwd", null, {params: this.updatePwdForm}).then(res => {
if (res?.code == 0) {
this.updateDialog = false;
this.$message.success("密码修改成功")