1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <!-- <uni-check-list :listData="list" types="checkbox" @ok="chooseOk" :showArrow="false">
- </uni-check-list> -->
- <view class="store-all">
- <view>
- <view v-for="item in items" :key="item.id" class="checkbox-item">
- {{item.name}}
- </view>
- </view>
- </view>
-
- </template>
- <script>
- export default {
- data() {
- return {
- items: [
- {name:"常青二路"},
- {name:"世家星城"},
- {name:"咸宁东路"},
- ]
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- page{
- height: 100%;
- }
- .store-all{
- height: 100%;
- display: flex;
- flex-direction: column;
- .uni-list{
- width: 100%;
- flex-grow: 1;
- overflow: auto;
-
- }
-
- }
- .checkbox-item{
- width:100%;
- padding: 15upx 30upx;
- border-bottom: 1px solid #eee;
- background: #fff;
- display: flex;
- justify-content: space-between;
- margin-bottom: 15upx;
- }
-
- </style>
|