You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
758 B
45 lines
758 B
<template>
|
|
<view class="item flex_col">
|
|
<image src="../../static/images/no_data.png" mode=""></image>
|
|
<text>{{txt}}</text>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
txt: {
|
|
value: String,
|
|
default: "暂无数据"
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
watch: {
|
|
// value(val) {
|
|
// }
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.item{
|
|
image{
|
|
width: 368rpx;
|
|
height: 316rpx;
|
|
margin-top: 80rpx;
|
|
}
|
|
text{
|
|
font-size: 28rpx;
|
|
color: #9A9A9D;
|
|
font-weight: border;
|
|
margin: 38rpx 0;
|
|
}
|
|
}
|
|
</style>
|