|
@@ -50,8 +50,8 @@
|
|
|
<el-image
|
|
|
v-if="scope.row.spotLabelRoute"
|
|
|
style="width: 24px; height: 24px"
|
|
|
- :preview-src-list="['https://smartpark.caih.com/dmapi/archive/' + scope.row.spotLabelRoute]"
|
|
|
- :src="'https://smartpark.caih.com/dmapi/archive/' + scope.row.spotLabelRoute">
|
|
|
+ :preview-src-list="[baseApi+'archive/' + scope.row.spotLabelRoute]"
|
|
|
+ :src="baseApi+'archive/' + scope.row.spotLabelRoute">
|
|
|
</el-image>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -60,8 +60,8 @@
|
|
|
<el-image
|
|
|
v-if="scope.row.pictureRoute"
|
|
|
style="width: 24px; height: 24px"
|
|
|
- :preview-src-list="['https://smartpark.caih.com/dmapi/archive/' + scope.row.pictureRoute]"
|
|
|
- :src="'https://smartpark.caih.com/dmapi/archive/' + scope.row.pictureRoute">
|
|
|
+ :preview-src-list="[baseApi+'archive/' + scope.row.pictureRoute]"
|
|
|
+ :src="baseApi+'archive/' + scope.row.pictureRoute">
|
|
|
</el-image>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -185,6 +185,7 @@ export default {
|
|
|
name: "Floor",
|
|
|
data() {
|
|
|
return {
|
|
|
+ baseApi:process.env.VUE_APP_BASE_API,
|
|
|
exportLoading:false,
|
|
|
// 显示搜索条件
|
|
|
showSearch: true,
|