29 lines
519 B
Vue
Raw Normal View History

2025-04-12 15:57:15 +08:00
<template>
2025-04-22 14:02:28 +08:00
<section class="framing_service_content"><el-button type="primary">农事服务</el-button></section>
2025-04-12 15:57:15 +08:00
</template>
2025-04-22 14:02:28 +08:00
<script setup>
2025-04-12 15:57:15 +08:00
import { ref } from 'vue';
/* --------------- data --------------- */
// #region
// #endregion
/* --------------- methods --------------- */
// #region
// #endregion
</script>
2025-04-22 14:02:28 +08:00
<style lang="scss" scoped>
.framing_service_content {
margin: 0 auto;
2025-05-20 13:05:37 +08:00
padding: 0 32px;
2025-04-22 14:02:28 +08:00
width: 1200px;
min-height: 600px;
2025-05-20 13:05:37 +08:00
border: 1px solid skyblue;
box-sizing: border-box;
2025-04-22 14:02:28 +08:00
}
</style>