pad-app/pages/discharge/index.vue

99 lines
1.5 KiB
Vue
Raw Permalink Normal View History

2023-07-05 10:56:11 +08:00
<template>
<view class="app">
2023-08-18 17:28:11 +08:00
<head-info :navIndex="1"></head-info>
2023-07-05 10:56:11 +08:00
<view class="container">
卸船指令
2023-08-18 17:28:11 +08:00
</view>
2023-07-05 10:56:11 +08:00
</view>
</template>
<script>
import HeadInfo from '@/components/head-info/head-info';
export default {
data() {
return {
2023-08-18 17:28:11 +08:00
ltemList: [1, 1, 1, 1, 2, 1, 1, 1, 1],
2023-07-05 10:56:11 +08:00
}
},
onLoad() {
},
components: {
HeadInfo
},
methods: {
}
};
</script>
2023-07-25 13:18:37 +08:00
<style lang="less" scoped>
2023-07-05 10:56:11 +08:00
.container {
display: flex;
}
.content {
flex: 1;
padding: 20px;
.form {
display: flex;
justify-content: flex-end;
.input {
width: 200px;
height: 35px;
line-height: 35px;
border: 1px solid #c9cacb;
border-radius: 5px;
padding-left: 10px;
margin-left: 15px;
}
}
.itemList {
width: 100%;
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
2023-08-18 17:28:11 +08:00
2023-07-05 10:56:11 +08:00
.item {
width: 32%;
margin-top: 15px;
margin-right: 2%;
height: 160px;
border: 1px solid #c9cacb;
padding: 22px 15px;
2023-08-18 17:28:11 +08:00
2023-07-05 10:56:11 +08:00
.title {
display: flex;
justify-content: space-between;
font-size: 21px;
margin-bottom: 20px;
font-weight: 700;
}
2023-08-18 17:28:11 +08:00
2023-07-05 10:56:11 +08:00
.status {
font-size: 16px;
font-weight: 400;
}
2023-08-18 17:28:11 +08:00
2023-07-05 10:56:11 +08:00
.row {
display: flex;
justify-content: space-between;
font-size: 18px;
margin: 10px 0;
2023-08-18 17:28:11 +08:00
2023-07-05 10:56:11 +08:00
.text {
display: block;
}
}
}
2023-08-18 17:28:11 +08:00
2023-07-05 10:56:11 +08:00
.item:nth-child(3n) {
margin-right: 0;
}
}
}
2023-08-18 17:28:11 +08:00
</style>