You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.5 KiB
66 lines
1.5 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-11-22 15:56:04
|
|
* @LastEditTime: 2021-11-22 17:14:10
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
* @FilePath: /ansu-business/src/views/Waybill/index.vue
|
|
-->
|
|
<template>
|
|
<div class="box">
|
|
<div class="top">
|
|
<div class="topleft">
|
|
<a-button-group>
|
|
<a-button icon="plus" type="primary">添加楼栋</a-button>
|
|
<a-button>导入</a-button>
|
|
</a-button-group>
|
|
</div>
|
|
<div class="topright">
|
|
<a-form-model :model="form" layout="inline">
|
|
<a-form-model-item>
|
|
<a-input-search v-model="form.c" placeholder="请输入搜索信息" style="width: 160px"></a-input-search>
|
|
</a-form-model-item>
|
|
</a-form-model>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return{
|
|
form: {
|
|
a: "",
|
|
b: "",
|
|
c: "",
|
|
page:1
|
|
},
|
|
};
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.box {
|
|
width: 100%;
|
|
}
|
|
.top {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
.topleft {
|
|
width: 25%;
|
|
height: 50px;
|
|
}
|
|
.tpright {
|
|
width: 75%;
|
|
height: 50px;
|
|
}
|
|
}
|
|
</style>
|