Zlpt_Portal/src/views/parity/index.vue

27 lines
528 B
Vue
Raw Normal View History

<script setup lang="ts">
import NavMenu from 'components/Navmenu/index.vue'
</script>
2023-12-12 09:23:09 +08:00
<template>
<!-- 寻源比价 -->
<NavMenu />
<!-- 表单 -->
<el-form :inline="true">
<el-form-item label="寻源标题:">
<el-input style="width: 160px" />
</el-form-item>
<el-form-item label="日期范围:">
<el-input style="width: 160px" />
</el-form-item>
</el-form>
2023-12-12 09:23:09 +08:00
</template>
<style scoped>
.el-form {
padding: 15px 0;
}
</style>