123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <template>
- <view class="slide">
- <view class="slide-left" :style="'position: relative;left:' + left + 'rpx'" @touchstart="touchstart" @touchmove="touchmove" @touchend="touchend">
- <slot></slot>
- </view>
- <view class="slide-right">
- <view
- class="btn-item"
- v-for="(item, index) in btnList"
- :key="index"
- :style="'width:' + item.width + ';height:' + height + 'rpx;background-color:' + item.bgColor + ';color:' + item.color + ';font-size:' + item.fontSize"
- @click.stop="clickItem(item)"
- >
- {{ item.name }}
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- //操作按钮数组
- btnList: {
- type: Array,
- default: () => {
- return [
- {
- id: "1",
- name: "删除",
- width: "100rpx",
- bgColor: "#ed656d",
- color: "#FFFFFF",
- fontSize: "28rpx",
- },
- ];
- },
- },
- //当前列索引
- index: {
- type: Number,
- require: true,
- default: 0,
- },
- //是否禁用
- disable: {
- type: Boolean,
- default: false,
- },
- pIndex: {
- type: String || Number,
- default: 0,
- },
- },
- data() {
- return {
- x: 0,
- left: 0,
- operation: 0,
- height: 0,
- screenWidth: 0,
- };
- },
- mounted() {
- this.$nextTick((res) => {
- const systemInfo = uni.getSystemInfoSync();
- this.screenWidth = systemInfo.screenWidth;
- this.getBtnWidth();
- this.getListHeight();
- });
- },
- methods: {
- clickItem(e) {
- this.$emit("clickItem", {
- index: this.index,
- id: e.id,
- pIndex: this.pIndex,
- });
- },
- //重置方法
- reset() {
- this.left = 0;
- },
- getBtnWidth() {
- let view = uni.createSelectorQuery().in(this).select(".slide-right");
- view
- .boundingClientRect((rect) => {
- this.operation = this.px2rpx(rect.width, this.screenWidth);
- })
- .exec();
- },
- getListHeight() {
- let view = uni.createSelectorQuery().in(this).select(".slide-left");
- view
- .boundingClientRect((rect) => {
- this.height = this.px2rpx(rect.height, this.screenWidth);
- })
- .exec();
- },
- px2rpx(px, screenWidth) {
- return px / (screenWidth / 750);
- },
- touchstart(e) {
- if (this.disable) return;
- this.x = this.px2rpx(e.touches[0].clientX, this.screenWidth);
- },
- touchmove(e) {
- if (this.disable) return;
- let clientX = this.x - this.px2rpx(e.touches[0].clientX, this.screenWidth);
- if (clientX <= 0) this.left = 0;
- else if (this.operation <= clientX) this.left = this.operation * -1;
- else this.left = clientX * -1;
- },
- touchend(e) {
- if (this.disable) return;
- let clientX = this.x - this.px2rpx(e.changedTouches[0].clientX, this.screenWidth);
- this.left = clientX > this.operation / 2 ? this.operation * -1 : 0;
- },
- },
- };
- </script>
- <style scoped>
- .slide {
- width: 100%;
- position: relative;
- overflow: hidden;
- }
- .slide-left {
- width: 100%;
- overflow: hidden;
- background-color: #ffffff;
- transition: left 0.2s ease-in-out;
- z-index: 999;
- }
- .slide-right {
- position: absolute;
- top: 0rpx;
- right: 0;
- z-index: 99;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .btn-item {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|