在搞加密解密

This commit is contained in:
xk_guohonglei
2020-09-01 10:17:18 +08:00
parent 95d1376376
commit e29760f1cb
29 changed files with 2139 additions and 406 deletions

View File

@@ -1,34 +1,32 @@
<template>
<!-- -->
<div class="img-box">
<div class="img">
<image :src="baseUrl+'static/img/w.png'"></image>
</div>
<p>这里没有相关记录哦~</p>
</div>
<!-- -->
<view class="img-box padding-lg margin-lg text-center">
<view class="bg-img margin radius flex align-center" :style="'background-image: url('+mainURL+'kong.png)'">
</view>
<text>这里没有相关记录哦~</text>
</view>
</template>
<script>
export default {
name: 'Empty',
data() {
return {
baseUrl: this.$baseURL
}
},
}
export default {
name: 'Empty',
data() {
return {
mainURL: this.global.mainURL,
}
},
}
</script>
<style scoped>
/* 空 */
.img-box {
width: 100%;
text-align: center;
color: rgb(148, 147, 147);
font-size: 14px;
padding-bottom: 20%;
}
.img {
width: 30%;
margin: 30% auto 3%;
}
/* 空 */
.img-box {
color: rgb(148, 147, 147);
font-size: 14px;
}
.bg-img{
min-height: 450rpx;
min-width: 200upx;
}
</style>