Newer
Older
smartKitchenFront / src / views / account / stateView.vue
liuyangyingjie on 26 Oct 2022 525 bytes first commit
<template>
  <div class="state-container">
    <div class="state-title">
      当前账号的状态为:
    </div>
    <image src="" mode="scaleToFill" />
    <div class="state-result">未审核</div>
  </div>
</template>

<script>
export default {
  data () {
    return {

    }
  },
  created () {

  },
  methods: {

  }
}
</script>

<style lang='scss' scoped>
.state-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;

  .state-title {}

  .state-result {
    font-weight: blod;
  }
}
</style>