opt.vue 1.52 KB
Newer Older
乐宝呗666's avatar
乐宝呗666 committed
1
<template>
乐宝呗666's avatar
乐宝呗666 committed
2 3 4 5
  <div class="opt-container">
    <div class="opt-page">
      <van-tabs type="card" v-model="activeName">
        <van-tab title="机顶盒激活" name="1">
6
          <custom-form  actived="1"></custom-form>
乐宝呗666's avatar
乐宝呗666 committed
7 8 9 10 11
        </van-tab>
        <van-tab title="故障上报" name="2">
          <custom-form actived="2"></custom-form>
        </van-tab>
      </van-tabs>
乐宝呗666's avatar
乐宝呗666 committed
12
    </div>
乐宝呗666's avatar
乐宝呗666 committed
13
  </div>
乐宝呗666's avatar
乐宝呗666 committed
14 15
</template>
<script>
乐宝呗666's avatar
乐宝呗666 committed
16 17 18 19 20 21 22 23 24 25 26
import CustomForm from "./components/form";
export default {
  components: {
    CustomForm,
  },
  data() {
    return {
      activeName: "1",
    };
  },
};
乐宝呗666's avatar
乐宝呗666 committed
27 28
</script>
<style lang="scss">
乐宝呗666's avatar
乐宝呗666 committed
29 30 31 32 33 34 35 36 37 38 39 40 41
.opt-container {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 16px;
  right: 16px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  .opt-page {
    width: 100%;
    height: 100%;
  }
乐宝呗666's avatar
乐宝呗666 committed
42

乐宝呗666's avatar
乐宝呗666 committed
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
  .van-tabs__nav--card {
    margin: 0;
  }
  .van-tabs {
    width: 100%;
    height: 100%;
  }
  .van-tabs--card > .van-tabs__wrap {
    height: 40px;
  }
  .van-tabs__nav--card .van-tab {
    color: #333;
    font-size: 16px;
    border-right: none;
  }
  .van-tabs__nav--card {
    height: 40px;
    background: #eeeeee;
    border-radius: 8px 8px 0 0;
    border: none;
  }
  .van-tabs__nav--card .van-tab.van-tab--active {
    color: #fff;
    background-color: #a4151d;
  }
  .van-tabs__nav--card .van-tab.van-tab--active:last-child {
    border-top-right-radius: 8px;
  }
  .van-tabs__nav--card .van-tab.van-tab--active:first-child {
    border-top-left-radius: 8px;
  }
}
乐宝呗666's avatar
乐宝呗666 committed
75 76
</style>