|
@@ -11,7 +11,22 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
- <DiscountedAColumnar />
|
|
|
+
|
|
|
+ <div class="hy_tabs">
|
|
|
+ <el-tabs v-model="activeName" @tab-click="handleClick">
|
|
|
+ <el-tab-pane label="期限监测" name="first">
|
|
|
+ <DiscountedAColumnar class="discounteda_columnar_hy" />
|
|
|
+
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="复垦监测" name="second">
|
|
|
+ <DiscountedAColumnar class="discounteda_columnar_hy" />
|
|
|
+
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="用途监测" name="third">
|
|
|
+ 用途监测
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -24,6 +39,7 @@ export default {
|
|
|
components: { DiscountedAColumnar },
|
|
|
data() {
|
|
|
return {
|
|
|
+ activeName: 'first',
|
|
|
radio: 'cut',
|
|
|
left_value: 'nzyd',
|
|
|
options: [
|
|
@@ -65,14 +81,14 @@ export default {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.hysy {
|
|
|
- position: absolute;
|
|
|
- top: 38.4rem;
|
|
|
- left: 49.5vw;
|
|
|
- width: 24vw;
|
|
|
+ // position: absolute;
|
|
|
+ // top: 38.4rem;
|
|
|
+ // left: 50%;
|
|
|
+ // width: 24vw;
|
|
|
|
|
|
- height: 17rem;
|
|
|
+ // height: 17rem;
|
|
|
z-index: 100;
|
|
|
- border: 1px solid red;
|
|
|
+ // border: 1px solid red;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -94,9 +110,9 @@ export default {
|
|
|
color: #fff;
|
|
|
font-size: 14px;
|
|
|
font-weight: bold;
|
|
|
- position: relative;
|
|
|
+ position: absolute;
|
|
|
top: 0.3rem;
|
|
|
- left: -15rem;
|
|
|
+ left: 2.5rem;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -130,7 +146,7 @@ export default {
|
|
|
.selectTab {
|
|
|
position: absolute;
|
|
|
top: 3px;
|
|
|
- right: 22px;
|
|
|
+ right: 12px;
|
|
|
z-index: 100;
|
|
|
|
|
|
/deep/ .el-input__inner {
|
|
@@ -208,4 +224,15 @@ export default {
|
|
|
right: 8px;
|
|
|
bottom: 9px;
|
|
|
}
|
|
|
+
|
|
|
+.discounteda_columnar_hy {
|
|
|
+ width: 21.5vw !important;
|
|
|
+}
|
|
|
+.hy_tabs{
|
|
|
+ // width: 90%;
|
|
|
+}
|
|
|
+/deep/ .el-tabs__item {
|
|
|
+ color: white !important;
|
|
|
+ font-size: 12px !important;
|
|
|
+}
|
|
|
</style>
|