Newer
Older
smartKitchenFront / src / views / account / stateView.vue
liuyangyingjie on 31 Oct 2022 554 bytes feat(修改问题,添加注释): 整体提交
<!--当前状态页面-->
<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>