Browse Source

fix issue

tags/v1.22.5.1^2
zhoupzh 3 years ago
parent
commit
54ac5e6b4b
3 changed files with 5 additions and 5 deletions
  1. +1
    -1
      web_src/js/components/images/Images.vue
  2. +1
    -1
      web_src/js/components/images/adminImages.vue
  3. +3
    -3
      web_src/js/components/images/selectImages.vue

+ 1
- 1
web_src/js/components/images/Images.vue View File

@@ -81,7 +81,7 @@
<a v-if="scope.row.userName||scope.row.relAvatarLink" :href="'/' + scope.row.userName" :title="scope.row.userName"> <a v-if="scope.row.userName||scope.row.relAvatarLink" :href="'/' + scope.row.userName" :title="scope.row.userName">
<img :src="scope.row.relAvatarLink" class="ui avatar image"> <img :src="scope.row.relAvatarLink" class="ui avatar image">
</a> </a>
<a v-else><img class="ui avatar image" src="/user/avatar/ghost/-1"></a>
<a v-else><img class="ui avatar image" title="Ghost" src="/user/avatar/ghost/-1"></a>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column


+ 1
- 1
web_src/js/components/images/adminImages.vue View File

@@ -72,7 +72,7 @@
<img :src="scope.row.relAvatarLink" class="ui avatar image"> <img :src="scope.row.relAvatarLink" class="ui avatar image">
</a> </a>
<a v-else> <a v-else>
<img class="ui avatar image" src="/user/avatar/ghost/-1">
<img class="ui avatar image" title="Ghost" src="/user/avatar/ghost/-1">
</a> </a>
</template> </template>
</el-table-column> </el-table-column>


+ 3
- 3
web_src/js/components/images/selectImages.vue View File

@@ -37,7 +37,7 @@
<img class="ui avatar mini image" style="width: 20px;height: 20px;" <img class="ui avatar mini image" style="width: 20px;height: 20px;"
:src="publicData.relAvatarLink"> :src="publicData.relAvatarLink">
</a> </a>
<a v-else><img class="ui avatar mini image" src="/user/avatar/ghost/-1"
<a v-else><img class="ui avatar mini image" title="Ghost" src="/user/avatar/ghost/-1"
style="width: 20px;height: 20px;"></a> style="width: 20px;height: 20px;"></a>
<span class="panel_datset_desc">{{publicData.description}}</span> <span class="panel_datset_desc">{{publicData.description}}</span>
</div> </div>
@@ -73,7 +73,7 @@
<img class="ui avatar mini image" style="width: 20px;height: 20px;" <img class="ui avatar mini image" style="width: 20px;height: 20px;"
:src="customData.relAvatarLink"> :src="customData.relAvatarLink">
</a> </a>
<a v-else><img class="ui avatar mini image" src="/user/avatar/ghost/-1"
<a v-else><img class="ui avatar mini image" title="Ghost" src="/user/avatar/ghost/-1"
style="width: 20px;height: 20px;"></a> style="width: 20px;height: 20px;"></a>


<span class="panel_datset_desc">{{customData.description}}</span> <span class="panel_datset_desc">{{customData.description}}</span>
@@ -125,7 +125,7 @@
<img class="ui avatar mini image" style="width: 20px;height: 20px;" <img class="ui avatar mini image" style="width: 20px;height: 20px;"
:src="starData.relAvatarLink"> :src="starData.relAvatarLink">
</a> </a>
<a v-else><img class="ui avatar mini image" src="/user/avatar/ghost/-1"
<a v-else><img class="ui avatar mini image" title="Ghost" src="/user/avatar/ghost/-1"
style="width: 20px;height: 20px;"></a> style="width: 20px;height: 20px;"></a>
<span class="panel_datset_desc">{{starData.description}}</span> <span class="panel_datset_desc">{{starData.description}}</span>
</div> </div>


Loading…
Cancel
Save