This commit is contained in:
liyuanchao 2025-08-22 17:29:41 +08:00
parent 58cb07d33f
commit 5a0a86fe4a
2 changed files with 4 additions and 4 deletions

View File

@ -27,8 +27,8 @@ const config = {
// config.baseUrl = 'http://tc.cqsznc.com:7080/api';
//正式
// config.baseUrl = 'http://183.230.235.66:11010/api';
config.baseUrl = 'http://183.230.235.66:11010/api';
config.baseUrl = 'http://9143b75.r28.cpolar.top';
// config.baseUrl = 'http://9143b75.r28.cpolar.top';
export default config;

View File

@ -65,7 +65,7 @@
<image
v-for="(img, idx) in realImages"
:key="idx"
:src="img"
:src="img.imagePath"
mode="aspectFill"
class="preview-image"
@click="previewImage(idx)"
@ -142,7 +142,7 @@ export default {
async loadEevetInfo() {
let res = await this.$u.api.getWarnEventInfo({}, this.warnInfo.id);
if (res.code == "200") {
this.realImages = res.data
}
this.loading = false;
},