签名组件修改

This commit is contained in:
yunkexin 2026-01-07 09:50:12 +08:00
parent 78bba8ecdc
commit 13cfbde0c6

View File

@ -31,13 +31,13 @@
}, },
data() { data() {
return { return {
baseUrl: config.uni_app_web_api_url, baseUrl: config.uni_app_web_source_url,
urlResult: '' urlResult: ''
} }
}, },
beforeMount() { beforeMount() {
if (this.user && this.user.FILE_PATH && this.user.FILE_PATH.length > 0) { if (this.user && this.user.FILE_PATH && this.user.FILE_PATH.length > 0) {
this.urlResult = this.baseUrl + ':3199' + this.user.FILE_PATH this.urlResult = this.baseUrl + this.user.FILE_PATH
} else { } else {
this.urlResult = '' this.urlResult = ''
} }