123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <template>
- <div class="navigation yes-events">
- <el-select class="select" v-model="value" size="large">
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- <div class="tabs" v-for="(ele, idx) in list" :key="idx">
- <div
- class="tab-item"
- @click="handleTab(item)"
- :class="{ active: active === item.id }"
- v-for="(item, index) in ele"
- :key="index"
- >
- {{ item.name }}
- </div>
- </div>
- <el-checkbox-group
- v-show="childrenData"
- class="checkbox-group"
- v-model="checkedChildren"
- @change="handleCheckedChange"
- >
- <el-checkbox v-for="item in childrenData" :key="item" :label="item" :value="item">
- {{ item }}
- </el-checkbox>
- </el-checkbox-group>
- <!-- <div class="btn" @click="toPage">农场确权</div> -->
- </div>
- </template>
- <script setup>
- import { useRouter } from "vue-router";
- import { ref } from "vue";
- const router = useRouter();
- const value = ref("Option1");
- const options = [
- {
- value: "Option1",
- label: "2区",
- }
- ];
- const checkedChildren = ref(["树高"]);
- const childrenData = ref(["树高", "冠幅"]);
- const handleCheckedChange = (e) => {
- console.log("e", e);
- };
- const active = ref(1);
- const handleTab = ({ id, children }) => {
- active.value = id;
- childrenData.value = children;
- checkedChildren.value = [children[0]];
- };
- const list = ref([
- [
- {
- name: "基本指标",
- id: 1,
- children: ["品种", "树高", "冠幅"],
- },
- {
- name: "物候指标",
- id: 2,
- children: ["长穗长度", "单数华穗率"],
- },
- {
- name: "生态指标",
- id: 3,
- },
- {
- name: "生长指标",
- id: 4,
- },
- {
- name: "病虫指标",
- id: 5,
- },
- ],
- [
- {
- name: "处方图",
- id: 6,
- },
- ],
- ]);
- const toPage = () => {
- router.push("/authentic");
- };
- </script>
- <style lang="scss" scoped>
- .navigation {
- position: fixed;
- top: 34px;
- left: calc(50% - 470px);
- width: calc(100% - 430px * 2);
- display: flex;
- justify-content: center;
- align-items: center;
- .select{
- width: 120px;
- height: 50px;
- margin-right: 21px;
- ::v-deep{
- .el-select__wrapper{
- height: 100%;
- background: rgba(0, 0, 0, 0.3);
- box-shadow: 0 0 0 1px #F7BE5A;
- border-radius: 2px;
- text-align: center;
- }
- .el-select__placeholder{
- color: #F7BE5A;
- font-size: 20px;
- font-family: "PangMenZhengDao";
- }
- .el-select__caret{
- color: #F7BE5A;
- font-size: 20px;
- }
- }
- }
- .tabs {
- background: rgba(35, 35, 35, 0.8);
- border: 1px solid #555555;
- padding: 8px;
- border-radius: 8px;
- display: flex;
- justify-content: center;
- .tab-item {
- font-size: 16px;
- color: rgba(255, 255, 255, 0.8);
- padding: 7px 12px 9px 12px;
- font-family: "PangMenZhengDao";
- cursor: pointer;
- &.active {
- background: #ffd489;
- color: #1d1d1d;
- border-radius: 4px;
- }
- }
- .tab-item + .tab-item {
- margin-left: 25px;
- }
- }
- .tabs + .tabs {
- margin-left: 12px;
- }
- .checkbox-group {
- position: absolute;
- top: 74px;
- right: 30px;
- background: rgba(35, 35, 35, 0.8);
- border-radius: 8px;
- border: 1px solid #555555;
- padding: 10px 20px;
- display: flex;
- flex-direction: column;
- ::v-deep {
- .el-checkbox {
- margin-right: 0;
- }
- .el-checkbox__input.is-checked + .el-checkbox__label {
- color: #ffd489;
- }
- .el-checkbox__input.is-checked .el-checkbox__inner {
- background-color: #ffd489;
- border-color: #ffd489;
- &::after {
- border-color: #1d1d1d;
- }
- }
- .el-checkbox__label {
- color: #fff;
- }
- }
- }
- .btn {
- width: 80px;
- height: 30px;
- text-align: center;
- line-height: 28px;
- border-radius: 5px;
- cursor: pointer;
- background: rgba(255, 255, 255, 0.5);
- }
- }
- </style>
|