27 changed files with 2841 additions and 333 deletions
@ -0,0 +1,478 @@
|
||||
<template> |
||||
<!-- <u-navbar title="拣货扫描" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> --> |
||||
<BasicContainer ref="basicContainer" :option="option" :leftClick="backPreviousPage"> |
||||
<template #head> |
||||
<view class="schbox"> |
||||
<view>拣货日期:</view> |
||||
<view @click='showCalendar' class="inputsr"> |
||||
<input :value='datatime' disabled placeholder="请选择时间" /> |
||||
<view @click.stop.prevent> |
||||
<u-icon @click='showCalendar' style="margin-right: 10rpx;" v-if="!datatime" name="calendar" |
||||
color="#999999" size="50"></u-icon> |
||||
<u-icon @click="cleartime" style="margin-right: 10rpx;" v-else name="close-circle" color="#999999" |
||||
size="40"></u-icon> |
||||
</view> |
||||
</view> |
||||
<view @click="init"> |
||||
查询 |
||||
</view> |
||||
</view> |
||||
<view class="tabtip"> |
||||
<view @click="setstate(1)"> |
||||
<view :class="status==1?'xz':''">为发车</view> |
||||
</view> |
||||
<view @click="setstate(2)"> |
||||
<view :class="status==2?'xz':''">已发车</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<template #body> |
||||
<scroll-view class="sccv" scroll-y="true" @scrolltolower="jiazai"> |
||||
<view class="mabx"> |
||||
<view v-for="item in dataList" :key="item"> |
||||
<view class="topbox"> |
||||
<view class="type1"> |
||||
<view> |
||||
<text style="color: #90A0AF;">配车类型:</text>{{item.typeServiceStr}} |
||||
</view> |
||||
<view> |
||||
<text style="color: #90A0AF;">备货是否完成:</text>{{item.stockupStatusStr}} |
||||
</view> |
||||
</view> |
||||
<view class="type1"> |
||||
<view> |
||||
<text style="color: #90A0AF;">客户:</text>{{item.customer}} |
||||
</view> |
||||
<view> |
||||
<text style="color: #90A0AF;">备货区域:</text>{{item.stockupArea}} |
||||
</view> |
||||
</view> |
||||
<view class="type3"> |
||||
<view> |
||||
<text style="color: #90A0AF;">库位:</text>{{item.warehouseArea}} |
||||
</view> |
||||
</view> |
||||
<view class="type3"> |
||||
<view> |
||||
<text style="color: #90A0AF;">托盘:</text>{{item.trays}} |
||||
</view> |
||||
</view> |
||||
<view class="type2"> |
||||
<view> |
||||
<view>订单总数</view> |
||||
<view>{{item.orderNum}}</view> |
||||
</view> |
||||
<view> |
||||
<view>计划备货件数</view> |
||||
<view>{{item.planNum}}</view> |
||||
</view> |
||||
<view> |
||||
<view>备货件数</view> |
||||
<view>{{item.realNum}}</view> |
||||
</view> |
||||
<view> |
||||
<view>库存品数</view> |
||||
<view>{{item.inventoryNub}}</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="bts" v-if="Number(item.stockupStatus)!=40"> |
||||
<!-- <view @click="submitsuccess"> |
||||
备货完成 |
||||
</view> --> |
||||
<view @click="gostockuplist(item)"> |
||||
去备货 |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</scroll-view> |
||||
</template> |
||||
</BasicContainer> |
||||
<tips ref="tip"></tips> |
||||
<l-calendar v-model:value="show" :initStartDate='date[0]' :initEndDate='date[1]' @hide='showCalendar' |
||||
@change="onConfirm"></l-calendar> |
||||
<!-- <hd-calendar mode="range" color='#D3832A' minDate='2023-01-01' @confirm="onConfirm" /> --> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
import { |
||||
onLoad, |
||||
onShow, |
||||
onHide, |
||||
onUnload, |
||||
onPullDownRefresh |
||||
} from '@dcloudio/uni-app' |
||||
import { postCarsLoadPageList } from '@/api/user.js' |
||||
import { timeType } from '@/interfaces/pagesHome/allType' |
||||
import { inject, reactive, ref, toRefs, watchEffect } from "vue"; |
||||
import utils from '@/utils/utils'; |
||||
const option = { |
||||
title: '配载装车', |
||||
haveData: true, |
||||
async pullDownRefreshInitPage() { |
||||
details.dataList = [] |
||||
return await init() |
||||
} |
||||
} |
||||
let details = reactive({ |
||||
datatime: '', |
||||
dataList: [], |
||||
show: false, |
||||
pageNum: 1, |
||||
size: 10, |
||||
stockupDate: '', |
||||
status: 1, |
||||
}) |
||||
let tip = ref(null) |
||||
const basicContainer = ref(null) |
||||
const date = ref<number | string[]>([]) |
||||
function showCalendar() { |
||||
details.show = !details.show |
||||
} |
||||
function onConfirm(e : any) { |
||||
console.log(e); |
||||
date.value[0] = e.startDate |
||||
date.value[1] = e.endDate |
||||
details.datatime = date.value[0] + ' 至 ' + date.value[1] |
||||
// details.datatime=(uni as any).$u.timeFormat(date.value[0], 'yyyy-mm-dd')+' 至 '+(uni as any).$u.timeFormat(date.value[1], 'yyyy-mm-dd') |
||||
} |
||||
watchEffect(() => { |
||||
if ((date.value as []).length != 0) { |
||||
details.datatime = date.value[0] + ' 至 ' + date.value[1] |
||||
} |
||||
}) |
||||
onShow(() => { |
||||
// #ifdef APP |
||||
uni.$off('scancodedate') |
||||
// #endif |
||||
const timer = setTimeout(() => { |
||||
basicContainer.value.startPullDownRefresh() |
||||
clearTimeout(timer) |
||||
}, 200) |
||||
}) |
||||
onLoad(() => { |
||||
date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 3), 'yyyy-mm-dd') |
||||
date.value[1] = (uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd') |
||||
utils.ttsspke('请选择拣货任务') |
||||
}) |
||||
async function init() { |
||||
details.pageNum = 1 |
||||
details.dataList = [] |
||||
return initpage() |
||||
} |
||||
function jiazai() { |
||||
details.pageNum++ |
||||
initpage() |
||||
} |
||||
async function initpage() { |
||||
try { |
||||
uni.showLoading({ |
||||
title: '数据加载中', |
||||
mask: true |
||||
}) |
||||
let data = { |
||||
pageNum: details.pageNum, |
||||
pageSize: details.size, |
||||
startDate: date.value[0], |
||||
endDate: date.value[1], |
||||
type: details.status, |
||||
} |
||||
let response = await postCarsLoadPageList(data) |
||||
if (response.code !== 200) return |
||||
if (details.pageNum == 1 && response.data) { |
||||
details.dataList = response.data.records |
||||
} else { |
||||
if (response.data.records.length == 0) { |
||||
uni.showToast({ |
||||
title: '已经到底了。', |
||||
icon: 'none' |
||||
}) |
||||
details.pageNum-- |
||||
return |
||||
} |
||||
details.dataList = details.dataList.concat(response.data.records) |
||||
} |
||||
} catch (e) { |
||||
//TODO handle the exception |
||||
} finally { |
||||
uni.hideLoading() |
||||
details.dataList = [{}] |
||||
return null |
||||
} |
||||
} |
||||
|
||||
function checktime(event : timeType) { |
||||
console.log(event); |
||||
details.datatime = (uni as any).$u.timeFormat(event.value, 'yyyy-mm-dd'); |
||||
details.show = false |
||||
console.log(details.datatime); |
||||
} |
||||
function gostockuplist(item : any) { |
||||
uni.reLaunch({ |
||||
url: '/pagesHome/pages/PickingScanList/PickingScanList?id=' + item.id + '&stockupArea=' + item.stockupArea, |
||||
}) |
||||
} |
||||
function cleartime() { |
||||
// console.log(1231211); |
||||
details.datatime = '' |
||||
date.value = [] |
||||
basicContainer.value.startPullDownRefresh() |
||||
} |
||||
function setstate(state : number) { |
||||
details.status = state |
||||
basicContainer.value.startPullDownRefresh() |
||||
} |
||||
|
||||
// 返回上一级页面 |
||||
function backPreviousPage() { |
||||
uni.reLaunch({ |
||||
url: '/pages/index/index' |
||||
}) |
||||
} |
||||
|
||||
const { datatime, dataList, show, status } = toRefs(details) |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.inputsr { |
||||
width: 400upx !important; |
||||
height: 64upx; |
||||
background: #F5F5F6; |
||||
border-radius: 8upx 8upx 8upx 8upx; |
||||
opacity: 1; |
||||
border: 2upx solid #EEEEEE; |
||||
padding: 16upx 18upx; |
||||
box-sizing: border-box; |
||||
padding-right: 0; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
font-size: 26upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
|
||||
>input { |
||||
flex: 1; |
||||
font-size: 26upx; |
||||
} |
||||
} |
||||
|
||||
.sccv { |
||||
width: 100%; |
||||
height: 74vh; |
||||
margin-top: 20upx; |
||||
|
||||
.mabx { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
width: 100%; |
||||
box-sizing: border-box; |
||||
padding: 20upx 32upx; |
||||
padding-top: 0upx; |
||||
|
||||
>view { |
||||
width: 686upx; |
||||
background: #FFFFFF; |
||||
display: flex; |
||||
flex-direction: column; |
||||
box-sizing: border-box; |
||||
border-bottom: 1upx solid #ebebeb; |
||||
padding-bottom: 30upx; |
||||
background-color: #ffffff; |
||||
margin-bottom: 20upx; |
||||
padding-top: 20upx; |
||||
border-radius: 8upx; |
||||
|
||||
>view:nth-last-child(1) { |
||||
border-bottom: none !important; |
||||
} |
||||
|
||||
.topbox { |
||||
display: flex; |
||||
flex-direction: column; |
||||
padding: 24upx; |
||||
border-bottom: 2upx solid #EEEEEE; |
||||
|
||||
>.type1 { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
margin-bottom: 20upx; |
||||
font-size: 28upx; |
||||
color: #161616; |
||||
|
||||
>view { |
||||
width: 50%; |
||||
} |
||||
} |
||||
|
||||
>.type2 { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-around; |
||||
margin-bottom: 15upx; |
||||
font-size: 28upx; |
||||
color: #161616; |
||||
margin-top: 20upx; |
||||
|
||||
>view { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
|
||||
>view:nth-of-type(1) { |
||||
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: #3AD8BC; |
||||
} |
||||
} |
||||
|
||||
&:nth-of-type(3) { |
||||
>view:nth-of-type(2) { |
||||
color: #FA8C16; |
||||
} |
||||
} |
||||
|
||||
>view:nth-of-type(2) { |
||||
font-size: 36upx; |
||||
margin-top: 10upx; |
||||
|
||||
} |
||||
} |
||||
} |
||||
|
||||
>.type3 { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
margin-bottom: 20upx; |
||||
font-size: 26upx; |
||||
color: #161616; |
||||
} |
||||
} |
||||
|
||||
>.bts { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
margin-top: 20upx; |
||||
|
||||
>view:nth-of-type(1) { |
||||
width: 204upx; |
||||
height: 64upx; |
||||
background: #FFFFFF; |
||||
border-radius: 8upx; |
||||
opacity: 1; |
||||
border: 2upx solid #0086F1; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #0086F1; |
||||
|
||||
} |
||||
|
||||
>view:nth-of-type(2) { |
||||
width: 204upx; |
||||
height: 64upx; |
||||
background: #FFFFFF; |
||||
border-radius: 8upx; |
||||
opacity: 1; |
||||
border: 2upx solid #D3832A; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #D3832A; |
||||
margin-left: 100upx; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.tabtip { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
|
||||
>view { |
||||
width: 50%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
background-color: #ffffff; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #90A0AF; |
||||
|
||||
>view { |
||||
height: 80upx; |
||||
border-bottom: 8upx solid #ffffff; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
} |
||||
|
||||
.xz { |
||||
color: #D3832A; |
||||
border-bottom: 8upx solid #D3832A; |
||||
// border-radius: 5upx; |
||||
} |
||||
} |
||||
|
||||
.schbox { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
padding: 15upx 32upx; |
||||
box-sizing: border-box; |
||||
background-color: #ffffff; |
||||
|
||||
>view:nth-of-type(1) { |
||||
// width: 150upx; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
} |
||||
|
||||
>view:nth-of-type(2) { |
||||
width: 380upx; |
||||
// height: 64upx; |
||||
} |
||||
|
||||
>view:nth-of-type(3) { |
||||
width: 128upx; |
||||
height: 64upx; |
||||
background: #D3832A; |
||||
border-radius: 8upx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #FFFFFF; |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,481 @@
|
||||
<template> |
||||
<!-- <u-navbar title="拣货扫描" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> --> |
||||
<BasicContainer ref="basicContainer" :option="option" :leftClick="backPreviousPage"> |
||||
<template #head> |
||||
<view class="schbox"> |
||||
<view>拣货日期:</view> |
||||
<view @click='showCalendar' class="inputsr"> |
||||
<input :value='datatime' disabled placeholder="请选择时间" /> |
||||
<view @click.stop.prevent> |
||||
<u-icon @click='showCalendar' style="margin-right: 10rpx;" v-if="!datatime" name="calendar" |
||||
color="#999999" size="50"></u-icon> |
||||
<u-icon @click="cleartime" style="margin-right: 10rpx;" v-else name="close-circle" color="#999999" |
||||
size="40"></u-icon> |
||||
</view> |
||||
</view> |
||||
<view @click="init"> |
||||
查询 |
||||
</view> |
||||
</view> |
||||
<view class="tabtip"> |
||||
<view @click="setstate(1)"> |
||||
<view :class="status==1?'xz':''">未发车</view> |
||||
</view> |
||||
<view @click="setstate(2)"> |
||||
<view :class="status==2?'xz':''">已发车</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<template #body> |
||||
<scroll-view class="sccv" scroll-y="true" @scrolltolower="jiazai"> |
||||
<view class="mabx"> |
||||
<view v-for="item in dataList" :key="item"> |
||||
<view class="topbox font-color"> |
||||
<view class="type1"> |
||||
<view> |
||||
<text>车次号:</text> |
||||
<text>{{item.carsNo}}</text> |
||||
</view> |
||||
<view> |
||||
<text>车牌:</text> |
||||
<text>{{item.carNumber}}</text> |
||||
</view> |
||||
</view> |
||||
<view class="type1"> |
||||
<view> |
||||
<text>总件数/装车件数:</text> |
||||
<text>{{item.planLoadingNumber + '/' + item.realLoadingNumber}}</text> |
||||
</view> |
||||
<view> |
||||
<text>车长:</text> |
||||
<text>{{''}}</text> |
||||
</view> |
||||
</view> |
||||
<view class="type1"> |
||||
<view> |
||||
<text>主驾司机:</text> |
||||
<text>{{item.driverName}}</text> |
||||
</view> |
||||
<view> |
||||
<text>电话:</text> |
||||
<text>{{item.driverMobile}}</text> |
||||
</view> |
||||
</view> |
||||
<view> |
||||
<text>类型:</text> |
||||
<text>{{item.carsNo}}</text> |
||||
</view> |
||||
<view> |
||||
<text>线路:</text> |
||||
<text>{{item.carsLineName}}</text> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="bts" v-if="Number(item.stockupStatus)!=40"> |
||||
<view @click="gostockuplist(item)"> |
||||
整托装车 |
||||
</view> |
||||
<view @click="gostockuplist(item)"> |
||||
按件装车 |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</scroll-view> |
||||
</template> |
||||
</BasicContainer> |
||||
<tips ref="tip"></tips> |
||||
<l-calendar v-model:value="show" :initStartDate='date[0]' :initEndDate='date[1]' @hide='showCalendar' |
||||
@change="onConfirm"></l-calendar> |
||||
<!-- <hd-calendar mode="range" color='#D3832A' minDate='2023-01-01' @confirm="onConfirm" /> --> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
import { |
||||
onLoad, |
||||
onShow, |
||||
onHide, |
||||
onUnload, |
||||
onPullDownRefresh |
||||
} from '@dcloudio/uni-app' |
||||
import { postCarsLoadPageList } from '@/api/user.js' |
||||
import { timeType } from '@/interfaces/pagesHome/allType' |
||||
import { inject, reactive, ref, toRefs, watchEffect } from "vue"; |
||||
import utils from '@/utils/utils'; |
||||
const option = { |
||||
title: '配载装车', |
||||
haveData: true, |
||||
async pullDownRefreshInitPage() { |
||||
// details.dataList.splice(0) |
||||
return await init() |
||||
} |
||||
} |
||||
let details = reactive({ |
||||
datatime: '', |
||||
/** 页面渲染数组 */ |
||||
dataList: [], |
||||
/** 未发车数据 */ |
||||
NoTrainData: [], |
||||
/** 已发车数据 */ |
||||
HaveLeftnData: [], |
||||
show: false, |
||||
pageNum: 1, |
||||
size: 10, |
||||
stockupDate: '', |
||||
status: 1, |
||||
}) |
||||
|
||||
// 初始化页面展示未发车数据 |
||||
details.dataList = details.NoTrainData |
||||
|
||||
let tip = ref(null) |
||||
const basicContainer = ref(null) |
||||
const date = ref<number | string[]>([]) |
||||
function showCalendar() { |
||||
details.show = !details.show |
||||
} |
||||
function onConfirm(e : any) { |
||||
console.log(e); |
||||
date.value[0] = e.startDate |
||||
date.value[1] = e.endDate |
||||
details.datatime = date.value[0] + ' 至 ' + date.value[1] |
||||
// details.datatime=(uni as any).$u.timeFormat(date.value[0], 'yyyy-mm-dd')+' 至 '+(uni as any).$u.timeFormat(date.value[1], 'yyyy-mm-dd') |
||||
} |
||||
watchEffect(() => { |
||||
if ((date.value as []).length != 0) { |
||||
details.datatime = date.value[0] + ' 至 ' + date.value[1] |
||||
} |
||||
}) |
||||
onShow(() => { |
||||
// #ifdef APP |
||||
uni.$off('scancodedate') |
||||
// #endif |
||||
const timer = setTimeout(() => { |
||||
basicContainer.value.startPullDownRefresh() |
||||
clearTimeout(timer) |
||||
}, 200) |
||||
}) |
||||
onLoad(() => { |
||||
date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 3), 'yyyy-mm-dd') |
||||
date.value[1] = (uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd') |
||||
utils.ttsspke('请选择拣货任务') |
||||
}) |
||||
async function init() { |
||||
details.pageNum = 1 |
||||
details.dataList.splice(0) |
||||
return initpage() |
||||
} |
||||
function jiazai() { |
||||
details.pageNum++ |
||||
initpage() |
||||
} |
||||
async function initpage() { |
||||
try { |
||||
uni.showLoading({ |
||||
title: '数据加载中', |
||||
mask: true |
||||
}) |
||||
let data = { |
||||
pageNum: details.pageNum, |
||||
pageSize: details.size, |
||||
startDate: date.value[0], |
||||
endDate: date.value[1], |
||||
type: details.status, |
||||
} |
||||
let response = await postCarsLoadPageList(data) |
||||
if (response.code !== 200 || !response.data) return |
||||
|
||||
if (details.pageNum > 1) { |
||||
if (response.data.records.length == 0) { |
||||
uni.showToast({ |
||||
title: '已经到底了。', |
||||
icon: 'none' |
||||
}) |
||||
details.pageNum-- |
||||
} |
||||
} |
||||
|
||||
if (data.type === 1) { |
||||
for (let item of response.data.records) { |
||||
details.NoTrainData.push(item) |
||||
} |
||||
} else { |
||||
for (let item of response.data.records) { |
||||
details.HaveLeftnData.push(item) |
||||
} |
||||
} |
||||
} catch (err) { |
||||
console.log('err :>> ', err); |
||||
//TODO handle the exception |
||||
} finally { |
||||
uni.hideLoading() |
||||
return null |
||||
} |
||||
} |
||||
|
||||
function checktime(event : timeType) { |
||||
console.log(event); |
||||
details.datatime = (uni as any).$u.timeFormat(event.value, 'yyyy-mm-dd'); |
||||
details.show = false |
||||
console.log(details.datatime); |
||||
} |
||||
function gostockuplist(item : any) { |
||||
uni.reLaunch({ |
||||
url: '/pagesHome/pages/StowageListDetails/StowageListDetails?id=' + item.id |
||||
}) |
||||
} |
||||
function cleartime() { |
||||
// console.log(1231211); |
||||
details.datatime = '' |
||||
date.value = [] |
||||
basicContainer.value.startPullDownRefresh() |
||||
} |
||||
function setstate(state : number) { |
||||
details.status = state |
||||
details.dataList = state === 1 ? details.NoTrainData : details.HaveLeftnData |
||||
basicContainer.value.startPullDownRefresh() |
||||
} |
||||
|
||||
// 返回上一级页面 |
||||
function backPreviousPage() { |
||||
uni.reLaunch({ |
||||
url: '/pages/index/index' |
||||
}) |
||||
} |
||||
|
||||
const { datatime, dataList, show, status } = toRefs(details) |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.inputsr { |
||||
width: 400upx !important; |
||||
height: 64upx; |
||||
background: #F5F5F6; |
||||
border-radius: 8upx 8upx 8upx 8upx; |
||||
opacity: 1; |
||||
border: 2upx solid #EEEEEE; |
||||
padding: 16upx 18upx; |
||||
box-sizing: border-box; |
||||
padding-right: 0; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
font-size: 26upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
|
||||
>input { |
||||
flex: 1; |
||||
font-size: 26upx; |
||||
} |
||||
} |
||||
|
||||
.sccv { |
||||
width: 100%; |
||||
height: 74vh; |
||||
margin-top: 20upx; |
||||
|
||||
.mabx { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
width: 100%; |
||||
box-sizing: border-box; |
||||
padding: 20upx 32upx; |
||||
padding-top: 0upx; |
||||
|
||||
>view { |
||||
width: 686upx; |
||||
background: #FFFFFF; |
||||
display: flex; |
||||
flex-direction: column; |
||||
box-sizing: border-box; |
||||
border-bottom: 1upx solid #ebebeb; |
||||
padding-bottom: 30upx; |
||||
background-color: #ffffff; |
||||
margin-bottom: 20upx; |
||||
padding-top: 20upx; |
||||
border-radius: 8upx; |
||||
|
||||
>view:nth-last-child(1) { |
||||
border-bottom: none !important; |
||||
} |
||||
|
||||
.topbox { |
||||
display: flex; |
||||
flex-direction: column; |
||||
padding: 24upx; |
||||
border-bottom: 2upx solid #EEEEEE; |
||||
|
||||
>.type1 { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
margin-bottom: 20upx; |
||||
zoom: 0.9; |
||||
|
||||
>view { |
||||
width: 50%; |
||||
} |
||||
} |
||||
|
||||
>.type2 { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-around; |
||||
margin-bottom: 15upx; |
||||
font-size: 28upx; |
||||
color: #161616; |
||||
margin-top: 20upx; |
||||
|
||||
>view { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
|
||||
>view:nth-of-type(1) { |
||||
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: #3AD8BC; |
||||
} |
||||
} |
||||
|
||||
&:nth-of-type(3) { |
||||
>view:nth-of-type(2) { |
||||
color: #FA8C16; |
||||
} |
||||
} |
||||
|
||||
>view:nth-of-type(2) { |
||||
font-size: 36upx; |
||||
margin-top: 10upx; |
||||
|
||||
} |
||||
} |
||||
} |
||||
|
||||
>.type3 { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
margin-bottom: 20upx; |
||||
font-size: 26upx; |
||||
color: #161616; |
||||
} |
||||
} |
||||
|
||||
>.bts { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
margin-top: 20upx; |
||||
|
||||
>view { |
||||
border-radius: 8upx; |
||||
background: #FFFFFF; |
||||
opacity: 1; |
||||
border: 2upx solid #0086F1; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
padding: 10upx 30upx; |
||||
color: #0086F1; |
||||
} |
||||
|
||||
>view:nth-of-type(2) { |
||||
border-color: #D3832A; |
||||
color: #D3832A; |
||||
margin-left: 100upx; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.tabtip { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
|
||||
>view { |
||||
width: 50%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
background-color: #ffffff; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #90A0AF; |
||||
|
||||
>view { |
||||
height: 80upx; |
||||
border-bottom: 8upx solid #ffffff; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
} |
||||
|
||||
.xz { |
||||
color: #D3832A; |
||||
border-bottom: 8upx solid #D3832A; |
||||
// border-radius: 5upx; |
||||
} |
||||
} |
||||
|
||||
.schbox { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
padding: 15upx 32upx; |
||||
box-sizing: border-box; |
||||
background-color: #ffffff; |
||||
|
||||
>view:nth-of-type(1) { |
||||
// width: 150upx; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
} |
||||
|
||||
>view:nth-of-type(2) { |
||||
width: 380upx; |
||||
// height: 64upx; |
||||
} |
||||
|
||||
>view:nth-of-type(3) { |
||||
width: 128upx; |
||||
height: 64upx; |
||||
background: #D3832A; |
||||
border-radius: 8upx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #FFFFFF; |
||||
} |
||||
} |
||||
|
||||
.font-color { |
||||
// color: #90A0AF; |
||||
font-size: 28upx; |
||||
} |
||||
</style> |
@ -0,0 +1,700 @@
|
||||
<template> |
||||
<BasicContainer ref="basicContainer" :option="option"> |
||||
<template #head> |
||||
<view class="hdtp"> |
||||
<view> |
||||
<view> |
||||
配载批次:{{details.pageInfo.carNo}} |
||||
</view> |
||||
<view class="butlur" @click="showsdqs"> |
||||
录入包条码 |
||||
</view> |
||||
</view> |
||||
<!-- <view> |
||||
<view>备货是否完成:{{items.isstock}}</view> |
||||
<view>装车是否完成:{{items.isload}}</view> |
||||
</view> --> |
||||
</view> |
||||
<view class="hdtpnum"> |
||||
<view> |
||||
<view>订单总数</view> |
||||
<view>{{items.ordNub || 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 class="tabtip"> |
||||
<view @click="setorderStatus(1)"> |
||||
<view :class="orderStatus==1?'xz':''">定制品</view> |
||||
</view> |
||||
<view @click="setorderStatus(2)"> |
||||
<view :class="orderStatus==2?'xz':''">零担</view> |
||||
</view> |
||||
|
||||
</view> |
||||
</template> |
||||
|
||||
<template #body> |
||||
<scroll-view class="scve" scroll-y="true" @refresherpulling="" @scrolltolower="reatchBottom"> |
||||
<view class="mabx"> |
||||
<block v-for="(item,index) in datalist" :key="item"> |
||||
<!-- 定制品 --> |
||||
<template v-if="orderStatus== 1"> |
||||
<view class="itec" @click="checkphon(item,index)"> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;" |
||||
@click.stop="goorderdetail(item)">订单编号:</text>{{item.orderCode}} |
||||
</view> |
||||
</view> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;">配送数:</text>{{item.reservationNum}}</view> |
||||
<view><text style="color: #90A0AF;">已扫码数:</text>{{item.loadingNub}}</view> |
||||
</view> |
||||
<view class="xialaxz" v-if="listcheckindex==index"> |
||||
<view v-for="ite in item.distributionAppParcelListVOS"> |
||||
<view>包条码:{{ite.orderPackageCode}}</view> |
||||
<view>货物品类:{{ite.thirdProduct}}</view> |
||||
<view>扫描状态:{{ite.isScan?ite.isScan:'未扫'}}</view> |
||||
</view> |
||||
</view> |
||||
<view v-if="item.complete" |
||||
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'"> |
||||
{{item.complete}} |
||||
</view> |
||||
<!-- 当有异常状态时, 显示异常状态 --> |
||||
<template v-if="item.isHaveAbnormalPackageName"> |
||||
<view class="abnormalStyleContainer"> |
||||
<view class="abnormalStyle"> |
||||
{{item.isHaveAbnormalPackageName}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
</view> |
||||
</template> |
||||
|
||||
<!-- 零担 --> |
||||
<template v-else-if="orderStatus == 2"> |
||||
<view class="itec" @click="checkphon(item,index)"> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;" |
||||
@click.stop="goorderdetail(item)">订单编号:</text>{{item.orderCode}} |
||||
</view> |
||||
</view> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;" |
||||
@click.stop="goorderdetail(item)">产品名称:</text>{{item.descriptionGoods}} |
||||
</view> |
||||
</view> |
||||
<view class="contenbx1"> |
||||
<view><text style="color: #90A0AF;">计划数量:</text>{{item.reservationNum}}</view> |
||||
<view><text style="color: #90A0AF;">装车数量:</text>{{item.loadingNub}}</view> |
||||
</view> |
||||
|
||||
<view v-if="item.complete" |
||||
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'"> |
||||
{{item.complete}} |
||||
</view> |
||||
</view> |
||||
</template> |
||||
</block> |
||||
</view> |
||||
</scroll-view> |
||||
</template> |
||||
</BasicContainer> |
||||
|
||||
<tiplist ref="tiplists"></tiplist> |
||||
<!-- #ifdef APP --> |
||||
<saomiao2 :ishidestop="scanState !== 0"></saomiao2> |
||||
<!-- #endif --> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
import { |
||||
postFindCarsLoadingDetail |
||||
} from '@/api/user.js' |
||||
import { |
||||
onLoad, |
||||
onShow, |
||||
onHide, |
||||
onUnload, |
||||
onPullDownRefresh |
||||
} from '@dcloudio/uni-app' |
||||
import { computed, inject, nextTick, 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() { |
||||
details.datalist = [] |
||||
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: {} |
||||
}) |
||||
|
||||
// 获取组件实例 |
||||
const tiplists = ref(null) |
||||
const basicContainer = ref(null) |
||||
|
||||
onLoad((op) => { |
||||
details.loadId = op.id |
||||
}) |
||||
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) |
||||
}) |
||||
|
||||
const loadingNub = computed(() => { |
||||
// 计算三种品类的装车件数和 |
||||
let num = 0 |
||||
if (details.order) num += details.order.reduce((curr, item) => curr + item.loadingNub, 0) |
||||
if (details.zero) num += details.zero.reduce((curr, item) => curr + item.loadingNub, 0) |
||||
console.log('num :>> ', num); |
||||
return num |
||||
}) |
||||
|
||||
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 }) |
||||
} |
||||
}) |
||||
} |
||||
|
||||
async function initpage() { |
||||
try { |
||||
const response = await postFindCarsLoadingDetail({ |
||||
loadId: details.loadId |
||||
}) |
||||
const { code, data } = response |
||||
console.log('response :>> ', response); |
||||
if (code === 200) { |
||||
details.pageInfo = data |
||||
} |
||||
// const { data } = response |
||||
// if (response.code !== 200) return |
||||
// details.zero.data = [] |
||||
// details.order.data = [] |
||||
// data.forEach(val => { |
||||
// // 零担订单 |
||||
// if (val.isZero === '1') return details.zero.data.push(val) |
||||
// details.order.data.push(val) |
||||
// }) |
||||
|
||||
// // 定制品 |
||||
// if (details.orderStatus === 1) details.datalist = details.order.data |
||||
// // 零担 |
||||
// else if (details.orderStatus === 2) details.datalist = details.zero.data |
||||
|
||||
} 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 = [] |
||||
// 调用组件内下拉刷新函数 |
||||
basicContainer.value.startPullDownRefresh() |
||||
} |
||||
|
||||
/** |
||||
* 触底加载 |
||||
*/ |
||||
function reatchBottom() { |
||||
|
||||
} |
||||
|
||||
/** 扫描接口 |
||||
* */ |
||||
async function scandata() { |
||||
try { |
||||
|
||||
} catch (err) { |
||||
console.log('err :>> ', err); |
||||
//TODO handle the exception |
||||
} finally { |
||||
// 刷新 |
||||
basicContainer.value.startPullDownRefresh() |
||||
} |
||||
} |
||||
|
||||
function checkphon(item : object, index : number) { |
||||
// 零担订单 |
||||
if (item.isZero === '1') { |
||||
const inpList = item.distributionAppParcelListVOS.map(val => { |
||||
return { |
||||
id: val.id, |
||||
title: val.firsts, |
||||
value: val.loadingNum || val.reservationNum, |
||||
maxNum: val.reservationNum, |
||||
minNum: 0, |
||||
type: 'Number', |
||||
disabled: (val.loadingNum === val.reservationNum), |
||||
allocationId: val.allocationId, |
||||
orderCode: val.orderCode, |
||||
stockArticleId: val.stockArticleId |
||||
} |
||||
}) |
||||
|
||||
// 提交模式 |
||||
tiplists.value.setdetails({ |
||||
title: '设置零担物料数量', |
||||
isshow: true, |
||||
tipstate: 4, |
||||
inpList, |
||||
inputtext: '', |
||||
confirmTxt: '确认', |
||||
isonecheck: true, |
||||
success: async (deta) => { |
||||
try { |
||||
// 查询是否都已完全签收 |
||||
if (deta.inpList.every(val => val.disabled)) return tiplists.value.setdetails({ isshow: false }) |
||||
uni.showLoading({ |
||||
mask: true, |
||||
title: "提交中" |
||||
}) |
||||
if (deta.inpList.length === 0 || item.completeStact) return tiplists.value.setdetails({ isshow: false }) |
||||
let data = { |
||||
reservationId: details.items.id, |
||||
deliveryId: details.id, |
||||
orderId: deta.inpList[0].stockArticleId, |
||||
loadingId: uni.getStorageSync('checkvehicle').id, |
||||
parcelListDTOS: [] |
||||
} |
||||
data.parcelListDTOS = deta.inpList.map(val => { |
||||
return { |
||||
parcelListId: val.id, |
||||
stockArticleId: val.stockArticleId, |
||||
loadingNum: val.value, |
||||
} |
||||
}) |
||||
|
||||
const res = await deliveryZeroLoading(data) |
||||
if (res.audio) { |
||||
// #ifdef APP |
||||
utils.ttsspke(res.audio) |
||||
// #endif |
||||
} |
||||
// 刷新 |
||||
basicContainer.value.startPullDownRefresh() |
||||
} catch (err) { |
||||
console.log('err :>> ', err); |
||||
//TODO handle the exception |
||||
} finally { |
||||
uni.hideLoading() |
||||
tiplists.value.setdetails({ isshow: false }) |
||||
|
||||
} |
||||
}, |
||||
cancel: (details) => { |
||||
tiplists.value.setdetails({ isshow: false }) |
||||
}, |
||||
close: (details) => { |
||||
tiplists.value.setdetails({ isshow: false }) |
||||
} |
||||
}) |
||||
|
||||
return |
||||
} |
||||
// details.listcheckindex=index |
||||
if (details.listcheckindex == index) { |
||||
details.listcheckindex = -1 |
||||
} else { |
||||
details.listcheckindex = index |
||||
} |
||||
} |
||||
const { listcheckindex, inputtxt, orderStatus, schanvalue, typearr, items, datalist } = toRefs(details) |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.xialaxz { |
||||
display: flex; |
||||
flex-direction: column; |
||||
|
||||
>view { |
||||
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; |
||||
|
||||
>view { |
||||
word-wrap: break-word; |
||||
word-break: break-all; |
||||
margin-right: 10upx; |
||||
|
||||
&:nth-last-child(1) { |
||||
margin-right: 0upx; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.butlur { |
||||
width: 200upx !important; |
||||
height: 64upx !important; |
||||
background: #D3832A; |
||||
border-radius: 8upx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #FFFFFF; |
||||
} |
||||
|
||||
.tabtip { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
|
||||
>view { |
||||
width: 50%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
background-color: #ffffff; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #90A0AF; |
||||
|
||||
>view { |
||||
height: 80upx; |
||||
border-bottom: 8upx solid #ffffff; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
} |
||||
|
||||
.xz { |
||||
color: #D3832A; |
||||
border-bottom: 8upx solid #D3832A; |
||||
// border-radius: 5upx; |
||||
} |
||||
} |
||||
|
||||
.hdtp { |
||||
padding: 34upx 32upx; |
||||
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 { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
|
||||
>.itec { |
||||
width: 686upx; |
||||
// height: 176upx; |
||||
background: #FFFFFF; |
||||
border-radius: 8upx; |
||||
padding: 36upx 24upx; |
||||
box-sizing: border-box; |
||||
position: relative; |
||||
margin-bottom: 20upx; |
||||
overflow: hidden; |
||||
|
||||
&:nth-last-child(1) { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
>.contenbx1 { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
font-size: 28upx; |
||||
color: #092C4D; |
||||
margin-bottom: 20upx; |
||||
|
||||
&:nth-last-child(1) { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
>view { |
||||
flex: 1; |
||||
} |
||||
} |
||||
|
||||
.tip { |
||||
position: absolute; |
||||
right: 0; |
||||
top: 0; |
||||
width: 96upx; |
||||
height: 48upx; |
||||
border-radius: 0 8upx 0 8upx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 24upx; |
||||
} |
||||
|
||||
.tp1 { |
||||
background-color: #0086F120; |
||||
color: #0086F1; |
||||
} |
||||
|
||||
.tp2 { |
||||
background-color: #F8544B20; |
||||
color: #F8544B; |
||||
} |
||||
|
||||
.tp3 { |
||||
background-color: #FA8C1620; |
||||
color: #FA8C16; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.scinp { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
padding: 12upx 32upx; |
||||
box-sizing: border-box; |
||||
background-color: #ffffff; |
||||
|
||||
>view:nth-of-type(1) { |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
} |
||||
|
||||
.inputs { |
||||
width: 276upx; |
||||
height: 64upx; |
||||
background: #F5F5F6; |
||||
border-radius: 8upx; |
||||
opacity: 1; |
||||
border: 2upx solid #EEEEEE; |
||||
padding: 10upx; |
||||
box-sizing: border-box; |
||||
font-size: 24upx; |
||||
font-weight: 400; |
||||
color: #AFB4BA; |
||||
|
||||
>input { |
||||
flex: 1; |
||||
font-size: 24upx; |
||||
color: #092C4D; |
||||
} |
||||
} |
||||
|
||||
.btscan { |
||||
width: 128upx; |
||||
height: 64upx; |
||||
background: #D3832A; |
||||
border-radius: 8upx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
font-size: 32upx; |
||||
font-weight: 400; |
||||
color: #FFFFFF; |
||||
} |
||||
} |
||||
|
||||
.hdtpnum { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-around; |
||||
background-color: #ffffff; |
||||
padding: 28upx 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; |
||||
margin-top: 20upx; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.abnormalStyleContainer { |
||||
top: -20upx; |
||||
left: -20upx; |
||||
position: absolute; |
||||
padding: 10upx; |
||||
border: 1upx solid #f8544b; |
||||
border-radius: 50%; |
||||
} |
||||
|
||||
// 异常标签 |
||||
.abnormalStyle { |
||||
font-size: 28upx; |
||||
height: 80upx; |
||||
width: 80upx; |
||||
display: flex; |
||||
align-items: center; |
||||
text-align: center; |
||||
|
||||
color: #f8544b; |
||||
padding: 10upx; |
||||
border-radius: 50%; |
||||
border: 1upx solid #f8544b; |
||||
opacity: 0.6; |
||||
} |
||||
</style> |
@ -1 +1 @@
|
||||
.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.mabox{display:flex;flex-direction:column;padding:.625rem 0;box-sizing:border-box;width:21.4375rem;margin:auto;background-color:#fff;margin-bottom:.625rem;margin-top:.3125rem;border-radius:.3125rem;box-shadow:0 .0625rem .3125rem rgba(226,226,227,.5)}.mabox .boxtitl{font-size:1.0625rem;font-weight:500;margin-bottom:.3125rem;border-bottom:.03125rem solid #EEEEEE;padding:0 .625rem .625rem;color:#092c4d}.mabox .minboxlist{display:flex;flex-wrap:wrap;align-items:center;padding-top:.3125rem}.mabox .minboxlist>uni-view{width:25%;display:flex;flex-direction:column;align-items:center;margin-bottom:.46875rem}.mabox .minboxlist>uni-view>uni-image{width:3.125rem}.mabox .minboxlist>uni-view>uni-view{font-size:.8125rem} |
||||
.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.mabox{display:flex;flex-direction:column;box-sizing:border-box;width:21.4375rem;margin:auto;background-color:#fff;margin-bottom:.3125rem;margin-top:.3125rem;border-radius:.3125rem;box-shadow:0 .0625rem .3125rem rgba(226,226,227,.5)}.mabox .boxtitl{font-size:.9375rem;font-weight:500;margin-bottom:.3125rem;border-bottom:.03125rem solid #EEEEEE;padding:.625rem;color:#092c4d}.mabox .minboxlist{display:flex;flex-wrap:wrap;align-items:center;padding:.3125rem 0}.mabox .minboxlist>uni-view{width:25%;display:flex;flex-direction:column;align-items:center;margin-bottom:.46875rem}.mabox .minboxlist>uni-view>uni-image{width:3.125rem}.mabox .minboxlist>uni-view>uni-view{font-size:.8125rem} |
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
.scrollv{width:21.4375rem;height:60vh;background-color:#fff;margin:auto;margin-top:.625rem;padding:.625rem;box-sizing:border-box;border-radius:.3125rem}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:.15625rem}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:.625rem .46875rem .3125rem;box-sizing:border-box;border-radius:.25rem;box-shadow:0 .0625rem .3125rem #e2e2e3;margin-bottom:.625rem;font-size:.8125rem}.scrollv .mabxs .ite:nth-last-child(1){margin-bottom:.15625rem}.scrollv .mabxs .ite>uni-view{display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:.625rem}.scrollv .mabxs .ite>uni-view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>uni-view>uni-view{font-size:.8125rem;font-weight:400;color:#092c4d}.butsbx{display:flex;align-items:center;margin-top:.78125rem;padding:0 4%}.butsbx>uni-view{width:6.375rem;height:2rem;background:#FFFFFF;border-radius:.25rem;opacity:1;font-size:.875rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #D3832A;color:#d3832a}.butsbx>uni-view:nth-of-type(2){margin-left:.625rem}.head{display:flex;flex-direction:column;align-items:center;justify-content:space-around;padding:.625rem;box-sizing:border-box;background-color:#fff}.head>.type1{width:100%;display:flex;align-items:flex-start;justify-content:space-between;font-size:.875rem;font-weight:400;color:#90a0af;margin-bottom:.3125rem}.head>.type1>uni-view{flex:1;display:flex;align-items:flex-start}.head>.type1>uni-view>uni-view:nth-of-type(1){flex:1} |
||||
.scrollv{width:21.4375rem;height:60vh;background-color:#fff;margin:auto;margin-top:.625rem;padding:.625rem;box-sizing:border-box;border-radius:.3125rem}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:.15625rem}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:.625rem .46875rem .3125rem;box-sizing:border-box;border-radius:.25rem;box-shadow:0 .0625rem .3125rem #e2e2e3;margin-bottom:.625rem;font-size:.8125rem}.scrollv .mabxs .ite:nth-last-child(1){margin-bottom:.15625rem}.scrollv .mabxs .ite>uni-view{display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:.625rem}.scrollv .mabxs .ite>uni-view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>uni-view>uni-view{font-size:.8125rem;font-weight:400;color:#092c4d}.butsbx{display:flex;align-items:center;margin-top:.78125rem;padding:0 4%}.butsbx>uni-view{width:6.375rem;height:2rem;background:#FFFFFF;border-radius:.25rem;opacity:1;font-size:.875rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #D3832A;color:#d3832a;margin-left:.625rem}.head{display:flex;flex-direction:column;align-items:center;justify-content:space-around;padding:.625rem;box-sizing:border-box;background-color:#fff}.head>.type1{width:100%;display:flex;align-items:flex-start;justify-content:space-between;font-size:.875rem;font-weight:400;color:#90a0af;margin-bottom:.3125rem}.head>.type1>uni-view{flex:1;display:flex;align-items:flex-start}.head>.type1>uni-view>uni-view:nth-of-type(1){flex:1}.popUpInput{border:.09375rem solid #ccc;margin-top:.3125rem;border-radius:.15625rem;padding:.15625rem .3125rem}.popUp_Edit_text{font-size:.875rem;color:red} |
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue