601 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			601 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Vue
		
	
	
	
<template>
 | 
						||
    <!-- 定损列表 -->
 | 
						||
    <view class="page-container">
 | 
						||
        <view class="complete-btn">
 | 
						||
            <view class="btn" @click="changeTab(1)">
 | 
						||
                <span>未完成</span>
 | 
						||
                <view v-if="active == 1" class="bt-line"></view>
 | 
						||
            </view>
 | 
						||
            <view class="btn" style="margin-left: 120rpx" @click="changeTab(2)">
 | 
						||
                <span>已完成</span>
 | 
						||
                <view v-if="active == 2" class="bt-line"></view>
 | 
						||
            </view>
 | 
						||
        </view>
 | 
						||
        <uni-row :gutter="24" class="search-form">
 | 
						||
            <uni-col :span="24">
 | 
						||
                <view>
 | 
						||
                    <uni-datetime-picker
 | 
						||
                        v-model="dateArray"
 | 
						||
                        type="daterange"
 | 
						||
                        @maskClick="maskClick"
 | 
						||
                        @change="onChangeDate"
 | 
						||
                        placeholder="选择日期范围"
 | 
						||
                    />
 | 
						||
                </view>
 | 
						||
            </uni-col> 
 | 
						||
        </uni-row>
 | 
						||
        <uni-row :gutter="24" class="search-form">
 | 
						||
            <uni-col :span="18">
 | 
						||
                <view>
 | 
						||
                    <uni-easyinput placeholder="请输入内容" v-model="queryParams.keyWord" />
 | 
						||
                </view>
 | 
						||
            </uni-col>
 | 
						||
            <uni-col :span="6">
 | 
						||
                <view class="search" @click="onSearchBtn()">搜索</view>
 | 
						||
            </uni-col>
 | 
						||
        </uni-row>
 | 
						||
 | 
						||
        <scroll-view scroll-y @scrolltolower="onScrollTolower" class="scroll-container">
 | 
						||
            <view class="table-list-item" :key="index" @click="handleItem(item)" v-for="(item, index) in tableList">
 | 
						||
                <uni-swipe-action>
 | 
						||
                    <uni-swipe-action-item @click="onClick($event, item)" :right-options="active==1 ? options : []">
 | 
						||
                  <div class="title">
 | 
						||
                      <div class="title-left">
 | 
						||
                          <span class="code">{{ item.repairCode }}</span>
 | 
						||
                          <span class="sub-code">{{ `${item.backCode}-${item.level}` }}</span>
 | 
						||
                      </div>
 | 
						||
                      <div class="title-right">
 | 
						||
                          <uni-tag v-if="item.status == 0" text="未完成" type="warning" custom-style="warningStyle"/>
 | 
						||
                          <uni-tag v-if="item.status == 1" text="已完成" type="success" custom-style="successStyle"/>
 | 
						||
                          <uni-tag v-if="item.status == 2" text="已驳回" type="warning" custom-style="warningStyle"/>
 | 
						||
                      </div>
 | 
						||
                  </div>
 | 
						||
                        <view class="line"></view>
 | 
						||
                        <uni-row :gutter="24">
 | 
						||
                            <uni-col :span="6">任务时间:</uni-col>
 | 
						||
                            <uni-col :span="18">
 | 
						||
                                <view class="cont">{{ item.createTime }}</view>
 | 
						||
                            </uni-col>
 | 
						||
                        </uni-row>
 | 
						||
                        <uni-row :gutter="24">
 | 
						||
                            <uni-col :span="6">退料物资:</uni-col>
 | 
						||
                            <uni-col :span="18">
 | 
						||
                                <view class="cont">{{ item.type }}</view>
 | 
						||
                            </uni-col>
 | 
						||
                        </uni-row>
 | 
						||
                        <uni-row :gutter="24">
 | 
						||
                            <uni-col :span="6">退料单位:</uni-col>
 | 
						||
                            <uni-col :span="18">
 | 
						||
                                <view class="cont">{{ item.backUnit }}</view>
 | 
						||
                            </uni-col>
 | 
						||
                        </uni-row>
 | 
						||
                        <uni-row :gutter="24">
 | 
						||
                            <uni-col :span="6">工程名称:</uni-col>
 | 
						||
                            <uni-col :span="18">
 | 
						||
                                <view class="cont">{{ item.backPro }}</view>
 | 
						||
                            </uni-col>
 | 
						||
                        </uni-row>
 | 
						||
                        <uni-row :gutter="24">
 | 
						||
                            <uni-col :span="8">任务创建人:</uni-col>
 | 
						||
                            <uni-col :span="16">
 | 
						||
                                <view class="cont">{{ item.createName }}</view>
 | 
						||
                            </uni-col>
 | 
						||
                        </uni-row>
 | 
						||
                        <uni-row :gutter="24">
 | 
						||
                            <uni-col :span="6">退料人:</uni-col>
 | 
						||
                            <uni-col :span="18">
 | 
						||
                                <view class="cont">{{ item.backPerson }}</view>
 | 
						||
                            </uni-col>
 | 
						||
                        </uni-row>
 | 
						||
                    </uni-swipe-action-item>
 | 
						||
                </uni-swipe-action>
 | 
						||
            </view>
 | 
						||
            <view class="loading-text">
 | 
						||
                {{ finish ? '没有更多数据了~' : '正在加载...' }}
 | 
						||
            </view>
 | 
						||
        </scroll-view>
 | 
						||
    </view>
 | 
						||
</template>
 | 
						||
 | 
						||
<script setup>
 | 
						||
import { ref, computed } from 'vue'
 | 
						||
// import { getRepairListAPI, repairSubmitAPI, repairRejectAPI } from '@/services/repair/repair.js'
 | 
						||
import { getLossAssessmentListAPI,repairSubmitAPI,repairRejectAPI,updateRepairStatusAPI } from '@/services/repair/equipAssessment.js'
 | 
						||
import { onShow } from '@dcloudio/uni-app'
 | 
						||
import { debounce } from 'lodash-es'
 | 
						||
 | 
						||
const total = ref(0) //                 数据总<E68DAE><E680BB>
 | 
						||
const active = ref(1) //                tap索引
 | 
						||
const tableList = ref([]) //            列表数据源
 | 
						||
const dateArray = ref([
 | 
						||
    new Date(new Date().getTime() - 30 * 24 * 60 * 60 * 1000).toISOString().split('T')[0],
 | 
						||
    new Date().toISOString().split('T')[0]
 | 
						||
]) //            日期范围
 | 
						||
// 查询参数
 | 
						||
const queryParams = ref({
 | 
						||
    startTime: dateArray.value[0] || '',
 | 
						||
    endTime: dateArray.value[1] || '',
 | 
						||
    keyWord: '', //                     关键字
 | 
						||
    appTaskStatus: 0, //              状态
 | 
						||
    pageNum: 1,
 | 
						||
    pageSize: 3,
 | 
						||
})
 | 
						||
 | 
						||
// 右滑按钮组
 | 
						||
const options = ref([
 | 
						||
    {
 | 
						||
        text: '提交',
 | 
						||
        style: {
 | 
						||
            backgroundColor: '#84c649',
 | 
						||
            color: '#fff',
 | 
						||
            fontSize: '30rpx',
 | 
						||
        },
 | 
						||
    },
 | 
						||
 | 
						||
    {
 | 
						||
        text: '驳回',
 | 
						||
        style: {
 | 
						||
            backgroundColor: '#ed6042',
 | 
						||
            color: '#fff',
 | 
						||
            fontSize: '30rpx',
 | 
						||
        },
 | 
						||
    },
 | 
						||
])
 | 
						||
 | 
						||
// 右滑按钮点击事件
 | 
						||
const onClick = async (e, item) => {
 | 
						||
    if (e.index === 0) {
 | 
						||
        // 提交逻辑
 | 
						||
        const res = await repairSubmitAPI([{ taskId: item.taskId }])
 | 
						||
        if (res.code === 200) {
 | 
						||
            uni.showToast({
 | 
						||
                title: '提交成功!',
 | 
						||
                icon: 'none',
 | 
						||
            })
 | 
						||
			queryParams.value.pageNum = 1
 | 
						||
			tableList.value = []
 | 
						||
			getTableList(true)
 | 
						||
        }
 | 
						||
    } else {
 | 
						||
        // 驳回逻辑
 | 
						||
        console.log('驳回')
 | 
						||
      const parm ={
 | 
						||
          taskIds:[
 | 
						||
              item.taskId,
 | 
						||
          ]
 | 
						||
      }
 | 
						||
      console.log(parm)
 | 
						||
        const res = await repairRejectAPI(parm)
 | 
						||
        if (res.code === 200) {
 | 
						||
            uni.showToast({
 | 
						||
                title: '驳回成功!',
 | 
						||
                icon: 'none',
 | 
						||
            })
 | 
						||
			queryParams.value.pageNum = 1
 | 
						||
			tableList.value = []
 | 
						||
			getTableList(true)
 | 
						||
        }
 | 
						||
    }
 | 
						||
}
 | 
						||
 | 
						||
// 日期 change 事件
 | 
						||
const onChangeDate = (val) => {
 | 
						||
    const [val_1, val_2] = val
 | 
						||
    queryParams.value.startTime = val_1
 | 
						||
    queryParams.value.endTime = val_2
 | 
						||
}
 | 
						||
 | 
						||
// 搜索按钮
 | 
						||
const onSearchBtn = () => {
 | 
						||
    queryParams.value.pageNum = 1
 | 
						||
    tableList.value = []
 | 
						||
    getTableList(true)
 | 
						||
}
 | 
						||
 | 
						||
// 获取列表数据
 | 
						||
const getTableList = async (isTap = false) => {
 | 
						||
    console.log('queryParams.value查询参数', queryParams.value)
 | 
						||
    const res = await getLossAssessmentListAPI(queryParams.value)
 | 
						||
    total.value = res.data.total
 | 
						||
    if (isTap) {
 | 
						||
        tableList.value = res.data.rows
 | 
						||
    } else {
 | 
						||
        if (res.data.rows.length == 0) {
 | 
						||
            tableList.value = []
 | 
						||
        } else {
 | 
						||
            tableList.value.push(...res.data.rows)
 | 
						||
        }
 | 
						||
    }
 | 
						||
}
 | 
						||
 | 
						||
// // 页面加载完毕
 | 
						||
// onLoad(() => {
 | 
						||
//     getTableList()
 | 
						||
// })
 | 
						||
 | 
						||
onShow(() => {
 | 
						||
    tableList.value = []
 | 
						||
    total.value = 0
 | 
						||
    getTableList(true)
 | 
						||
})
 | 
						||
 | 
						||
// 滚动触底事件
 | 
						||
const onScrollTolower = debounce(() => {
 | 
						||
    console.log('触底事件')
 | 
						||
    if (total.value > tableList.value.length) {
 | 
						||
        queryParams.value.pageSize += 5
 | 
						||
        getTableList()
 | 
						||
    }
 | 
						||
}, 500)
 | 
						||
 | 
						||
// tap 栏切换
 | 
						||
const changeTab = (index) => {
 | 
						||
    active.value = index
 | 
						||
    if (index == 1) {
 | 
						||
        queryParams.value.appTaskStatus = 0 // 查未完成的
 | 
						||
        queryParams.value.pageNum = 1
 | 
						||
        getTableList(true)
 | 
						||
    } else if (index == 2) {
 | 
						||
        queryParams.value.appTaskStatus = 1 // 查已完成的
 | 
						||
        queryParams.value.pageNum = 1
 | 
						||
        getTableList(true)
 | 
						||
    }
 | 
						||
}
 | 
						||
// 点击跳转详情
 | 
						||
const handleItem = (item) => {
 | 
						||
	console.log(item)
 | 
						||
	if(item.repairStatusCode=="0"){
 | 
						||
            // 弹出确认弹窗
 | 
						||
    uni.showModal({
 | 
						||
      title: '提示',
 | 
						||
      content: '是否确认进行定损?',
 | 
						||
      confirmText: '进入定损', 
 | 
						||
      cancelText: '转至维修',
 | 
						||
      success: async (res) => {
 | 
						||
        if (res.confirm) {
 | 
						||
          // 用户点击确认,进行页面跳转
 | 
						||
          uni.navigateTo({ url: `/pages/repair/equipAssessment/details?taskId=${item.taskId}` })
 | 
						||
        } else if (res.cancel) {
 | 
						||
            //直接进行维修
 | 
						||
             const res = await updateRepairStatusAPI({taskId: item.taskId})
 | 
						||
             if(res.code==200){
 | 
						||
                uni.showToast({
 | 
						||
                    title: '成功转至维修',
 | 
						||
                    icon: 'none',
 | 
						||
                })
 | 
						||
                setTimeout(() => {
 | 
						||
                    getTableList(true)
 | 
						||
		        }, 1000)
 | 
						||
                
 | 
						||
             }
 | 
						||
        }
 | 
						||
      }
 | 
						||
    })
 | 
						||
		// uni.navigateTo({ url: `/pages/repair/equipAssessment/details?taskId=${item.taskId}` })
 | 
						||
	}else{
 | 
						||
		uni.navigateTo({ url: `/pages/repair/equipAssessment/view?taskId=${item.taskId}` })
 | 
						||
	}
 | 
						||
    
 | 
						||
}
 | 
						||
 | 
						||
// 判断数据是否加载完毕
 | 
						||
const finish = computed(() => {
 | 
						||
    if (total.value === tableList.value.length) return true
 | 
						||
})
 | 
						||
 | 
						||
// 状态标签样式
 | 
						||
const successStyle = {
 | 
						||
    color: '#52c41a',
 | 
						||
    backgroundColor: 'rgba(82, 196, 26, 0.1)',
 | 
						||
    border: '2rpx solid rgba(82, 196, 26, 0.2)',
 | 
						||
    fontWeight: '600'
 | 
						||
}
 | 
						||
 | 
						||
const warningStyle = {
 | 
						||
    color: '#fa8c16',
 | 
						||
    backgroundColor: 'rgba(250, 140, 22, 0.1)',
 | 
						||
    border: '2rpx solid rgba(250, 140, 22, 0.2)',
 | 
						||
    fontWeight: '600'
 | 
						||
}
 | 
						||
 | 
						||
const maskClick = () => {}
 | 
						||
</script>
 | 
						||
 | 
						||
<style lang="scss" scoped>
 | 
						||
	.title-left {
 | 
						||
	    display: flex;
 | 
						||
	    flex-direction: column;
 | 
						||
	    
 | 
						||
	    .code {
 | 
						||
	        font-size: 32rpx;
 | 
						||
	        font-weight: 600;
 | 
						||
	        color: #3784fb;
 | 
						||
	        letter-spacing: 1rpx;
 | 
						||
	    }
 | 
						||
	    
 | 
						||
	    .sub-code {
 | 
						||
	        font-size: 28rpx;  /* 比主code小一点 */
 | 
						||
	        color: #8c8c8c;   /* 灰色更柔和 */
 | 
						||
	        margin-top: 4rpx;  /* 与主code有一点间距 */
 | 
						||
	    }
 | 
						||
	}
 | 
						||
.page-container {
 | 
						||
    display: flex;
 | 
						||
    height: 100vh;
 | 
						||
    padding: 24rpx;
 | 
						||
    flex-direction: column;
 | 
						||
    background-color: #f7f8fa;
 | 
						||
 | 
						||
    .complete-btn {
 | 
						||
        display: flex;
 | 
						||
        /* padding: 20rpx 24rpx; */
 | 
						||
        justify-content: center;
 | 
						||
        /* background: #fff;
 | 
						||
        border-radius: 20rpx;
 | 
						||
        margin-bottom: 20rpx;
 | 
						||
        box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05); */
 | 
						||
    
 | 
						||
        .btn {
 | 
						||
            display: flex;
 | 
						||
            flex-direction: column;
 | 
						||
            align-items: center;
 | 
						||
            padding: 0 60rpx;
 | 
						||
            position: relative;
 | 
						||
            transition: all 0.3s ease;
 | 
						||
    
 | 
						||
            span {
 | 
						||
                font-size: 32rpx;
 | 
						||
                color: #8c8c8c;
 | 
						||
                font-weight: 500;
 | 
						||
    
 | 
						||
                &.active {
 | 
						||
                    color: #3784fb;
 | 
						||
                    font-weight: 600;
 | 
						||
                    
 | 
						||
                    .second-active & {
 | 
						||
                        color: #fa8c16;
 | 
						||
                    }
 | 
						||
                }
 | 
						||
            }
 | 
						||
    
 | 
						||
            .bt-line {
 | 
						||
                width: 32rpx;
 | 
						||
                height: 6rpx;
 | 
						||
                background: #3784fb;
 | 
						||
                margin-top: 12rpx;
 | 
						||
                border-radius: 6rpx;
 | 
						||
                transition: all 0.3s ease;
 | 
						||
                
 | 
						||
                .second-active & {
 | 
						||
                    background: #fa8c16;
 | 
						||
                }
 | 
						||
            }
 | 
						||
        }
 | 
						||
    }
 | 
						||
    
 | 
						||
    .search-form {
 | 
						||
        display: flex;
 | 
						||
        align-items: center;
 | 
						||
        /* background: #fff; */
 | 
						||
        padding: 10rpx;
 | 
						||
        /* border-radius: 20rpx;
 | 
						||
        margin-bottom: 20rpx;
 | 
						||
        box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05); */
 | 
						||
    
 | 
						||
        :deep(.uni-easyinput__content),
 | 
						||
        :deep(.uni-date-editor) {
 | 
						||
            background-color: #f7f8fa;
 | 
						||
            border: 2rpx solid #e8e8e8;
 | 
						||
            border-radius: 12rpx;
 | 
						||
            height: 75rpx;
 | 
						||
            transition: all 0.3s ease;
 | 
						||
    
 | 
						||
            &:focus-within {
 | 
						||
                border-color: #3784fb;
 | 
						||
                box-shadow: 0 0 0 2rpx rgba(55, 132, 251, 0.1);
 | 
						||
            }
 | 
						||
        }
 | 
						||
    	:deep(.uni-date) {
 | 
						||
    	    width: 100%;
 | 
						||
    	
 | 
						||
    	    .uni-date-x {
 | 
						||
    	        width: 100%;
 | 
						||
    	    }
 | 
						||
    	
 | 
						||
    	    .uni-date-editor--x {
 | 
						||
    	        width: 100%;
 | 
						||
    	    }
 | 
						||
    	
 | 
						||
    	    .uni-date-range--x {
 | 
						||
    	        width: 100%;
 | 
						||
    	
 | 
						||
    	        .uni-date-range--x-input {
 | 
						||
    	            width: 100%;
 | 
						||
    	            display: flex;
 | 
						||
    	            align-items: center;
 | 
						||
    	            justify-content: space-between;
 | 
						||
    	            padding: 0 24rpx;
 | 
						||
    	
 | 
						||
    	            .uni-date-range--x-text {
 | 
						||
    	                font-size: 28rpx;
 | 
						||
    	                color: #262626;
 | 
						||
    	            }
 | 
						||
    	        }
 | 
						||
    	    }
 | 
						||
    	
 | 
						||
    	    .uni-date-x--border {
 | 
						||
    	        width: 100%;
 | 
						||
    	        border: 2rpx solid #e8e8e8;
 | 
						||
    	        border-radius: 12rpx;
 | 
						||
    	        background-color: #f7f8fa;
 | 
						||
    	        height: 80rpx;
 | 
						||
    	        transition: all 0.3s ease;
 | 
						||
    	
 | 
						||
    	        &:focus-within {
 | 
						||
    	            border-color: #3784fb;
 | 
						||
    	            box-shadow: 0 0 0 2rpx rgba(55, 132, 251, 0.1);
 | 
						||
    	        }
 | 
						||
    	    }
 | 
						||
    	}
 | 
						||
    	
 | 
						||
        :deep(.uni-date-editor) {
 | 
						||
            .uni-date-range {
 | 
						||
                display: flex;
 | 
						||
                align-items: center;
 | 
						||
                width: 100%;
 | 
						||
                
 | 
						||
                .uni-date-range--text {
 | 
						||
                    width: 50%;
 | 
						||
                    text-align: center;
 | 
						||
                    color: #333;
 | 
						||
                }
 | 
						||
            }
 | 
						||
        }
 | 
						||
    } 
 | 
						||
    
 | 
						||
	.search {
 | 
						||
	    height: 60rpx;
 | 
						||
	    background: linear-gradient(135deg, #4b8eff 0%, #3784fb 100%);
 | 
						||
	    text-align: center;
 | 
						||
	    line-height: 60rpx;
 | 
						||
	    color: #fff;
 | 
						||
	    border-radius: 12rpx;
 | 
						||
	    font-size: 28rpx;
 | 
						||
	    font-weight: 600;
 | 
						||
	    box-shadow: 0 6rpx 20rpx rgba(55, 132, 251, 0.2);
 | 
						||
	    transition: all 0.3s ease;
 | 
						||
	
 | 
						||
	    &:active {
 | 
						||
	        transform: translateY(2rpx);
 | 
						||
	        opacity: 0.9;
 | 
						||
	    }
 | 
						||
	}
 | 
						||
	
 | 
						||
	.scroll-container {
 | 
						||
	    padding: 0 2rpx;
 | 
						||
	    
 | 
						||
	    .table-list-item {
 | 
						||
	        margin: 24rpx 0;
 | 
						||
	        padding: 32rpx;
 | 
						||
	        background-color: #fff;
 | 
						||
	        min-height: 300rpx;
 | 
						||
	        border-radius: 20rpx;
 | 
						||
	        box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.06);
 | 
						||
	        transition: all 0.3s ease;
 | 
						||
	
 | 
						||
	        &:active {
 | 
						||
	            transform: scale(0.985);
 | 
						||
	            background-color: #fafbfc;
 | 
						||
	        }
 | 
						||
	
 | 
						||
	        .title {
 | 
						||
	            display: flex;
 | 
						||
	            justify-content: space-between;
 | 
						||
	            align-items: center;
 | 
						||
	            margin-bottom: 20rpx;
 | 
						||
	            
 | 
						||
	            .title-left {
 | 
						||
	                .code {
 | 
						||
	                    font-size: 32rpx;
 | 
						||
	                    font-weight: 600;
 | 
						||
	                    color: #3784fb;
 | 
						||
	                    letter-spacing: 1rpx;
 | 
						||
	                }
 | 
						||
	            }
 | 
						||
	            
 | 
						||
	            span.status {
 | 
						||
	                padding: 8rpx 28rpx;
 | 
						||
	                border-radius: 8rpx;
 | 
						||
	                font-size: 26rpx;
 | 
						||
	                font-weight: 600;
 | 
						||
	                
 | 
						||
	                &.completed {
 | 
						||
	                    background-color: rgba(82, 196, 26, 0.1);
 | 
						||
	                    color: #52c41a;
 | 
						||
	                }
 | 
						||
	                
 | 
						||
	                &.pending {
 | 
						||
	                    background-color: rgba(250, 140, 22, 0.1);
 | 
						||
	                    color: #fa8c16;
 | 
						||
	                }
 | 
						||
	            }
 | 
						||
	        }
 | 
						||
	
 | 
						||
	        .line {
 | 
						||
	            margin: 24rpx 0;
 | 
						||
	            height: 2rpx;
 | 
						||
	            background: linear-gradient(90deg, 
 | 
						||
	                rgba(232, 232, 232, 0) 0%,
 | 
						||
	                rgba(232, 232, 232, 1) 50%,
 | 
						||
	                rgba(232, 232, 232, 0) 100%
 | 
						||
	            );
 | 
						||
	        }
 | 
						||
	
 | 
						||
	        :deep(.uni-row) {
 | 
						||
	            /* margin-bottom: 20rpx; */
 | 
						||
	            
 | 
						||
	            .uni-col-6 {
 | 
						||
	                color: #8c8c8c;
 | 
						||
	                font-size: 28rpx;
 | 
						||
	                font-weight: 500;
 | 
						||
	            }
 | 
						||
	        }
 | 
						||
	
 | 
						||
	        .cont {
 | 
						||
	            display: flex;
 | 
						||
	            justify-content: flex-end;
 | 
						||
	            line-height: 1.8;
 | 
						||
	            color: #262626;
 | 
						||
	            font-size: 28rpx;
 | 
						||
	            font-weight: 500;
 | 
						||
	        }
 | 
						||
	    }
 | 
						||
	}
 | 
						||
	
 | 
						||
	.loading-text {
 | 
						||
	    text-align: center;
 | 
						||
	    font-size: 26rpx;
 | 
						||
	    color: #8c8c8c;
 | 
						||
	    padding: 32rpx 0;
 | 
						||
	    letter-spacing: 1rpx;
 | 
						||
	}
 | 
						||
}
 | 
						||
 | 
						||
// 优化滑动区域样式
 | 
						||
:deep(.uni-swipe_action) {
 | 
						||
    border-radius: 20rpx;
 | 
						||
    overflow: hidden;
 | 
						||
    
 | 
						||
    .uni-swipe_content {
 | 
						||
        margin: 0 !important;
 | 
						||
        padding: 0;
 | 
						||
        background-color: #fff;
 | 
						||
    }
 | 
						||
    
 | 
						||
    .uni-swipe_button-group {
 | 
						||
        height: 100%;
 | 
						||
        
 | 
						||
        .uni-swipe_button {
 | 
						||
           writing-mode: vertical-rl;
 | 
						||
           padding: 0 24rpx;
 | 
						||
           font-size: 28rpx !important;
 | 
						||
           font-weight: 600;
 | 
						||
            
 | 
						||
            // 查看按钮
 | 
						||
            &:nth-child(1) {
 | 
						||
                background: linear-gradient(to bottom, #3ad980, #34C759) !important;
 | 
						||
            }
 | 
						||
            
 | 
						||
            // 出库按钮
 | 
						||
            &:nth-child(2) {
 | 
						||
                background: linear-gradient(to bottom, #3b95ff, #007AFF) !important;
 | 
						||
            }
 | 
						||
 | 
						||
            &:active {
 | 
						||
                opacity: 0.85;
 | 
						||
            }
 | 
						||
        }
 | 
						||
    }
 | 
						||
}
 | 
						||
</style>
 |