镜像自地址
https://github.com/ialley-workshop-open/uni-halo.git
已同步 2026-06-12 13:19:31 +08:00
fix: 修复启动页面图片配置路径问题
这个提交包含在:
+2
-2
@@ -41,7 +41,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="user-info__container flex flex-col flex-center">
|
<view class="user-info__container flex flex-col flex-center">
|
||||||
<image class="user-info__avatar" :src="startConfig.logo" mode="aspectFill"></image>
|
<image class="user-info__avatar" :src="$utils.checkImageUrl(startConfig.logo)" mode="aspectFill"></image>
|
||||||
<view class="user-info__nick-name">「 {{ startConfig.title }} 」</view>
|
<view class="user-info__nick-name">「 {{ startConfig.title }} 」</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -72,7 +72,7 @@ export default {
|
|||||||
},
|
},
|
||||||
pageStyle() {
|
pageStyle() {
|
||||||
if (this.startConfig.bg) {
|
if (this.startConfig.bg) {
|
||||||
const _bg = this.$utils.checkIsUrl(this.startConfig.bg) ? `url(${this.startConfig.bg})` : this
|
const _bg = this.$utils.checkIsUrl(this.startConfig.bg) ? `url(${this.$utils.checkImageUrl(this.startConfig.bg)})` : this
|
||||||
.startConfig.bg;
|
.startConfig.bg;
|
||||||
return {
|
return {
|
||||||
background: _bg + '!important'
|
background: _bg + '!important'
|
||||||
|
|||||||
在新工单中引用
屏蔽一个用户