123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <template>
- <view >
-
- <equipmentRetrieval
- ref="equipmentRetrievalRef" :iscomponents="0"></equipmentRetrieval>
- </view>
- </template>
- <script>
- //import * as API from '@/apis/pagejs/index.js'
- import equipmentRetrieval from "@/components/equipmentRetrieval"
-
- export default {
-
- data() {
- return {
-
- }
- },
- components:{
- equipmentRetrieval
- },
- mounted() {
-
- //this.getDeviceTypeList();
- },
- onReady() {
- //this.getList()
- },
- onReachBottom() {
- // this.myLoadmoreonReachBottom()
-
- },
- methods: {
-
-
- },
-
- }
- </script>
- <style scoped lang="scss">
- page {
- background-color: #fff;
- }
- .iscomponents ::v-deep .u-search{
- width: 630rpx !important;
- }
- // 搜索
- .search {
- padding: 12rpx 24rpx;
- display: flex;flex-wrap: wrap;
- border-radius: 8px;
- overflow: hidden;
- .search-box {
- display: flex;flex-wrap: wrap;
- border-radius: 8px;
- overflow: hidden;
- }
-
- ::v-deep .u-search {
- width: 530rpx;
- margin: auto !important;
- position: relative;
- flex: 0;
- margin: 0 !important;
- height: 64rpx !important;
- }
- ::v-deep .u-content {
- width: 430px;
- border-radius: 0px !important;
- height: 64rpx !important;
- }
- ::v-deep .u-icon--right {
- margin-right: 16rpx;
- }
- .search-btn {
- width: 100rpx;
- height: 64rpx;
- background-color: #f2f2f2;
- .text {
- height: 40rpx;
- margin: 12rpx 0;
- border-left: 1px solid #999999;
- font-family: Microsoft Yahei;
- text-align: center;
- color: rgba(16, 98, 213, 1);
- font-size: 28rpx;
- }
- }
- }
- .main {
- display: flex;flex-wrap: wrap;
- // 分类
- .classify {
- width: 170rpx;
- height: calc(100vh - 88rpx);
- background-color: #F0F0F0;
- overflow-y: scroll;
- font-size: 28rpx;
- .item {
- height: 120rpx;
- line-height: 120rpx;
- text-align: center;
- }
- .checked {
- background-color: #fff;
- color: #1062D5
- }
- }
- // 类型
- .type{
- padding: 24rpx 24rpx;
- height: calc(100vh - 88rpx);
-
- .type-item{
- //margin-bottom: 80rpx;
- }
- .title{
- color: rgba(51, 51, 51, 1);
- font-size: 32rpx;
- margin-bottom: 24rpx;
- }
- .content{
- .item{
- display: flex;flex-wrap: wrap;
- margin-bottom: 34rpx;
- border-bottom: 1px dashed;
- .option{
- padding-left: 20rpx;
- }
- .picture{
- width: 120rpx;
- height: 120rpx;
- border-radius: 8rpx;
- overflow: hidden;
- img{
- width: 100rpx;
- height: 100%;
-
- }
- }
- .infosQuery{
- width:400rpx !important;
- }
- .infos{
- width:200rpx ;
- margin-left: 16rpx;
- .name{
- color: rgba(51, 51, 51, 1);
- font-size: 32rpx;
- margin-bottom: 16rpx;
- }
- .model,.inventory{
- color: rgba(153, 153, 153, 1);
- font-size: 24rpx;
- display: flex;flex-wrap: wrap;
- margin-bottom: 8rpx;
- }
- .infos-title{
- width: 88rpx;
- min-width: 88rpx;
- }
- }
- }
- }
- }
-
-
- }
- </style>
|