| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928 |
- <template>
- <div class="rycx">
- <!-- 页面头部 -->
- <HomePageHead></HomePageHead>
- <!-- 页面导航 -->
- <HomePageNavigation></HomePageNavigation>
- <!-- 面包屑导航 -->
- <div class="breadcrumb">
- <div class="inner">
- <span class="location">当前位置:</span>
- <el-breadcrumb :separator-icon="ArrowRight">
- <el-breadcrumb-item>
- <NuxtLink to="/">首页</NuxtLink>
- </el-breadcrumb-item>
- <el-breadcrumb-item>
- <NuxtLink to="/">人员查询</NuxtLink>
- </el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- <!-- 人员查询内容 -->
- <div class="rycxContent">
- <div class="contentLeft">
- <div class="conLeft">
- <div class="topTitle">
- <img src="../../public/index/search.png" alt="">
- 查询相关工作人员或外聘人员
- </div>
- <div class="con_text">请输入您要查询的工作人员/外聘人员姓名或证件编号</div>
- <el-form :model="form" label-width="auto" style="max-width: 375px">
- <el-form-item label="人员类型:">
- <el-select v-model="form.region" placeholder="请选择人员类型">
- <el-option label="不限" value="shanghai" />
- <el-option label="调研员" value="beijing" />
- </el-select>
- </el-form-item>
- <el-form-item label="人员姓名:">
- <el-input v-model="form.name" placeholder="请输入人员姓名" />
- </el-form-item>
- <el-form-item label="证件编号:">
- <el-input v-model="form.cardID" placeholder="请输入证件编号" />
- </el-form-item>
- </el-form>
- <div class="submit">
- <button class="submitBtn">提交</button>
- </div>
- </div>
- <div class="conRight">
- <img src="../../public/index/index.png" alt="">
- <div>手机扫描查询</div>
- </div>
- </div>
- <div class="contentRight">
- <div class="right_part1">
- <div class="part1Title">车辆查询</div>
- <div class="part1Text">请输入相关工作车辆或车牌号</div>
- <input type="text" name="" id="" placeholder="车牌">
- <input type="text" name="" id="" placeholder="车型">
- <div class="btnBox">
- <button class="cxbtn">查询</button>
- <button class="rebtn">重置</button>
- </div>
- </div>
- <div class="right_part1">
- <div class="part1Title">选题查询</div>
- <div class="part1Text">请输入你想要查询的选题</div>
- <div class="selectBox">
- <span>地区:</span>
- <select name="" id="">
- <option value="shanghai">--</option>
- <option value="beijing">地区1</option>
- <option value="guangzhou">地区2</option>
- </select>
- <select name="" id="">
- <option value="shanghai">--</option>
- <option value="beijing">地区1</option>
- <option value="guangzhou">地区2</option>
- </select>
- <select name="" id="">
- <option value="shanghai">--</option>
- <option value="beijing">地区1</option>
- <option value="guangzhou">地区2</option>
- </select>
- </div>
- <input type="text" name="" id="" placeholder="选题名称">
- <div class="btnBox">
- <button class="cxbtn">查询</button>
- <button class="rebtn">重置</button>
- </div>
- </div>
- </div>
- </div>
- <!-- 页面底部 -->
- <HomeFoot></HomeFoot>
- </div>
- </template>
- <script setup>
- import { ref, onMounted } from 'vue'
- import { ElBreadcrumb, ElBreadcrumbItem, ElForm, ElFormItem, ElInput, ElSelect, ElOption, ElButton } from 'element-plus'
- import { ArrowRight } from '@element-plus/icons-vue'
- const form = ref({
- name: '',
- region: '',
- cardID: '',
- })
- </script>
- <style lang="less" scoped>
- @media screen and (min-width: 1401px) {
- .rycx {
- font-family: '微软雅黑', Microsoft YaHei;
- //导航条
- .breadcrumb {
- width: 100%;
- height: 30PX;
- line-height: 30PX;
- margin-top: 20PX;
- margin-bottom: 20PX;
- .inner {
- width: 1400PX;
- border: 1PX solid #ccc;
- color: #000;
- font-size: 16PX;
- margin: 0 auto;
- .location {
- margin-right: 20PX;
- width: 100PX;
- height: 22PX;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 16PX;
- color: #000;
- line-height: 23PX;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- :deep(.el-breadcrumb__separator) {
- color: #000;
- font-weight: bold;
- margin: 0 9PX;
- }
- :deep(.el-breadcrumb) {
- display: inline-block;
- vertical-align: -4PX;
- }
- :deep(.el-breadcrumb__inner a),
- :deep(.el-breadcrumb__inner.is-link) {
- color: #000;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
- color: #000;
- }
- span {
- font-weight: 400;
- font-size: 16PX;
- color: #000;
- line-height: 23PX;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .rycxContent {
- width: 1400PX;
- margin: 20PX auto;
- display: flex;
- justify-content: space-between;
- .contentLeft {
- display: flex;
- width: 60%;
- height: 405PX;
- // height: auto;
- overflow: hidden;
- border: 1PX solid #333;
- padding: 20PX;
- box-sizing: border-box;
- .conLeft {
- width: 60%;
- .topTitle {
- font-size: 19PX;
- color: #000;
- img {
- width: 24PX;
- height: 24PX;
- margin-right: 10PX;
- vertical-align: -4PX;
- }
- }
- .con_text {
- // width: 100%;
- height: auto;
- line-height: 30PX;
- margin: 20PX 0;
- font-size: 16PX;
- color: #333;
- }
- .submit {
- width: 100%;
- margin-top: 20PX;
- text-align: center;
- .submitBtn {
- width: 100PX;
- height: 40PX;
- line-height: 40PX;
- text-align: center;
- font-size: 16PX;
- color: #fff;
- background-color: #027dc3;
- border: none;
- }
- }
- :deep(.el-form-item__label) {
- font-size: 16PX;
- color: #333;
- line-height: 40PX;
- }
- :deep(.el-select__wrapper) {
- min-height: 40PX;
- }
- :deep(.el-input__inner) {
- height: 38PX;
- }
- // :deep(.el-input) {
- // --el-input-border-color: #333;
- // --el-input-hover-border-color: #333;
- // --el-input-clear-hover-color: #333;
- // --el-input-focus-border-color: #333;
- // }
- }
- .conRight {
- width: 38%;
- height: auto;
- float: right;
- overflow: hidden;
- margin-top: 30PX;
- margin-left: 20PX;
- img {
- width: 100%;
- }
- div {
- width: 100%;
- text-align: center;
- font-size: 16PX;
- color: #333;
- line-height: 30PX;
- }
- }
- }
- .contentRight {
- width: 38%;
- .right_part1 {
- .part1Title {
- width: 100%;
- height: auto;
- overflow: hidden;
- line-height: 40PX;
- font-size: 18PX;
- color: #000;
- }
- .part1Text {
- display: block;
- width: 100%;
- height: 70PX;
- line-height: 70PX;
- text-align: center;
- font-size: 16PX;
- color: #333;
- }
- .selectBox {
- width: 100%;
- height: 70PX;
- line-height: 70PX;
- text-align: center;
- font-size: 16PX;
- color: #333;
- span {
- font-weight: 700;
- margin-right: 10PX;
- }
- select {
- min-width: 90PX;
- height: 34PX;
- line-height: 34PX;
- padding: 0 10PX;
- box-sizing: border-box;
- margin-right: 10PX;
- outline: none;
- border-radius: 4PX;
- border-color: #ccc;
- }
- }
- input {
- width: 90%;
- height: 40PX;
- line-height: 40PX;
- font-size: 16PX;
- color: #333;
- padding-left: 10PX;
- outline: none;
- margin-bottom: 20PX;
- }
- .btnBox {
- width: 220PX;
- height: auto;
- overflow: hidden;
- margin: 20PX auto;
- .cxbtn {
- float: left;
- display: block;
- width: 90PX;
- height: 40PX;
- line-height: 40PX;
- text-align: center;
- font-size: 16PX;
- color: #fff;
- background: #027dc3;
- outline: none;
- border: none;
- }
- .rebtn {
- background: #ccc;
- border: 1PX solid #027dc3;
- color: #027dc3;
- float: right;
- display: block;
- width: 90PX;
- height: 40PX;
- line-height: 40PX;
- text-align: center;
- font-size: 16PX;
- }
- }
- }
- }
- }
- }
- }
- @media screen and (min-width: 801px) and (max-width: 1400px) {
- .rycx {
- font-family: '微软雅黑', Microsoft YaHei;
- //导航条
- .breadcrumb {
- width: 100%;
- height: 30px;
- line-height: 30px;
- margin-top: 20px;
- margin-bottom: 20px;
- .inner {
- width: 1400px;
- border: 1px solid #ccc;
- color: #000;
- font-size: 16px;
- .location {
- margin-right: 20px;
- width: 100px;
- height: 22px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 16px;
- color: #000;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- :deep(.el-breadcrumb__separator) {
- color: #000;
- font-weight: bold;
- margin: 0 9px;
- }
- :deep(.el-breadcrumb) {
- display: inline-block;
- vertical-align: -4px;
- }
- :deep(.el-breadcrumb__inner a),
- :deep(.el-breadcrumb__inner.is-link) {
- color: #000;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
- color: #000;
- }
- span {
- font-weight: 400;
- font-size: 16px;
- color: #000;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .rycxContent {
- width: 1400px;
- margin: 20px auto;
- display: flex;
- justify-content: space-between;
- .contentLeft {
- display: flex;
- width: 60%;
- height: 405px;
- // height: auto;
- overflow: hidden;
- border: 1px solid #333;
- padding: 20px;
- box-sizing: border-box;
- .conLeft {
- width: 60%;
- .topTitle {
- font-size: 19px;
- color: #000;
- img {
- width: 24px;
- height: 24px;
- margin-right: 10px;
- vertical-align: -4px;
- }
- }
- .con_text {
- // width: 100%;
- height: auto;
- line-height: 30px;
- margin: 20px 0;
- font-size: 16px;
- color: #333;
- }
- .submit {
- width: 100%;
- margin-top: 20px;
- text-align: center;
- .submitBtn {
- width: 100px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- font-size: 16px;
- color: #fff;
- background-color: #027dc3;
- border: none;
- }
- }
- :deep(.el-form-item__label) {
- font-size: 16px;
- color: #333;
- line-height: 40px;
- }
- :deep(.el-select__wrapper) {
- min-height: 40px;
- }
- :deep(.el-input__inner) {
- height: 38px;
- }
- // :deep(.el-input) {
- // --el-input-border-color: #333;
- // --el-input-hover-border-color: #333;
- // --el-input-clear-hover-color: #333;
- // --el-input-focus-border-color: #333;
- // }
- }
- .conRight {
- width: 38%;
- height: auto;
- float: right;
- overflow: hidden;
- margin-top: 30px;
- margin-left: 20px;
- img {
- width: 100%;
- }
- div {
- width: 100%;
- text-align: center;
- font-size: 16px;
- color: #333;
- line-height: 30px;
- }
- }
- }
- .contentRight {
- width: 38%;
- .right_part1 {
- .part1Title {
- width: 100%;
- height: auto;
- overflow: hidden;
- line-height: 40px;
- font-size: 18px;
- color: #000;
- }
- .part1Text {
- display: block;
- width: 100%;
- height: 70px;
- line-height: 70px;
- text-align: center;
- font-size: 16px;
- color: #333;
- }
- .selectBox {
- width: 100%;
- height: 70px;
- line-height: 70px;
- text-align: center;
- font-size: 16px;
- color: #333;
- span {
- font-weight: 700;
- margin-right: 10px;
- }
- select {
- min-width: 90px;
- height: 34px;
- line-height: 34px;
- padding: 0 10px;
- box-sizing: border-box;
- margin-right: 10px;
- outline: none;
- border-radius: 4px;
- border-color: #ccc;
- }
- }
- input {
- width: 90%;
- height: 40px;
- line-height: 40px;
- font-size: 16px;
- color: #333;
- padding-left: 10px;
- outline: none;
- margin-bottom: 20px;
- }
- .btnBox {
- width: 220px;
- height: auto;
- overflow: hidden;
- margin: 20px auto;
- .cxbtn {
- float: left;
- display: block;
- width: 90px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- font-size: 16px;
- color: #fff;
- background: #027dc3;
- outline: none;
- border: none;
- }
- .rebtn {
- background: #ccc;
- border: 1px solid #027dc3;
- color: #027dc3;
- float: right;
- display: block;
- width: 90px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- font-size: 16px;
- }
- }
- }
- }
- }
- }
- }
- @media screen and (max-width: 800px) {
- .rycx {
- font-family: '微软雅黑', Microsoft YaHei;
- //导航条
- .breadcrumb {
- width: 100%;
- height: 30px;
- line-height: 30px;
- margin-top: 20px;
- margin-bottom: 20px;
- .inner {
- width: 1400px;
- border: 1px solid #ccc;
- color: #000;
- font-size: 16px;
- .location {
- margin-right: 20px;
- width: 100px;
- height: 22px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 16px;
- color: #000;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- :deep(.el-breadcrumb__separator) {
- color: #000;
- font-weight: bold;
- margin: 0 9px;
- }
- :deep(.el-breadcrumb) {
- display: inline-block;
- vertical-align: -4px;
- }
- :deep(.el-breadcrumb__inner a),
- :deep(.el-breadcrumb__inner.is-link) {
- color: #000;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
- :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
- color: #000;
- }
- span {
- font-weight: 400;
- font-size: 16px;
- color: #000;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .rycxContent {
- width: 1400px;
- margin: 20px auto;
- display: flex;
- justify-content: space-between;
- .contentLeft {
- display: flex;
- width: 60%;
- height: 405px;
- // height: auto;
- overflow: hidden;
- border: 1px solid #333;
- padding: 20px;
- box-sizing: border-box;
- .conLeft {
- width: 60%;
- .topTitle {
- font-size: 19px;
- color: #000;
- img {
- width: 24px;
- height: 24px;
- margin-right: 10px;
- vertical-align: -4px;
- }
- }
- .con_text {
- // width: 100%;
- height: auto;
- line-height: 30px;
- margin: 20px 0;
- font-size: 16px;
- color: #333;
- }
- .submit {
- width: 100%;
- margin-top: 20px;
- text-align: center;
- .submitBtn {
- width: 100px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- font-size: 16px;
- color: #fff;
- background-color: #027dc3;
- border: none;
- }
- }
- :deep(.el-form-item__label) {
- font-size: 16px;
- color: #333;
- line-height: 40px;
- }
- :deep(.el-select__wrapper) {
- min-height: 40px;
- }
- :deep(.el-input__inner) {
- height: 38px;
- }
- // :deep(.el-input) {
- // --el-input-border-color: #333;
- // --el-input-hover-border-color: #333;
- // --el-input-clear-hover-color: #333;
- // --el-input-focus-border-color: #333;
- // }
- }
- .conRight {
- width: 38%;
- height: auto;
- float: right;
- overflow: hidden;
- margin-top: 30px;
- margin-left: 20px;
- img {
- width: 100%;
- }
- div {
- width: 100%;
- text-align: center;
- font-size: 16px;
- color: #333;
- line-height: 30px;
- }
- }
- }
- .contentRight {
- width: 38%;
- .right_part1 {
- .part1Title {
- width: 100%;
- height: auto;
- overflow: hidden;
- line-height: 40px;
- font-size: 18px;
- color: #000;
- }
- .part1Text {
- display: block;
- width: 100%;
- height: 70px;
- line-height: 70px;
- text-align: center;
- font-size: 16px;
- color: #333;
- }
- .selectBox {
- width: 100%;
- height: 70px;
- line-height: 70px;
- text-align: center;
- font-size: 16px;
- color: #333;
- span {
- font-weight: 700;
- margin-right: 10px;
- }
- select {
- min-width: 90px;
- height: 34px;
- line-height: 34px;
- padding: 0 10px;
- box-sizing: border-box;
- margin-right: 10px;
- outline: none;
- border-radius: 4px;
- border-color: #ccc;
- }
- }
- input {
- width: 90%;
- height: 40px;
- line-height: 40px;
- font-size: 16px;
- color: #333;
- padding-left: 10px;
- outline: none;
- margin-bottom: 20px;
- }
- .btnBox {
- width: 220px;
- height: auto;
- overflow: hidden;
- margin: 20px auto;
- .cxbtn {
- float: left;
- display: block;
- width: 90px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- font-size: 16px;
- color: #fff;
- background: #027dc3;
- outline: none;
- border: none;
- }
- .rebtn {
- background: #ccc;
- border: 1px solid #027dc3;
- color: #027dc3;
- float: right;
- display: block;
- width: 90px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- font-size: 16px;
- }
- }
- }
- }
- }
- }
- }
- </style>
|