| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <view>
- <u-popup :show="show" duration='300' :mode='mode' :closeOnClickOverlay='false'>
- <view class="content-box">
- <view class="list_box">
- <u-list @scrolltolower="scrolltolower">
- </u-list>
- </view>
- <view class="operate_box rx-sc">
- <u-button size="small" class="u-reset-button" @click="handleClose">取消</u-button>
- <u-button size="small" class="u-reset-button" type="success" @click="save">确认 </u-button>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- show: true,
- mode: 'right'
- }
- },
- methods: {
- scrolltolower() {},
-
- save() {
-
- },
- handleClose() {
- this.$emit('close')
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .content-box {
- width: 80vw;
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- background-color: $page-bg;
- }
- .list_box {
- flex: 1;
- overflow: hidden;
- padding: 4rpx 0;
- .u-list {
- height: 100% !important;
- }
- }
- .operate_box {
- background-color: #fff;
- padding: 10rpx 100rpx;
- /deep/ .u-button {
- width: 160rpx;
- }
- }
- </style>
|