修复金融机构异常
This commit is contained in:
@@ -69,7 +69,7 @@ export default {
|
|||||||
dialog: false,
|
dialog: false,
|
||||||
tableData: [],
|
tableData: [],
|
||||||
search: {organizationName: ""},
|
search: {organizationName: ""},
|
||||||
form: {},
|
form: {logoUrl: []},
|
||||||
colConfigs: [
|
colConfigs: [
|
||||||
{label: "金融机构名称", prop: "organizationName"},
|
{label: "金融机构名称", prop: "organizationName"},
|
||||||
{label: "创建人", prop: "createUserName", align: 'center', width: "120px"},
|
{label: "创建人", prop: "createUserName", align: 'center', width: "120px"},
|
||||||
@@ -95,10 +95,11 @@ export default {
|
|||||||
if (v) {
|
if (v) {
|
||||||
let {form: {logoUrl}} = this
|
let {form: {logoUrl}} = this
|
||||||
this.form.logoUrl = logoUrl?.[0]?.url
|
this.form.logoUrl = logoUrl?.[0]?.url
|
||||||
this.instance.post("/appfinancialorganization/addOrUpdate", form).then(res => {
|
this.instance.post("/appfinancialorganization/addOrUpdate", this.form).then(res => {
|
||||||
if (res?.code == 0) {
|
if (res?.code == 0) {
|
||||||
this.$message.success("提交成功!")
|
this.$message.success("提交成功!")
|
||||||
this.dialog = false
|
this.dialog = false
|
||||||
|
this.getTableData()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user