24 changed files with 7026 additions and 1908 deletions
@ -0,0 +1,62 @@
|
||||
<template> |
||||
<view class="PullDownBox"> |
||||
<view @click="handleShowPullDown" class="Pulldown-title-container"> |
||||
<!-- 标题显示内容 --> |
||||
<view class="Pulldown-title"> |
||||
<slot name="title"></slot> |
||||
</view> |
||||
<u-icon :class="{'icon': true,'normal':isShowPullDownBox, 'active': !isShowPullDownBox}" name="arrow-down" |
||||
color="#2979ff" size="28"></u-icon> |
||||
</view> |
||||
|
||||
<view class=""> |
||||
<template v-if="isShowPullDownBox"> |
||||
<slot name="content"></slot> |
||||
</template> |
||||
</view> |
||||
</view> |
||||
|
||||
|
||||
</template> |
||||
|
||||
<script setup lang="ts"> |
||||
import { ref } from 'vue'; |
||||
|
||||
/** 是否显示下拉框 */ |
||||
const isShowPullDownBox = ref(false) |
||||
|
||||
/** 是否显示下拉内容 */ |
||||
const handleShowPullDown = () => { |
||||
isShowPullDownBox.value = !isShowPullDownBox.value |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.PullDownBox { |
||||
background: #fff; |
||||
margin-bottom: 10upx; |
||||
padding: 10upx; |
||||
} |
||||
|
||||
.Pulldown-title-container { |
||||
display: flex; |
||||
} |
||||
|
||||
.Pulldown-title { |
||||
flex: 1; |
||||
} |
||||
|
||||
.icon { |
||||
padding: 0 10upx; |
||||
flex: none; |
||||
transition: all 0.2s; |
||||
} |
||||
|
||||
.normal { |
||||
transform: rotate(0deg); |
||||
} |
||||
|
||||
.active { |
||||
transform: rotate(180deg); |
||||
} |
||||
</style> |
@ -0,0 +1,87 @@
|
||||
<template> |
||||
<!-- @scrolltolower触底事件,@scroll滚动事件 --> |
||||
<scroll-view scroll-y="true" :style="{height: containerHeight+'px'}" @scroll="scrollTop = $event.detail.scrollTop" |
||||
@scrolltolower="$emit('@scrolltolower')"> |
||||
<!-- 监听滚动事件使用passive修饰符 --> |
||||
<view :style="paddingStyle"> |
||||
<!-- key使用index,可避免多次渲染该dom --> |
||||
<view id="box" v-for="(item, index) in showList" :key="index"> |
||||
<!-- 使用作用域插槽,将遍历后的数据item和index传递出去 --> |
||||
<slot :item="item" :$index="index"></slot> |
||||
</view> |
||||
</view> |
||||
</scroll-view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "App", |
||||
props: { |
||||
// 所有数据 |
||||
allList: { |
||||
type: Array, |
||||
default () { |
||||
return [] |
||||
} |
||||
}, |
||||
// 容器高度 |
||||
containerHeight: { |
||||
type: Number, |
||||
default: 0 |
||||
}, |
||||
}, |
||||
data() { |
||||
return { |
||||
oneHeight: 200, // 单个元素的高度,默认200.在mounted中会再次回去单个元素高度 |
||||
scrollTop: 0 // 滚动距离 |
||||
}; |
||||
}, |
||||
async mounted() { |
||||
// 计算单个元素的高度 |
||||
await this.$nextTick(() => { |
||||
|
||||
}) |
||||
|
||||
// uniapp中获取高度的兼容写法 |
||||
const query = uni.createSelectorQuery(); |
||||
console.log('query.select :>> ', query.select('#box').boundingClientRect); |
||||
query.select('#box').boundingClientRect(data => { |
||||
console.log('data :>> ', data); |
||||
this.oneHeight = data.height |
||||
}).exec(); |
||||
}, |
||||
computed: { |
||||
// 一屏多少条数据 |
||||
showNum() { |
||||
return ~~(this.containerHeight / this.oneHeight) + 2; |
||||
}, |
||||
// 开始索引 |
||||
startIndex() { |
||||
// 可见区域,第一个元素的index |
||||
const curIndex = ~~(this.scrollTop / this.oneHeight) |
||||
// console.log(this.showNum, this.oneHeight) |
||||
// 渲染区域第一个元素的index,这里缓冲区域的列表条数使用的是this.showNum |
||||
return curIndex < this.showNum ? 0 : curIndex - this.showNum |
||||
}, |
||||
// 渲染元素最后的index |
||||
endIndex() { |
||||
// 可见区域,第一个index |
||||
const curIndex = ~~(this.scrollTop / this.oneHeight) |
||||
let end = curIndex + this.showNum * 3; // 2倍是需要预留缓冲区域 |
||||
let len = this.allList.length |
||||
return end >= len ? len : end; // 结束元素大于所有元素的长度时,就取元素长度 |
||||
}, |
||||
// 需要渲染的数据 |
||||
showList() { |
||||
return this.allList.slice(this.startIndex, this.endIndex) |
||||
}, |
||||
// 空白占位的高度 |
||||
paddingStyle() { |
||||
return { |
||||
paddingTop: this.startIndex * this.oneHeight + 'px', |
||||
paddingBottom: (this.allList.length - this.endIndex) * this.oneHeight + 'px' |
||||
} |
||||
} |
||||
}, |
||||
}; |
||||
</script> |
@ -0,0 +1,826 @@
|
||||
<template> |
||||
<BasicContainer ref="basicContainer" :option="option" :leftClick="leftClick"> |
||||
<template #head> |
||||
<view class="hdtp"> |
||||
<view> |
||||
<view> |
||||
配载批次:{{details.pageInfo.carsNo}} |
||||
</view> |
||||
<view class="butlur" @click="showsdqs"> |
||||
录入包条码 |
||||
</view> |
||||
</view> |
||||
<view> |
||||
<view>司机名称:{{details.pageInfo.driverName}}</view> |
||||
<view>司机电话:{{details.pageInfo.driverMobile}}</view> |
||||
</view> |
||||
<view> |
||||
<view>车牌号:{{details.pageInfo.carNumber}}</view> |
||||
</view> |
||||
<view> |
||||
<view>路线:{{details.pageInfo.carsLineName}}</view> |
||||
</view> |
||||
<!-- <view> |
||||
<view>备货是否完成:{{items.isstock}}</view> |
||||
<view>装车是否完成:{{items.isload}}</view> |
||||
</view> --> |
||||
</view> |
||||
<view class="hdtpnum"> |
||||
<view> |
||||
<view>订单总数</view> |
||||
<view>{{items.orderNum || 0}}</view> |
||||
</view> |
||||
<view> |
||||
<view>计划件数</view> |
||||
<view>{{details.pageInfo.planLoadingNumber || 0}}</view> |
||||
</view> |
||||
<view> |
||||
<view>装车件数</view> |
||||
<view>{{details.pageInfo.realLoadingNumber || 0}}</view> |
||||
</view> |
||||
<view> |
||||
<view>卸车数</view> |
||||
<view>{{details.pageInfo.realLoadingNumber || 0}}</view> |
||||
</view> |
||||
</view> |
||||
|
||||
|
||||
<view class="tabtip"> |
||||
<view @click="setorderStatus(1)" :class="orderStatus==1?'active':''"> |
||||
<view>定制品</view> |
||||
</view> |
||||
<view @click="setorderStatus(2)" :class="orderStatus==2?'active':''"> |
||||
<view>零担</view> |
||||
</view> |
||||
<view @click="setorderStatus(3)" :class="orderStatus==3?'active':''"> |
||||
<view>异常</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<template #body> |
||||
<jp-virtual-list code="id" class="h100" :refresher="false" :data="datalist" ref="search"> |
||||
<template v-slot="{ list }"> |
||||
<view v-for="item in list" :key="item.id" :id="item.id" :ref="item.id"> |
||||
<PullDownBox> |
||||
<template #title> |
||||
<view class="contenbx1"> |
||||
<view style="flex: 1;"> |
||||
<view @click.stop="goorderdetail(item)">订单号:</view> |
||||
<view class=""> |
||||
{{item.orderCode}} |
||||
</view> |
||||
</view> |
||||
|
||||
<view style="flex: 1;"> |
||||
<view>运单号:</view> |
||||
<view class=""> |
||||
{{item.waybillNo}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<view class="contenbx1"> |
||||
<view> |
||||
<text>订单总数:</text> |
||||
{{item.totalNum}} |
||||
</view> |
||||
<view> |
||||
<text> |
||||
装车数/卸车数: |
||||
</text> |
||||
{{item.loadingNum + '/' + item.unloadNum}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<template #content> |
||||
<u-divider text="详情"></u-divider> |
||||
<block v-for="value in item.unloadPackageList" :key="value.name"> |
||||
<view class="details_container"> |
||||
<!-- 定制品 --> |
||||
<template v-if="Number(orderStatus) === 1"> |
||||
<view class="flex-c-sb"> |
||||
<view class=""> |
||||
包条码: {{value.orderPackageCode}} |
||||
</view> |
||||
<view class="flex1" style="display: flex; align-items: center; margin-left:5px;"> |
||||
卸车状态: |
||||
<view class="tip"> |
||||
{{Number(value.scanStatus) === 1? '已装车': Number(value.scanStatus) === 2? '已卸车': '已签收'}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<view class="flex-c-sb mt10"> |
||||
<view class="flex1"> |
||||
托盘名称: {{value.trayName || '暂无数据'}} |
||||
</view> |
||||
<view class="flex1"> |
||||
托盘码: {{value.trayCode || '暂无数据'}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<!-- 零担 --> |
||||
<template v-if="Number(orderStatus) === 2"> |
||||
<view class="flex-c-sb" @click="handleZeroStowage(item, value)"> |
||||
<view class="flex1"> |
||||
产品名称: {{value.orderPackageCode}} |
||||
</view> |
||||
|
||||
<view class="flex1"> |
||||
装车数/卸车数: {{value.num + '/' + (value.unloadNum || 0)}} |
||||
</view> |
||||
</view> |
||||
<view class="flex-c-sb mt10"> |
||||
<view class="flex1"> |
||||
托盘名称: {{value.trayName || '暂无数据'}} |
||||
</view> |
||||
<view class="flex1"> |
||||
托盘码: {{value.trayCode || '暂无数据'}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
</view> |
||||
</block> |
||||
</template> |
||||
</PullDownBox> |
||||
</view> |
||||
</template> |
||||
</jp-virtual-list> |
||||
|
||||
<!-- <ScrollList :allList="datalist" :containerHeight='300'> |
||||
<template #default="user"> |
||||
<PullDownBox> |
||||
<template #title> |
||||
<view class="contenbx1"> |
||||
<view style="flex: 1;"> |
||||
<view @click.stop="goorderdetail(user.item)">订单号:</view> |
||||
<view class=""> |
||||
{{user.item.orderCode}} |
||||
</view> |
||||
</view> |
||||
|
||||
<view style="flex: 1;"> |
||||
<view>运单号:</view> |
||||
<view class=""> |
||||
{{user.item.waybillNo}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<view class="contenbx1"> |
||||
<view> |
||||
<text>订单总数:</text> |
||||
{{user.item.totalNum}} |
||||
</view> |
||||
<view> |
||||
<text> |
||||
装车数/卸车数: |
||||
</text> |
||||
{{user.item.loadingNum + '/' + user.item.unloadNum}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<template #content> |
||||
<u-divider text="详情"></u-divider> |
||||
<block v-for="value in user.item.unloadPackageList" :key="value.name"> |
||||
<view class="details_container"> |
||||
<template v-if="Number(orderStatus) === 1"> |
||||
<view class="flex-c-sb"> |
||||
<view class=""> |
||||
包条码: {{value.orderPackageCode}} |
||||
</view> |
||||
<view class="flex1" style="margin-left: 5px;"> |
||||
装车数/卸车数: {{value.num + '/' + (value.unloadNum || 0)}} |
||||
</view> |
||||
</view> |
||||
<view class="flex-c-sb mt10"> |
||||
<view class="flex1"> |
||||
托盘名称: {{value.trayName || '暂无数据'}} |
||||
</view> |
||||
<view class="flex1"> |
||||
托盘码: {{value.trayCode || '暂无数据'}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<template v-if="Number(orderStatus) === 2"> |
||||
<view class="flex-c-sb"> |
||||
<view class="flex1"> |
||||
产品名称: {{value.orderPackageCode}} |
||||
</view> |
||||
|
||||
<view class="flex1"> |
||||
装车数/卸车数: {{value.num + '/' + (value.unloadNum || 0)}} |
||||
</view> |
||||
</view> |
||||
<view class="flex-c-sb mt10"> |
||||
<view class="flex1"> |
||||
托盘名称: {{value.trayName || '暂无数据'}} |
||||
</view> |
||||
<view class="flex1"> |
||||
托盘码: {{value.trayCode || '暂无数据'}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
</view> |
||||
</block> |
||||
</template> |
||||
</PullDownBox> |
||||
</template> |
||||
</ScrollList> --> |
||||
</template> |
||||
</BasicContainer> |
||||
|
||||
<tiplist ref="tiplists"> |
||||
|
||||
</tiplist> |
||||
|
||||
<!-- 零担装车 --> |
||||
<PopUp ref='ZeroStowage'> |
||||
|
||||
<scroll-view scroll-y="true"> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;">订单编号:</text>{{details.zeroInfo.orderCode}} |
||||
</view> |
||||
</view> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;">运单号:</text>{{details.zeroInfo.waybillNo}} |
||||
</view> |
||||
</view> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;">物料名称:</text>{{details.zeroInfo.orderPackageCode}} |
||||
</view> |
||||
</view> |
||||
<view class="flex-c-sb"> |
||||
<view><text style="color: #90A0AF;">装车数:</text>{{details.zeroInfo.num || 0}}</view> |
||||
<view><text style="color: #90A0AF;">卸车数:</text>{{details.zeroInfo.unloadNum || 0}}</view> |
||||
</view> |
||||
<inputNum :minNum="0" :maxNum="details.zeroInfo.num" v-model="details.zeroInfo.unloadNum" /> |
||||
|
||||
</scroll-view> |
||||
</PopUp> |
||||
|
||||
<!-- 整托装车 --> |
||||
<PopUp ref='TrayStowage'> |
||||
|
||||
</PopUp> |
||||
<!-- #ifdef APP --> |
||||
<saomiao2 :ishidestop="scanState !== 0"></saomiao2> |
||||
<!-- #endif --> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
import { |
||||
postCarsLoadUnloadPackage, |
||||
postArriveUnloadCarsDetail, |
||||
postCarsLoadUnloadZero |
||||
} from '@/api/user.js' |
||||
import { |
||||
onLoad, |
||||
onShow, |
||||
} from '@dcloudio/uni-app' |
||||
import { computed, inject, nextTick, onMounted, reactive, ref, toRefs, } from "vue"; |
||||
import useSystemSettingsStore from '@/store/useSystemSettingsStore'; |
||||
import { storeToRefs } from 'pinia'; |
||||
const { scanState } = storeToRefs(useSystemSettingsStore()) |
||||
const utils = inject('utils') as any |
||||
|
||||
const option = reactive({ |
||||
title: '配载按件卸车', |
||||
haveData: true, |
||||
async pullDownRefreshInitPage() { |
||||
return await initpage() |
||||
}, |
||||
}) |
||||
|
||||
let details = reactive({ |
||||
schanvalue: '', |
||||
typearr: [ |
||||
{ |
||||
value: 3, |
||||
label: '齐套' |
||||
}, |
||||
{ |
||||
value: 2, |
||||
label: '部分扫' |
||||
}, |
||||
{ |
||||
value: 1, |
||||
label: '未扫' |
||||
} |
||||
], |
||||
items: {} as any, |
||||
datalist: [], |
||||
scancode: '', |
||||
orderStatus: 1, |
||||
loadId: '', |
||||
orderType: 0, |
||||
inputtxt: '', |
||||
listcheckindex: -1, |
||||
isscan: false, |
||||
order: [], |
||||
zero: [], |
||||
pageInfo: {}, |
||||
// 零担详情装车列表 |
||||
zeroList: [], |
||||
/** 页面类型 1: 按件装车 2: 整托装车 */ |
||||
pageType: 1, |
||||
/** 整托渲染列表 */ |
||||
trayInfo: { |
||||
zeroList: [], |
||||
packageList: [] |
||||
}, |
||||
/** 卸车的零担信息 */ |
||||
zeroInfo: {} |
||||
}) |
||||
|
||||
|
||||
// 获取组件实例 |
||||
const tiplists = ref(null) |
||||
const basicContainer = ref(null) |
||||
|
||||
/** 零担装车 */ |
||||
const ZeroStowage = ref() |
||||
|
||||
/** 整托装车 */ |
||||
const TrayStowage = ref() |
||||
|
||||
onLoad((op) => { |
||||
details.loadId = op.id |
||||
details.pageType = op.type |
||||
|
||||
option.title = Number(op.type) === 2 ? '配载整托卸车' : '配载按件卸车' |
||||
}) |
||||
|
||||
function goorderdetail(item) { |
||||
uni.navigateTo({ |
||||
url: '/pagesHome/pages/orderDetails/orderDetails?orderCode=' + item.orderCode |
||||
}) |
||||
} |
||||
|
||||
onShow(async () => { |
||||
// #ifdef APP |
||||
uni.$off('scancodedate') |
||||
uni.$on('scancodedate', function (code) { |
||||
if (code) { |
||||
console.log('code', code); |
||||
details.scancode = code |
||||
details.isscan = true |
||||
scandata() |
||||
} |
||||
}) |
||||
// #endif |
||||
|
||||
await nextTick() |
||||
// 请求页面 |
||||
// const timer = setTimeout(() => { |
||||
basicContainer.value.startPullDownRefresh() |
||||
// clearTimeout(timer) |
||||
// }, 10) |
||||
}) |
||||
|
||||
function showsdqs() { |
||||
tiplists.value.setdetails({ |
||||
isshow: true, |
||||
tipstate: 1, |
||||
title: '请输入扫描的码', |
||||
placeholder: '请输入扫描的码', |
||||
inputtext: '', |
||||
success: (detail) => { |
||||
details.scancode = detail.inputtext |
||||
scandata() |
||||
tiplists.value.setdetails({ isshow: false }) |
||||
}, |
||||
cancel: () => { |
||||
tiplists.value.setdetails({ isshow: false }) |
||||
}, |
||||
close: () => { |
||||
tiplists.value.setdetails({ isshow: false }) |
||||
} |
||||
}) |
||||
} |
||||
|
||||
/** 请求页面 -- 按件装车 */ |
||||
const initPageByOrder = async () => { |
||||
try { |
||||
const response = await postArriveUnloadCarsDetail({ |
||||
loadId: details.loadId |
||||
}) |
||||
const { code, data } = response |
||||
console.log('response :>> ', response); |
||||
if (code === 200) { |
||||
details.pageInfo = data |
||||
details.datalist = details.orderStatus === 1 ? |
||||
details.pageInfo.unloadScanOrderList : |
||||
details.orderStatus === 2 ? |
||||
details.pageInfo.unloadZeroList : |
||||
details.pageInfo.exceptionList |
||||
} |
||||
} catch (e) { |
||||
//TODO handle the exception |
||||
} finally { |
||||
return null |
||||
} |
||||
} |
||||
|
||||
/** 请求页面数据 */ |
||||
async function initpage() { |
||||
try { |
||||
// 按件请求页面 |
||||
const res = await initPageByOrder() |
||||
|
||||
} catch (err) { |
||||
console.log('err :>> ', err); |
||||
//TODO handle the exception |
||||
} finally { |
||||
return null |
||||
} |
||||
} |
||||
|
||||
function checktype(e) { |
||||
if (e == '') { |
||||
details.schanvalue = '' |
||||
details.orderType = 0 |
||||
} |
||||
details.typearr.map(item => { |
||||
if (item.value == e) { |
||||
details.schanvalue = item.label |
||||
details.orderType = item.value |
||||
} |
||||
}) |
||||
} |
||||
|
||||
/** |
||||
* 切换tabBer状态 |
||||
* @param {type} state 选中的状态 |
||||
*/ |
||||
function setorderStatus(state : number) { |
||||
if (details.orderStatus === state) return |
||||
details.orderStatus = state |
||||
|
||||
details.datalist = details.orderStatus === 1 ? |
||||
details.pageInfo.unloadScanOrderList : |
||||
details.orderStatus === 2 ? |
||||
details.pageInfo.unloadZeroList : |
||||
details.pageInfo.exceptionList |
||||
console.log('details.datalist :>> ', details.datalist); |
||||
} |
||||
|
||||
/** 扫描包件 */ |
||||
const scanOrder = async () => { |
||||
let _scanCode = details.scancode |
||||
|
||||
// 是否存在该包件 |
||||
let isHave = false |
||||
|
||||
// 该包件是否已被卸车或签收 |
||||
let returnContent = '' |
||||
for (let item of details.pageInfo.unloadScanOrderList) { |
||||
let isBreak = false |
||||
for (let val of item.unloadPackageList) { |
||||
if (_scanCode === val.orderPackageCode) { |
||||
isHave = true |
||||
isBreak = true |
||||
if (Number(val.scanStatus) === 2) { |
||||
returnContent = '该包件已卸车' |
||||
} else if (Number(val.scanStatus) === 3) { |
||||
returnContent = '该包件已签收' |
||||
} |
||||
} |
||||
} |
||||
|
||||
if (isBreak) break |
||||
} |
||||
|
||||
if (returnContent) { |
||||
// #ifdef APP |
||||
utils.ttsspke(returnContent) |
||||
// #endif |
||||
uni.showToast({ |
||||
title: returnContent, |
||||
icon: 'none' |
||||
}) |
||||
return |
||||
} |
||||
|
||||
|
||||
try { |
||||
const submitData = { |
||||
orderPackageCode: _scanCode, |
||||
loadId: details.loadId |
||||
} |
||||
const res = await postCarsLoadUnloadPackage(submitData) |
||||
return res |
||||
|
||||
} catch (err) { |
||||
console.log('err :>> ', err); |
||||
//TODO handle the exception |
||||
} finally { |
||||
// 刷新 |
||||
basicContainer.value.startPullDownRefresh() |
||||
} |
||||
} |
||||
|
||||
/** 扫描接口 |
||||
* */ |
||||
function scandata() { |
||||
// 按件卸车 |
||||
if (Number(details.pageType) === 1) scanOrder() |
||||
} |
||||
|
||||
/** 返回上一页 */ |
||||
const leftClick = () => { |
||||
uni.navigateBack() |
||||
} |
||||
|
||||
/** 零担卸车 */ |
||||
const handleZeroStowage = (_item, _value) => { |
||||
details.zeroInfo = { waybillNo: _item.waybillNo, orderCode: _item.orderCode, ..._value } |
||||
|
||||
ZeroStowage.value.setDetails({ |
||||
title: '零担卸车', |
||||
showPopUp: true, |
||||
success() { |
||||
console.log('details.zeroInfo :>> ', details.zeroInfo); |
||||
const submitData = { |
||||
loadId: details.loadId, |
||||
waybillNo: details.zeroInfo.waybillNo, |
||||
orderCode: details.zeroInfo.orderCode, |
||||
productName: details.zeroInfo.orderPackageCode, |
||||
enterNum: details.zeroInfo.unloadNum |
||||
} |
||||
postCarsLoadUnloadZero(submitData) |
||||
} |
||||
}) |
||||
} |
||||
|
||||
const { orderStatus, items, datalist } = toRefs(details) |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.xialaxz { |
||||
display: flex; |
||||
flex-direction: column; |
||||
|
||||
.box { |
||||
display: flex; |
||||
align-items: flex-start; |
||||
justify-content: space-between; |
||||
border-top: 1upx solid #00000010; |
||||
padding: 20upx 0; |
||||
box-sizing: border-box; |
||||
font-size: 28upx; |
||||
color: #092C4D; |
||||
flex-wrap: wrap; |
||||
|
||||
>view { |
||||
min-width: 50%; |
||||
word-wrap: break-word; |
||||
word-break: break-all; |
||||
|
||||
&:nth-last-child(1) { |
||||
margin-right: 0upx; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.butlur { |
||||
width: 200upx !important; |
||||
height: 64upx !important; |
||||
background: var(--subjectColor); |
||||
border-radius: 8upx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #FFFFFF; |
||||
} |
||||
|
||||
.tabtip { |
||||
display: flex; |
||||
background-color: #fff; |
||||
|
||||
>view { |
||||
padding: 20upx 0; |
||||
flex: 1; |
||||
position: relative; |
||||
text-align: center; |
||||
|
||||
&::after { |
||||
content: ''; |
||||
display: block; |
||||
position: absolute; |
||||
width: 0%; |
||||
height: 6upx; |
||||
background: var(--subjectColor); |
||||
bottom: 3upx; |
||||
left: 50%; |
||||
transform: translateX(-50%); |
||||
transition: all .3s; |
||||
|
||||
|
||||
} |
||||
|
||||
&.active { |
||||
&::after { |
||||
content: ''; |
||||
display: block; |
||||
width: 100%; |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
.hdtp { |
||||
padding: 34upx 32upx 0; |
||||
box-sizing: border-box; |
||||
background-color: #ffffff; |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
|
||||
>view { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
margin-bottom: 24upx; |
||||
|
||||
&:nth-last-child(1) { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
>view { |
||||
width: 50%; |
||||
// flex: 1; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.scve { |
||||
width: 100%; |
||||
height: 50vh; |
||||
margin-top: 20upx; |
||||
|
||||
.mabx { |
||||
background: #fff; |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
background: #FFFFFF; |
||||
} |
||||
} |
||||
|
||||
.contenbx1 { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
font-size: 28upx; |
||||
color: #092C4D; |
||||
margin-bottom: 20upx; |
||||
|
||||
&:nth-last-child(1) { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
// >view { |
||||
// flex: 1; |
||||
// } |
||||
} |
||||
|
||||
.hdtpnum { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-around; |
||||
background-color: #ffffff; |
||||
padding: 20upx 0; |
||||
border-bottom: 3upx solid #EEEEEE; |
||||
|
||||
>view { |
||||
display: flex; |
||||
align-items: center; |
||||
flex-direction: column; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
|
||||
&:nth-of-type(1) { |
||||
>view:nth-of-type(2) { |
||||
color: #092C4D; |
||||
} |
||||
} |
||||
|
||||
&:nth-of-type(2) { |
||||
>view:nth-of-type(2) { |
||||
color: #0086F1; |
||||
} |
||||
} |
||||
|
||||
&:nth-of-type(3) { |
||||
>view:nth-of-type(2) { |
||||
color: #3AD8BC; |
||||
} |
||||
} |
||||
|
||||
&:nth-of-type(4) { |
||||
>view:nth-of-type(2) { |
||||
color: #FA8C16; |
||||
} |
||||
} |
||||
|
||||
>view:nth-of-type(2) { |
||||
font-size: 36upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.flex-c-sb { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
} |
||||
|
||||
// 按钮 |
||||
.button { |
||||
padding: 10upx 15upx; |
||||
background: var(--subjectColor); |
||||
color: #fff; |
||||
border-radius: 5upx; |
||||
width: auto; |
||||
display: inline-block; |
||||
font-size: 28upx; |
||||
|
||||
&.abnormalBtn { |
||||
background: #f8544b; |
||||
} |
||||
} |
||||
|
||||
// 异常 |
||||
.abnormal { |
||||
background: linear-gradient(0% #000000 50% #0086F1); |
||||
} |
||||
|
||||
.w100 { |
||||
width: 100%; |
||||
} |
||||
|
||||
.input { |
||||
padding: 10upx 20upx; |
||||
border: 1upx solid #aaa; |
||||
border-radius: 10upx; |
||||
margin: 5upx 0 20upx; |
||||
} |
||||
|
||||
.pop_row { |
||||
padding: 10upx 0; |
||||
border-bottom: 1upx solid #aaa; |
||||
} |
||||
|
||||
// 分界线 |
||||
:deep(.u-divider) { |
||||
margin: 10upx 0; |
||||
} |
||||
|
||||
:deep(.u-divider__text) { |
||||
font-size: 28upx !important; |
||||
} |
||||
|
||||
// 详情 |
||||
.details_container { |
||||
font-size: 28upx; |
||||
zoom: 0.9; |
||||
border-bottom: 1upx solid #FA8C16; |
||||
padding: 15upx 0; |
||||
|
||||
&:last-child { |
||||
border-bottom: 0upx; |
||||
} |
||||
} |
||||
|
||||
.mt10 { |
||||
margin-top: 10upx; |
||||
} |
||||
|
||||
.flex1 { |
||||
flex: 1; |
||||
} |
||||
|
||||
// 标签 |
||||
.tip { |
||||
padding: 10upx 15upx; |
||||
background: var(--subjectColor); |
||||
color: #fff; |
||||
border-radius: 5upx; |
||||
margin-left: 10upx; |
||||
} |
||||
</style> |
@ -1,15 +1,96 @@
|
||||
<template> |
||||
<u-navbar title="关于我们" bgColor='#D3832A' leftIconColor='#ffffff' titleStyle='color:#ffffff' placeholder |
||||
:autoBack="true" leftIconSize='35'></u-navbar> |
||||
<view> |
||||
|
||||
<view class="h100"> |
||||
<view style="line-height: 40px;display: flex;justify-content: space-between;"> |
||||
<view @click="toAssign">滚动到:Item999</view> |
||||
<view @click="toAssign1">滚动到:Item100</view> |
||||
<view @click="toAssign2">滚动到:Item0</view> |
||||
</view> |
||||
<jp-virtual-list code="id" class="h100" :refresher="true" isBackTop @scrolltoupper="scrolltoupper" |
||||
@refresher="refresher" :data="listx" ref="search"> |
||||
<template v-slot="{ list }"> |
||||
<view v-for="item in list" :key="item.id" :id="item.id" :ref="item.id"> |
||||
<view class="list_item" :style="'height:' + item.height +'rpx'"> |
||||
{{item.id}}随机高度:{{item.height}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
</jp-virtual-list> |
||||
</view> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
|
||||
<script> |
||||
export default { |
||||
data() { |
||||
return { |
||||
listx: [], |
||||
key: '' |
||||
} |
||||
}, |
||||
mounted() { |
||||
const data = [] |
||||
for (let i = 0; i < 10000; i++) { |
||||
data.push({ |
||||
name: `Item ${i}`, |
||||
index: i, |
||||
id: `Item${i}`, |
||||
height: (Math.floor(Math.random() * 100) + 100) |
||||
}) |
||||
} |
||||
this.listx = data |
||||
}, |
||||
methods: { |
||||
toAssign() { |
||||
this.$refs.search.toAssign('Item999', this) |
||||
}, |
||||
toAssign1() { |
||||
this.$refs.search.toAssign('Item100', this) |
||||
}, |
||||
toAssign2() { |
||||
this.$refs.search.toAssign('Item0', this) |
||||
}, |
||||
scrolltoupper() { |
||||
const data = [] |
||||
for (let i = 0; i < 30; i++) { |
||||
data.push({ |
||||
name: `Itemc ${i}`, |
||||
index: i, |
||||
id: `Itemc${i}${(Math.floor(Math.random() * 100)+100)}`, |
||||
height: (Math.floor(Math.random() * 100) + 100) |
||||
}) |
||||
} |
||||
setTimeout(() => { |
||||
// 告诉组件我需要添加该数据 |
||||
this.$refs.search.addPage(data) |
||||
}, 1000) |
||||
}, |
||||
refresher() { |
||||
const data = [] |
||||
for (let i = 0; i < 10000; i++) { |
||||
data.push({ |
||||
name: `Item ${i}`, |
||||
index: i, |
||||
id: `Item${i}`, |
||||
height: (Math.floor(Math.random() * 100) + 100) |
||||
}) |
||||
} |
||||
setTimeout(() => { |
||||
this.listx = data |
||||
// 告诉组件刷新成功了 |
||||
this.$refs.search.refreshers() |
||||
}, 2000) |
||||
}, |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.h100 { |
||||
height: calc(100vh - 80px); |
||||
} |
||||
|
||||
</style> |
||||
.list_item { |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
border: 1px solid #f5f5f5; |
||||
} |
||||
</style> |
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,11 +1,13 @@
|
||||
"use strict"; |
||||
const _imports_0$2 = "/static/ck.png"; |
||||
const _imports_0$3 = "/static/ck.png"; |
||||
const _imports_1$1 = "/static/nock.png"; |
||||
const _imports_1 = "/static/check.png"; |
||||
const _imports_0$1 = "/static/nocheck.png"; |
||||
const _imports_0 = "/assets/cha.b7e7843e.png"; |
||||
exports._imports_0 = _imports_0; |
||||
exports._imports_0$1 = _imports_0$1; |
||||
exports._imports_0$2 = _imports_0$2; |
||||
const _imports_0$2 = "/static/nocheck.png"; |
||||
const _imports_0$1 = "/assets/cha.b7e7843e.png"; |
||||
const _imports_0 = "/assets/top.8e031a5d.png"; |
||||
exports._imports_0 = _imports_0$1; |
||||
exports._imports_0$1 = _imports_0$2; |
||||
exports._imports_0$2 = _imports_0$3; |
||||
exports._imports_0$3 = _imports_0; |
||||
exports._imports_1 = _imports_1; |
||||
exports._imports_1$1 = _imports_1$1; |
||||
|
Loading…
Reference in new issue