35 lines
516 B
Vue
35 lines
516 B
Vue
<template>
|
|
<view class="nodata" :style="'width: ' + 375 + 'px; height: ' +500 + 'px;'">
|
|
<text class="warn-info">测试</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
data() {
|
|
return {
|
|
popupsTop: "0rpx",
|
|
popupsLeft: "0rpx",
|
|
show: false,
|
|
dynPlace: "",
|
|
};
|
|
},
|
|
|
|
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.nodata {
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: #000000;
|
|
}
|
|
|
|
.warn-info {
|
|
color: #ffffff;
|
|
font-size: 36rpx;
|
|
font-weight: 600;
|
|
}
|
|
</style> |