288 changed files with 5076 additions and 1921 deletions
@ -0,0 +1,137 @@
|
||||
<template> |
||||
<!-- 弹窗组件 --> |
||||
<view class="popUpMask" @click="showPopUp = false" v-if="showPopUp"> |
||||
<view class="container" @click.stop :style="{height:details.height}"> |
||||
<scroll-view class="scoolv" scroll-y="true"> |
||||
<view class="title"> |
||||
{{details.title}} |
||||
</view> |
||||
<!-- 插槽 --> |
||||
<slot></slot> |
||||
</scroll-view> |
||||
|
||||
<view class="buttonContainer"> |
||||
<view class="closeButton" @click="details.close"> |
||||
取消 |
||||
</view> |
||||
<view class="confirmButton" @click="details.success"> |
||||
{{confirmText||'确认'}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { |
||||
reactive, |
||||
toRefs, |
||||
defineExpose |
||||
} from 'vue'; |
||||
const details = reactive({ |
||||
/** |
||||
* 确认键内容 |
||||
*/ |
||||
confirmText: '', |
||||
/** |
||||
* 是否显示弹框 |
||||
*/ |
||||
showPopUp: false, |
||||
/** |
||||
* 内容高度 |
||||
*/ |
||||
height: '60%', |
||||
/** |
||||
* 标题 |
||||
*/ |
||||
title: '', |
||||
/** |
||||
* 取消按钮事件 |
||||
*/ |
||||
close() { |
||||
details.showPopUp = false |
||||
}, |
||||
/** |
||||
* 确认按钮事件 |
||||
*/ |
||||
success() { |
||||
details.showPopUp = false |
||||
} |
||||
}) |
||||
|
||||
const setDetails = (detail) => { |
||||
for (let key in detail) { |
||||
details[key] = detail[key] |
||||
} |
||||
} |
||||
|
||||
defineExpose({ |
||||
setDetails, |
||||
details |
||||
}) |
||||
|
||||
const { |
||||
confirmText, |
||||
showPopUp |
||||
} = toRefs(details) |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
$subjectColor: #D3832A; |
||||
|
||||
// 弹出层 |
||||
.popUpMask { |
||||
position: fixed; |
||||
top: 0; |
||||
left: 0; |
||||
width: 100vw; |
||||
height: 100vh; |
||||
background-color: #00000050; |
||||
z-index: 9999; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
|
||||
} |
||||
|
||||
.container { |
||||
width: 90%; |
||||
height: 60%; |
||||
border-radius: 10upx; |
||||
background: #fff; |
||||
|
||||
.title { |
||||
text-align: center; |
||||
margin-bottom: 10upx; |
||||
} |
||||
|
||||
.scoolv { |
||||
height: 80%; |
||||
padding: 20upx; |
||||
padding-bottom: 0upx; |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
.buttonContainer { |
||||
height: 20%; |
||||
flex: 1; |
||||
display: flex; |
||||
justify-content: space-around; |
||||
align-items: center; |
||||
|
||||
>view { |
||||
padding: 15upx 50upx; |
||||
border-radius: 10upx; |
||||
background: $subjectColor; |
||||
color: #fff; |
||||
} |
||||
|
||||
.closeButton { |
||||
color: $subjectColor; |
||||
background: #fff; |
||||
border: 1upx solid $subjectColor; |
||||
} |
||||
} |
||||
|
||||
} |
||||
</style> |
@ -0,0 +1,327 @@
|
||||
<template> |
||||
<!-- <u-navbar title="配送客户扫描" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> --> |
||||
<u-navbar title="配送客户扫描" bgColor='#D3832A' leftIconColor='#ffffff' titleStyle='color:#ffffff' placeholder |
||||
:autoBack="true" leftIconSize='35'></u-navbar> |
||||
<view class="hedtopt"> |
||||
<view class="typto"> |
||||
<view>配车类型:{{items.type_name}}</view> |
||||
<view>配车状态:{{items.vehicleStatus_name}}</view> |
||||
</view> |
||||
<view class="typto"> |
||||
<view>车牌号:{{items.vehicleName}}</view> |
||||
<view>司机:{{items.driverName}}</view> |
||||
</view> |
||||
<view class="typto"> |
||||
<view>装卸班组:{{items.loadingTeamName}}</view> |
||||
<view>备货是否完成:{{items.isstock}}</view> |
||||
</view> |
||||
<view class="kehupeison"> |
||||
<view> |
||||
<view>配送客户数</view> |
||||
<view>{{items.customersNumber}}</view> |
||||
</view> |
||||
<view> |
||||
<view>订单总数</view> |
||||
<view>{{ordernumber}}</view> |
||||
</view> |
||||
<view> |
||||
<view>计划件数</view> |
||||
<view>{{deliveryNumber}}</view> |
||||
</view> |
||||
<view> |
||||
<view>装车件数</view> |
||||
<view>{{scannedNumber}}</view> |
||||
</view> |
||||
<view> |
||||
<view>滞留数</view> |
||||
<view>{{scannedNumber}}</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<!-- tabBar选项卡 --> |
||||
<view class="tabBar"> |
||||
<view :class="{'tabBar-item': true, 'active': tabBarCode === 1}" @click="handleTabBarCode(1)"> |
||||
定制/库存品 |
||||
</view> |
||||
<view :class="{'tabBar-item': true, 'active': tabBarCode === 2}" @click="handleTabBarCode(2)"> |
||||
零担 |
||||
</view> |
||||
</view> |
||||
<scroll-view class="scoolv" scroll-y="true"> |
||||
|
||||
</scroll-view> |
||||
<view class="button_container"> |
||||
<view class="button_item" @click="showPopUp"> |
||||
整托滞留 |
||||
</view> |
||||
</view> |
||||
<tiplist ref="tiplists"></tiplist> |
||||
<saomiao2></saomiao2> |
||||
<!-- 整托滞留弹窗 --> |
||||
<PopUp ref='PopUpMask'> |
||||
<view class="main"> |
||||
123 |
||||
</view> |
||||
</PopUp> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
import { |
||||
deliverycustom, |
||||
deliveryloadingscan, |
||||
} from '@/api/user.js' |
||||
import { |
||||
onLoad, |
||||
onShow, |
||||
onHide, |
||||
onPullDownRefresh |
||||
} from '@dcloudio/uni-app' |
||||
import { computed, reactive, ref, toRefs } from "vue"; |
||||
let details = reactive({ |
||||
id: '', |
||||
renderList: [], |
||||
items: {} as any, |
||||
scancode: '', |
||||
authbuts: uni.getStorageSync('authbuts'), |
||||
tabBarCode: 1, |
||||
// 整托滞留弹窗显示 |
||||
showTrayRetention: true |
||||
}) |
||||
const tiplists = ref(null) |
||||
const PopUpMask = ref(null) |
||||
onLoad((op) => { |
||||
details.id = op.id |
||||
details.items = JSON.parse(op.item) |
||||
}) |
||||
onHide(() => { |
||||
uni.$off('scancodedate') |
||||
console.log("uni", uni) |
||||
}) |
||||
onShow(() => { |
||||
initpage() |
||||
uni.$on('scancodedate', function (code) { |
||||
if (code) { |
||||
console.log(code); |
||||
details.scancode = code |
||||
scandata() |
||||
} |
||||
}) |
||||
}) |
||||
onPullDownRefresh(() => { |
||||
const timer = setTimeout(() => { |
||||
initpage() |
||||
uni.stopPullDownRefresh() |
||||
clearTimeout(timer) |
||||
}, 500) |
||||
}) |
||||
const ordernumber = computed(() => { |
||||
let num = 0 |
||||
details.renderList.map(item => { |
||||
num += Number(item.ordNub) |
||||
}) |
||||
return num |
||||
}) |
||||
const deliveryNumber = computed(() => { |
||||
let num = 0 |
||||
details.renderList.map(item => { |
||||
num += Number(item.reservationNum) |
||||
}) |
||||
return num |
||||
}) |
||||
const scannedNumber = computed(() => { |
||||
let num = 0 |
||||
details.renderList.map(item => { |
||||
num += Number(item.loadingNub) |
||||
}) |
||||
return num |
||||
}) |
||||
|
||||
async function scandata() { |
||||
let loadingId = uni.getStorageSync('checkvehicle').id |
||||
let data = { |
||||
deliveryId: details.id, |
||||
loadingId, |
||||
type: 1, |
||||
barcode: details.scancode |
||||
} |
||||
let res = await deliveryloadingscan(data) |
||||
console.log(res); |
||||
if (res.code == 200) { |
||||
|
||||
} |
||||
} |
||||
async function initpage() { |
||||
let data = { |
||||
id: details.id |
||||
} |
||||
let response = await deliverycustom(data) |
||||
details.renderList = response.data.records |
||||
} |
||||
|
||||
// 改变选项卡激活状态 |
||||
function handleTabBarCode(code : number) { |
||||
tabBarCode.value = code |
||||
} |
||||
|
||||
/** |
||||
* 显示整托滞留弹出层 |
||||
*/ |
||||
const showPopUp = () => { |
||||
console.log('PopUpMask :>> ', PopUpMask); |
||||
PopUpMask.value.setDetails({ |
||||
// 显示弹出层 |
||||
showPopUp: true, |
||||
confirmText: '确定整托', |
||||
height: '60%', |
||||
title: '整托滞留', |
||||
success() { |
||||
console.log('123 :>> ', 123); |
||||
} |
||||
}) |
||||
} |
||||
|
||||
const { items, renderList, tabBarCode } = toRefs(details) |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
$subjectColor: #D3832A; |
||||
|
||||
.scoolv { |
||||
width: 100%; |
||||
height: 60vh; |
||||
margin-top: 20upx; |
||||
} |
||||
|
||||
.hedtopt { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
flex-direction: column; |
||||
background-color: #ffffff; |
||||
padding: 36upx 32upx; |
||||
box-sizing: border-box; |
||||
|
||||
.typto { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
width: 100%; |
||||
font-size: 28upx; |
||||
font-weight: 400; |
||||
color: #092C4D; |
||||
margin-bottom: 20upx; |
||||
|
||||
&:nth-last-child(1) { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
>view { |
||||
flex: 1; |
||||
} |
||||
} |
||||
|
||||
.kehupeison { |
||||
width: 100%; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-around; |
||||
margin-top: 20upx; |
||||
|
||||
>view { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
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; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
// tabBar选项卡 |
||||
.tabBar { |
||||
display: flex; |
||||
justify-content: space-evenly; |
||||
background-color: #fff; |
||||
margin-top: 10upx; |
||||
margin-bottom: 10upx; |
||||
|
||||
&-item { |
||||
position: relative; |
||||
flex: 1; |
||||
flex-basis: 0; |
||||
padding: 20upx 0; |
||||
text-align: center; |
||||
|
||||
&::after { |
||||
content: ''; |
||||
position: absolute; |
||||
bottom: 0; |
||||
left: 50%; |
||||
display: block; |
||||
width: 0; |
||||
box-sizing: border-box; |
||||
border: 1upx solid $subjectColor; |
||||
transition: all 0.5s; |
||||
} |
||||
|
||||
&.active { |
||||
color: $subjectColor; |
||||
|
||||
&::after { |
||||
left: 0; |
||||
width: 100%; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
// 按钮容器 |
||||
.button_container { |
||||
position: fixed; |
||||
width: 100vw; |
||||
bottom: 10upx; |
||||
display: flex; |
||||
justify-content: space-around; |
||||
|
||||
.button_item { |
||||
padding: 10upx 30upx; |
||||
border: 1upx solid $subjectColor; |
||||
border-radius: 10upx; |
||||
color: $subjectColor; |
||||
} |
||||
} |
||||
|
||||
// 弹窗 |
||||
</style> |
Before Width: | Height: | Size: 290 KiB |
Before Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 547 KiB |
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 @@
|
||||
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./common/vendor.js"),e=require("./uni_modules/fant-mini-plus/index.js"),n=require("./utils/functions.js"),s=require("./utils/utils.js"),i=require("./store/index.js");require("./utils/IDCardVerification.js"),require("./config/host.js"),Math;const t={setup:()=>(o.onLaunch((()=>{console.log("onLaunch")})),o.onShow((()=>{console.log("onshow")})),{})},a=()=>"./compoment/saomiao.js",u=()=>"./compoment/tips/tips.js",m=()=>"./compoment/saomiao1.js",p=()=>"./compoment/saomiao2.js",r=()=>"./compoment/saomiao3.js",c=()=>"./compoment/saomiao4.js";function l(){const l=o.createSSRApp(t);return l.config.warnHandler=()=>null,l.provide("functions",n.api),l.provide("utils",s.utils),l.use(o.uviewPlus),l.use(i.store),l.use(e.fantMini),l.component("saomiao",a).component("tips",u).component("saomiao1",m).component("saomiao2",p).component("saomiao3",r).component("saomiao4",c),o.index.$u.config.unit="rpx",{app:l}}l().app.mount("#app"),exports.createApp=l; |
||||
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./common/vendor.js"),n=require("./uni_modules/fant-mini-plus/index.js"),e=require("./utils/functions.js"),i=require("./utils/utils.js"),t=require("./store/index.js");require("./utils/IDCardVerification.js"),require("./utils/base64.js"),require("./config/host.js"),Math;const s={setup:()=>(o.onLaunch((()=>{console.log("onLaunch")})),o.onShow((()=>{console.log("onshow")})),{})},a=()=>"./compoment/saomiao.js",m=()=>"./compoment/tips/tips.js",p=()=>"./compoment/tiplist/tiplist.js",u=()=>"./compoment/InputNum/InputNum.js",c=()=>"./compoment/BasicContainer/BasicContainer.js",r=()=>"./compoment/saomiao1.js",l=()=>"./compoment/saomiao2.js",j=()=>"./compoment/saomiao3.js",d=()=>"./compoment/saomiao4.js";function f(){const f=o.createSSRApp(s);return f.config.warnHandler=()=>null,f.provide("functions",e.api),f.provide("utils",i.utils),f.use(o.uviewPlus),f.use(t.store),f.use(o.createPinia()),f.use(n.fantMini),f.component("saomiao",a).component("tips",m).component("tiplist",p).component("saomiao1",r).component("saomiao2",l).component("saomiao3",j).component("saomiao4",d).component("InputNum",u).component("BasicContainer",c),o.index.$u.config.unit="rpx",{app:f,Pinia:o.Pinia}}f().app.mount("#app"),exports.createApp=f; |
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
"use strict";const e=require("../../common/vendor.js"),a=require("../../common/assets.js"),t={props:{data:{type:Array,default:()=>[{label:"label",value:"value"}]},valueType:{type:Object,default:{label:"label",value:"value"}},value:{type:String,default:"全部"},clearable:{type:Boolean,default:!1},filterable:{type:Boolean,default:!1},searchType:{type:Number,default:1},placeholder:{type:String,default:"请选择"},noDataText:{type:String,default:"暂无数据"},arrLeft:{type:Number,default:20},size:{type:Number,default:240}},data:()=>({show:!1,readonly:!0,isClick:!1,totalArr:[],showData:[]}),watch:{filterable:{immediate:!0,deep:!0,handler(e){this.readonly=!e}},data:{immediate:!0,deep:!0,handler(e){this.showData=e,this.totalArr=e}}},created(){},methods:{sjpd(){this.value?this.clearItem():this.openSelect()},openSelect(){this.show=!this.show,this.isClick=!this.isClick},change(e){this.value!=e[this.valueType]&&(this.$emit("input",e[this.valueType.value]),this.$emit("change",e[this.valueType.value])),this.show=!1,this.isClick=!1,this.showData=this.data},clearItem(){this.clearable&&(this.$emit("input",""),this.$emit("change",""))},selectData(e){let a=e.detail.value;if(a){let e=[],t=[];this.data.forEach((a=>{e.push(a)})),e.forEach((e=>{console.log(e,a,"arrCons---",e.label.indexOf(a)),1==this.searchType?-1!=e[this.valueType.label].indexOf(a)&&t.push(e):e[this.valueType.label]==a&&t.push(e)})),this.show=!0,this.showData=t}else this.showData=this.data}},beforeDestroy(){}};const l=e._export_sfc(t,[["render",function(t,l,s,i,h,r){return e.e({a:h.isClick,b:e.o(((...e)=>r.selectData&&r.selectData(...e))),c:s.value,d:h.readonly,e:h.readonly,f:s.placeholder,g:e.o(((...e)=>r.openSelect&&r.openSelect(...e))),h:!s.value&&!s.clearable||s.value&&!s.clearable||!s.value&&s.clearable&&!s.filterable},!s.value&&!s.clearable||s.value&&!s.clearable||!s.value&&s.clearable&&!s.filterable?{i:e.n(h.show?"arrow_down":"arrow_up")}:{},{j:s.value&&s.clearable},s.value&&s.clearable?{k:a._imports_0}:{},{l:e.o(((...e)=>r.sjpd&&r.sjpd(...e))),m:e.n(h.isClick?"select_input_select":""),n:h.show},h.show?e.e({o:e.f(h.showData,((a,t,l)=>({a:e.t(a.label),b:t,c:s.value==a[s.valueType.value]?1:"",d:e.o((e=>r.change(a)),t)}))),p:!h.showData.length},h.showData.length?{}:{q:e.t(s.noDataText)},{r:e.o((()=>{}))}):{},{s:s.size+"rpx"})}],["__scopeId","data-v-741ae587"]]);wx.createComponent(l); |
||||
"use strict";const e=require("../../common/vendor.js"),a=require("../../common/assets.js"),t={props:{data:{type:Array,default:()=>[{label:"label",value:"value"}]},valueType:{type:Object,default:{label:"label",value:"value"}},value:{type:String,default:"全部"},clearable:{type:Boolean,default:!1},filterable:{type:Boolean,default:!1},searchType:{type:Number,default:1},placeholder:{type:String,default:"请选择"},noDataText:{type:String,default:"暂无数据"},arrLeft:{type:Number,default:20},size:{type:Number,default:240}},data:()=>({show:!1,readonly:!0,isClick:!1,totalArr:[],showData:[]}),watch:{filterable:{immediate:!0,deep:!0,handler(e){this.readonly=!e}},data:{immediate:!0,deep:!0,handler(e){this.showData=e,this.totalArr=e}}},created(){},methods:{sjpd(){this.value?this.clearItem():this.openSelect()},openSelect(){this.show=!this.show,this.isClick=!this.isClick},change(e){this.value!=e[this.valueType]&&(this.$emit("input",e[this.valueType.value]),this.$emit("change",e[this.valueType.value])),this.show=!1,this.isClick=!1,this.showData=this.data},clearItem(){this.clearable&&(this.$emit("input",""),this.$emit("change",""))},selectData(e){let a=e.detail.value;if(a){let e=[],t=[];this.data.forEach((a=>{e.push(a)})),e.forEach((e=>{console.log(e,a,"arrCons---",e.label.indexOf(a)),1==this.searchType?-1!=e[this.valueType.label].indexOf(a)&&t.push(e):e[this.valueType.label]==a&&t.push(e)})),this.show=!0,this.showData=t}else this.showData=this.data}},beforeDestroy(){}};const l=e._export_sfc(t,[["render",function(t,l,s,i,h,r){return e.e({a:h.isClick,b:e.o(((...e)=>r.selectData&&r.selectData(...e))),c:s.value,d:h.readonly,e:h.readonly,f:s.placeholder,g:e.o(((...e)=>r.openSelect&&r.openSelect(...e))),h:!s.value&&!s.clearable||s.value&&!s.clearable||!s.value&&s.clearable&&!s.filterable},!s.value&&!s.clearable||s.value&&!s.clearable||!s.value&&s.clearable&&!s.filterable?{i:e.n(h.show?"arrow_down":"arrow_up")}:{},{j:s.value&&s.clearable},s.value&&s.clearable?{k:a._imports_0}:{},{l:e.o(((...e)=>r.sjpd&&r.sjpd(...e))),m:e.n(h.isClick?"select_input_select":""),n:h.show},h.show?e.e({o:e.f(h.showData,((a,t,l)=>({a:e.t(a.label),b:t,c:s.value==a[s.valueType.value]?1:"",d:e.o((e=>r.change(a)),t)}))),p:!h.showData.length},h.showData.length?{}:{q:e.t(s.noDataText)},{r:e.o((()=>{}))}):{},{s:s.size+"rpx"})}],["__scopeId","data-v-d2cf2901"]]);wx.createComponent(l); |
||||
|
@ -1 +1 @@
|
||||
<view class="select_wrap data-v-741ae587" style="{{'width:' + s}}"><view class="{{['data-v-741ae587', 'select_input', m]}}" ref="select-input"><view class="input_info data-v-741ae587" bindtap="{{g}}"><input focus="{{a}}" bindinput="{{b}}" value="{{c}}" type="text" readonly="{{d}}" disabled="{{e}}" autocomplete="off" placeholder="{{f}}" class="text_tips data-v-741ae587"></input></view><view class="icon_arrow data-v-741ae587" bindtap="{{l}}"><view wx:if="{{h}}" class="{{['data-v-741ae587', 'arrow', i]}}"></view><view wx:if="{{j}}" class="arrow-clear data-v-741ae587"><image class="data-v-741ae587" src="{{k}}"></image></view></view></view><view wx:if="{{n}}" class="select_modal_con data-v-741ae587" catchtouchmove="{{r}}"><view class="select_modal data-v-741ae587"><view class="select_content data-v-741ae587" ref="select_content"><view wx:for="{{o}}" wx:for-item="item" wx:key="b" class="{{['select_content_li', 'data-v-741ae587', item.c && 'selected']}}" bindtap="{{item.d}}">{{item.a}}</view><view wx:if="{{p}}" class="select_content_li data-v-741ae587">{{q}}</view></view></view><view class="cons_arrow data-v-741ae587"></view></view></view> |
||||
<view class="select_wrap data-v-d2cf2901" style="{{'width:' + s}}"><view class="{{['data-v-d2cf2901', 'select_input', m]}}" ref="select-input"><view class="input_info data-v-d2cf2901" bindtap="{{g}}"><input focus="{{a}}" bindinput="{{b}}" value="{{c}}" type="text" readonly="{{d}}" disabled="{{e}}" autocomplete="off" placeholder="{{f}}" class="text_tips data-v-d2cf2901"></input></view><view class="icon_arrow data-v-d2cf2901" bindtap="{{l}}"><view wx:if="{{h}}" class="{{['data-v-d2cf2901', 'arrow', i]}}"></view><view wx:if="{{j}}" class="arrow-clear data-v-d2cf2901"><image class="data-v-d2cf2901" src="{{k}}"></image></view></view></view><view wx:if="{{n}}" class="select_modal_con data-v-d2cf2901" catchtouchmove="{{r}}"><view class="select_modal data-v-d2cf2901"><view class="select_content data-v-d2cf2901" ref="select_content"><view wx:for="{{o}}" wx:for-item="item" wx:key="b" class="{{['select_content_li', 'data-v-d2cf2901', item.c && 'selected']}}" bindtap="{{item.d}}">{{item.a}}</view><view wx:if="{{p}}" class="select_content_li data-v-d2cf2901">{{q}}</view></view></view><view class="cons_arrow data-v-d2cf2901"></view></view></view> |
@ -1 +1 @@
|
||||
.select_wrap.data-v-741ae587{width:240rpx;height:64rpx;box-sizing:border-box;display:inline-block;position:relative}.select_wrap .select_input.data-v-741ae587{-webkit-appearance:none;background-color:#f5f5f6;background-image:none;border-radius:10rpx;border:1rpx solid #EEEEEE;color:#092c4d;font-size:inherit;display:flex;align-items:center;outline:none;padding:0 10rpx;height:64rpx;box-sizing:border-box;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.select_wrap .select_input .input_info.data-v-741ae587{font-size:28rpx;width:100%;height:100%;margin-left:10rpx}.select_wrap .select_input .input_info .text_tips.data-v-741ae587{height:100%;color:#092c4d}.select_wrap .select_input .icon_arrow.data-v-741ae587{position:absolute;width:50rpx;height:64rpx;right:0;top:0;text-align:center;color:#c0c4cc;cursor:pointer;display:flex;justify-content:center;align-items:center;z-index:999}.select_wrap .select_input .icon_arrow .arrow.data-v-741ae587{width:18rpx;height:18rpx;background-color:transparent;border-color:#c0c4cc;border-style:solid;border-width:1rpx 1rpx 0 0;transition:all .3s;box-sizing:border-box}.select_wrap .select_input .icon_arrow .arrow_down.data-v-741ae587{transform:rotate(-45deg);margin-top:5rpx}.select_wrap .select_input .icon_arrow .arrow_up.data-v-741ae587{transform:rotate(135deg);margin-top:-5rpx}.select_wrap .select_input .icon_arrow .arrow-clear.data-v-741ae587{width:27rpx;height:27rpx;border:1rpx solid #c0c4cc;color:#c0c4cc;border-radius:50%;display:flex;justify-content:center;align-items:center;font-size:26rpx}.select_wrap .select_input .icon_arrow .arrow-clear>image.data-v-741ae587{width:21rpx;height:21rpx}.select_wrap .select_input_select.data-v-741ae587{border-color:rgba(211,131,42,.5)}.select_modal_con.data-v-741ae587{width:100%;transform-origin:center top;z-index:2062;position:absolute;top:40rpx;left:0;border:1rpx solid #e4e7ed;border-radius:4rpx;background-color:#fff;box-shadow:0 2rpx 12rpx rgba(0,0,0,.1);box-sizing:border-box;margin-top:40rpx}.select_modal_con .cons_arrow.data-v-741ae587{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;top:-6rpx;left:10%;margin-right:3rpx;border-top-width:0;border-bottom-color:#ebeef5}.select_modal_con .cons_arrow.data-v-741ae587:after{content:" ";border-width:6rpx;position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;margin-left:-6rpx;border-top-width:0;border-bottom-color:#fff}.select_modal.data-v-741ae587{overflow:scroll}.select_modal .select_content.data-v-741ae587{list-style:none;padding:12rpx 0;margin:0;box-sizing:border-box}.select_modal .select_content .select_content_li.data-v-741ae587{font-size:28rpx;padding:8rpx 18rpx;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#606266;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;cursor:pointer}.select_modal .select_content .select_content_li.selected.data-v-741ae587{color:rgba(211,131,42,.565);font-weight:700;background-color:#f5f7fa}.select_modal .select_content .select_content_li.data-v-741ae587:hover{background-color:#f5f7fa} |
||||
.select_wrap.data-v-d2cf2901{width:240rpx;height:64rpx;box-sizing:border-box;display:inline-block;position:relative}.select_wrap .select_input.data-v-d2cf2901{-webkit-appearance:none;background-color:#f5f5f6;background-image:none;border-radius:10rpx;border:1rpx solid #EEEEEE;color:#092c4d;font-size:inherit;display:flex;align-items:center;outline:none;padding:0 10rpx;height:64rpx;box-sizing:border-box;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.select_wrap .select_input .input_info.data-v-d2cf2901{font-size:28rpx;width:100%;height:100%;margin-left:10rpx}.select_wrap .select_input .input_info .text_tips.data-v-d2cf2901{height:100%;color:#092c4d;font-size:28rpx}.select_wrap .select_input .icon_arrow.data-v-d2cf2901{position:absolute;width:50rpx;height:64rpx;right:0;top:0;text-align:center;color:#c0c4cc;cursor:pointer;display:flex;justify-content:center;align-items:center;z-index:999}.select_wrap .select_input .icon_arrow .arrow.data-v-d2cf2901{width:18rpx;height:18rpx;background-color:transparent;border-color:#c0c4cc;border-style:solid;border-width:1rpx 1rpx 0 0;transition:all .3s;box-sizing:border-box}.select_wrap .select_input .icon_arrow .arrow_down.data-v-d2cf2901{transform:rotate(-45deg);margin-top:5rpx}.select_wrap .select_input .icon_arrow .arrow_up.data-v-d2cf2901{transform:rotate(135deg);margin-top:-5rpx}.select_wrap .select_input .icon_arrow .arrow-clear.data-v-d2cf2901{width:27rpx;height:27rpx;border:1rpx solid #c0c4cc;color:#c0c4cc;border-radius:50%;display:flex;justify-content:center;align-items:center;font-size:26rpx}.select_wrap .select_input .icon_arrow .arrow-clear>image.data-v-d2cf2901{width:21rpx;height:21rpx}.select_wrap .select_input_select.data-v-d2cf2901{border-color:rgba(211,131,42,.5)}.select_modal_con.data-v-d2cf2901{width:100%;transform-origin:center top;z-index:2062;position:absolute;top:40rpx;left:0;border:1rpx solid #e4e7ed;border-radius:4rpx;background-color:#fff;box-shadow:0 2rpx 12rpx rgba(0,0,0,.1);box-sizing:border-box;margin-top:40rpx}.select_modal_con .cons_arrow.data-v-d2cf2901{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;top:-6rpx;left:10%;margin-right:3rpx;border-top-width:0;border-bottom-color:#ebeef5}.select_modal_con .cons_arrow.data-v-d2cf2901:after{content:" ";border-width:6rpx;position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;margin-left:-6rpx;border-top-width:0;border-bottom-color:#fff}.select_modal.data-v-d2cf2901{overflow:scroll}.select_modal .select_content.data-v-d2cf2901{list-style:none;padding:12rpx 0;margin:0;box-sizing:border-box}.select_modal .select_content .select_content_li.data-v-d2cf2901{font-size:28rpx;padding:8rpx 18rpx;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#606266;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;cursor:pointer}.select_modal .select_content .select_content_li.selected.data-v-d2cf2901{color:rgba(211,131,42,.565);font-weight:700;background-color:#f5f7fa}.select_modal .select_content .select_content_li.data-v-d2cf2901:hover{background-color:#f5f7fa} |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../common/vendor.js"),t={setup(){let t=e.reactive({activity:null,receiver:null,intentFilter:null});function n(){if(plus){t.activity=plus.android.runtimeMainActivity();var n=plus.android.importClass("android.content.IntentFilter");t.intentFilter=new n,t.intentFilter.addAction("nlscan.action.SCANNER_RESULT"),t.receiver=plus.android.implements("io.dcloud.feature.internal.reflect.BroadcastReceiver",{onReceive:function(t,n){console.log("intent",n),plus.android.importClass(n);let i=n.getStringExtra("SCAN_BARCODE1");e.index.$emit("scancodedate",i.replace(/\n/g,""))}})}}function i(){t.activity.registerReceiver(t.receiver,t.intentFilter)}function r(){t.activity.unregisterReceiver(t.receiver)}return e.onLoad((()=>{n(),i()})),e.onHide((()=>{r()})),e.onUnload((()=>{t.stopScan(),e.index.$off("scancodedate")})),{startScan:i,stopScan:r,initScan:n}}};const n=e._export_sfc(t,[["render",function(e,t,n,i,r,c){return{}}]]);wx.createComponent(n); |
||||
"use strict";const n=require("../common/vendor.js"),t={setup:()=>(n.reactive({activity:null,receiver:null,intentFilter:null,isstart:!1}),n.onLoad((()=>{})),n.onShow((()=>{})),n.onHide((()=>{})),n.onUnload((()=>{n.index.$off("scancodedate")})),{startScan:function(){},stopScan:function(){},initScan:function(){}})};const e=n._export_sfc(t,[["render",function(n,t,e,o,c,i){return{}}]]);wx.createComponent(e); |
||||
|
@ -1 +1 @@
|
||||
"use strict";const n=require("../common/vendor.js"),t={setup:()=>(n.reactive({activity:null,receiver:null,intentFilter:null}),n.onLoad((()=>{})),n.onHide((()=>{})),n.onUnload((()=>{n.index.$off("scancodedate")})),{startScan:function(){},stopScan:function(){},initScan:function(){}})};const e=n._export_sfc(t,[["render",function(n,t,e,o,c,i){return{}}]]);wx.createComponent(e); |
||||
"use strict";const e=require("../common/vendor.js"),n=e.defineComponent({__name:"saomiao1",props:{ishidestop:{type:Boolean}},setup(n){const o=n;return e.reactive({activity:null,receiver:null,intentFilter:null,isstart:!1}),e.onLoad((()=>{})),e.onShow((()=>{})),e.onHide((()=>{null==o||o.ishidestop})),e.onUnload((()=>{e.index.$off("scancodedate")})),(e,n)=>({})}});wx.createComponent(n); |
||||
|
@ -1 +1 @@
|
||||
"use strict";const n=require("../common/vendor.js"),t={setup:()=>(n.reactive({activity:null,receiver:null,intentFilter:null}),n.onLoad((()=>{})),n.onHide((()=>{})),n.onUnload((()=>{n.index.$off("scancodedate")})),{startScan:function(){},stopScan:function(){},initScan:function(){}})};const e=n._export_sfc(t,[["render",function(n,t,e,o,c,i){return{}}]]);wx.createComponent(e); |
||||
"use strict";const e=require("../common/vendor.js"),o=e.defineComponent({__name:"saomiao2",props:{ishidestop:{type:Boolean}},setup(o){const n=o;return e.reactive({activity:null,receiver:null,intentFilter:null,isstart:!1}),e.onLoad((()=>{})),e.onShow((()=>{})),e.onHide((()=>{(null==n?void 0:n.ishidestop)||console.log("扫描的--------------onHide")})),e.onUnload((()=>{e.index.$off("scancodedate")})),(e,o)=>({})}});wx.createComponent(o); |
||||
|
@ -1 +1 @@
|
||||
"use strict";const n=require("../common/vendor.js"),t={setup:()=>(n.reactive({activity:null,receiver:null,intentFilter:null}),n.onLoad((()=>{})),n.onHide((()=>{})),n.onUnload((()=>{n.index.$off("scancodedate")})),{startScan:function(){},stopScan:function(){},initScan:function(){}})};const e=n._export_sfc(t,[["render",function(n,t,e,o,c,i){return{}}]]);wx.createComponent(e); |
||||
"use strict";const n=require("../common/vendor.js"),t={setup:()=>(n.reactive({activity:null,receiver:null,intentFilter:null,isstart:!1}),n.onLoad((()=>{})),n.onShow((()=>{})),n.onHide((()=>{})),n.onUnload((()=>{n.index.$off("scancodedate")})),{startScan:function(){},stopScan:function(){},initScan:function(){}})};const e=n._export_sfc(t,[["render",function(n,t,e,o,c,i){return{}}]]);wx.createComponent(e); |
||||
|
@ -1 +1 @@
|
||||
"use strict";const n=require("../common/vendor.js"),t={setup:()=>(n.reactive({activity:null,receiver:null,intentFilter:null}),n.onLoad((()=>{})),n.onHide((()=>{})),n.onUnload((()=>{n.index.$off("scancodedate")})),{startScan:function(){},stopScan:function(){},initScan:function(){}})};const e=n._export_sfc(t,[["render",function(n,t,e,o,c,i){return{}}]]);wx.createComponent(e); |
||||
"use strict";const n=require("../common/vendor.js"),t={setup:()=>(n.reactive({activity:null,receiver:null,intentFilter:null,isstart:!1}),n.onLoad((()=>{})),n.onShow((()=>{})),n.onHide((()=>{})),n.onUnload((()=>{n.index.$off("scancodedate")})),{startScan:function(){},stopScan:function(){},initScan:function(){}})};const e=n._export_sfc(t,[["render",function(n,t,e,o,c,i){return{}}]]);wx.createComponent(e); |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../../common/vendor.js"),c=e.defineComponent({__name:"tips",emits:["cancel","confirm"],setup(c,{expose:n,emit:s}){let t=e.reactive({isshow:!1,title:"",content:"",isshowcancel:!0,cancelTxt:"",confirmTxt:"",success:null,cancel:null,close:null});function o(e){switch(e){case 0:t.close&&t.close();break;case 1:t.cancel&&t.cancel();break;case 2:t.success&&t.success()}}n({setisshow:function(e){t.isshow=e},setdetails:function(e){for(let c in e)t[c]=e[c]}});const{isshow:i,title:r,content:l,isshowcancel:u,cancelTxt:a,confirmTxt:f}=e.toRefs(t);return(c,n)=>e.e({a:e.unref(i)},e.unref(i)?e.e({b:e.t(e.unref(r)||"提示"),c:e.t(e.unref(l)||"提示内容模板"),d:e.unref(u)},e.unref(u)?{e:e.t(e.unref(a)||"取消"),f:e.o((e=>o(1)))}:{},{g:e.t(e.unref(f)||"确认"),h:e.o((e=>o(2))),i:e.o((()=>{})),j:e.o((e=>o(0)))}):{})}}),n=e._export_sfc(c,[["__scopeId","data-v-9e7f9bb6"]]);wx.createComponent(n); |
||||
"use strict";const e=require("../../common/vendor.js"),c=e.defineComponent({__name:"tips",emits:["cancel","confirm"],setup(c,{expose:n,emit:s}){let t=e.reactive({isshow:!1,title:"",content:"",isshowcancel:!0,cancelTxt:"",confirmTxt:"",success:null,cancel:null,close:null});function o(e){switch(e){case 0:t.close&&t.close();break;case 1:t.cancel&&t.cancel();break;case 2:t.success&&t.success()}}n({setisshow:function(e){t.isshow=e},setdetails:function(e){for(let c in e)t[c]=e[c]}});const{isshow:i,title:r,content:l,isshowcancel:a,cancelTxt:u,confirmTxt:f}=e.toRefs(t);return(c,n)=>e.e({a:e.unref(i)},e.unref(i)?e.e({b:e.t(e.unref(r)||"提示"),c:e.t(e.unref(l)||"提示内容模板"),d:e.unref(a)},e.unref(a)?{e:e.t(e.unref(u)||"取消"),f:e.o((e=>o(1)))}:{},{g:e.t(e.unref(f)||"确认"),h:e.o((e=>o(2))),i:e.o((()=>{})),j:e.o((e=>o(0)))}):{})}}),n=e._export_sfc(c,[["__scopeId","data-v-dc55a283"]]);wx.createComponent(n); |
||||
|
@ -1 +1 @@
|
||||
<view wx:if="{{a}}" class="bgmab data-v-9e7f9bb6" bindtap="{{j}}"><view class="modtips data-v-9e7f9bb6" catchtap="{{i}}"><view class="title data-v-9e7f9bb6">{{b}}</view><view class="contents data-v-9e7f9bb6">{{c}}</view><view class="buts data-v-9e7f9bb6"><view wx:if="{{d}}" bindtap="{{f}}" class="cancel data-v-9e7f9bb6">{{e}}</view><view bindtap="{{h}}" class="confirm data-v-9e7f9bb6">{{g}}</view></view></view></view> |
||||
<view wx:if="{{a}}" class="bgmab data-v-dc55a283" bindtap="{{j}}"><view class="modtips data-v-dc55a283" catchtap="{{i}}"><view class="title data-v-dc55a283">{{b}}</view><view class="contents data-v-dc55a283">{{c}}</view><view class="buts data-v-dc55a283"><view wx:if="{{d}}" bindtap="{{f}}" class="cancel data-v-dc55a283">{{e}}</view><view bindtap="{{h}}" class="confirm data-v-dc55a283">{{g}}</view></view></view></view> |
@ -1 +1 @@
|
||||
.bgmab.data-v-9e7f9bb6{width:100vw;height:100vh;position:fixed;left:0;top:0;background-color:rgba(0,0,0,.314);z-index:99999}.modtips.data-v-9e7f9bb6{width:630rpx;background:#FFFFFF;border-radius:7rpx;display:flex;flex-direction:column;align-items:center;padding:40rpx 20rpx;position:absolute;left:50%;top:50%;transform:translate(-50%) translateY(-50%);box-sizing:border-box}.modtips .title.data-v-9e7f9bb6{font-size:34rpx;color:#092c4d}.modtips .contents.data-v-9e7f9bb6{max-width:480rpx;font-size:29rpx;color:#90a0af;margin-top:30rpx}.modtips .buts.data-v-9e7f9bb6{display:flex;align-items:center;justify-content:center;margin-top:40rpx}.modtips .buts>view.data-v-9e7f9bb6{display:flex;align-items:center;justify-content:center;width:260rpx;height:76rpx;border-radius:7rpx;font-size:28rpx}.modtips .buts>.cancel.data-v-9e7f9bb6{background-color:#f5f5f6;color:#5a6875;margin-right:20rpx}.modtips .buts>.confirm.data-v-9e7f9bb6{background-color:#d3832a;color:#fff} |
||||
.bgmab.data-v-dc55a283{width:100vw;height:100vh;position:fixed;left:0;top:0;background-color:rgba(0,0,0,.314);z-index:99999}.modtips.data-v-dc55a283{width:630rpx;background:#FFFFFF;border-radius:7rpx;display:flex;flex-direction:column;align-items:center;padding:40rpx 20rpx;position:absolute;left:50%;top:50%;transform:translate(-50%) translateY(-50%);box-sizing:border-box}.modtips .title.data-v-dc55a283{font-size:34rpx;color:#092c4d}.modtips .contents.data-v-dc55a283{max-width:480rpx;font-size:29rpx;color:#90a0af;margin-top:30rpx}.modtips .buts.data-v-dc55a283{display:flex;align-items:center;justify-content:center;margin-top:40rpx}.modtips .buts>view.data-v-dc55a283{display:flex;align-items:center;justify-content:center;width:260rpx;height:88rpx;border-radius:8rpx;font-size:32rpx}.modtips .buts>.cancel.data-v-dc55a283{background-color:#f5f5f6;color:#5a6875;margin-right:20rpx}.modtips .buts>.confirm.data-v-dc55a283{background-color:#d3832a;color:#fff} |
||||
|
@ -1 +1 @@
|
||||
"use strict";exports.APPKEY="h5u:h5u_secret",exports.host="http://192.168.2.110:9999/",exports.imghost=""; |
||||
"use strict";exports.APPKEY="h5u:h5u_secret",exports.host="http://test.api.huitongys.com/",exports.imghost=""; |
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="6909f83c-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view wx:for="{{b}}" wx:for-item="item" class="mabox"><view class="boxtitl">{{item.a}}</view><view class="minboxlist"><view wx:for="{{item.b}}" wx:for-item="ite" bindtap="{{ite.c}}"><image mode="widthFix" src="{{ite.a}}"></image><view>{{ite.b}}</view></view></view></view> |
||||
<u-navbar wx:if="{{a}}" u-i="89cc5352-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view wx:for="{{b}}" wx:for-item="item" class="mabox"><view class="boxtitl">{{item.a}}</view><view class="minboxlist"><view wx:for="{{item.b}}" wx:for-item="ite" bindtap="{{ite.c}}"><image mode="widthFix" src="{{ite.a}}"></image><view class="minboxlist_title">{{ite.b}}</view></view></view></view><tips class="r" u-r="tip" u-i="89cc5352-1" bind:__l="__l"></tips> |
@ -1 +1 @@
|
||||
.mabox{display:flex;flex-direction:column;padding:20rpx 0;box-sizing:border-box;width:686rpx;margin:auto;background-color:#fff;margin-bottom:20rpx;margin-top:10rpx;border-radius:10rpx;box-shadow:0 2rpx 10rpx rgba(226,226,227,.5)}.mabox .boxtitl{font-size:34rpx;font-weight:500;margin-bottom:10rpx;border-bottom:1rpx solid #EEEEEE;padding:0rpx 20rpx 20rpx;color:#092c4d}.mabox .minboxlist{display:grid;grid-template-columns:25% 25% 25% 25%;padding-top:10rpx}.mabox .minboxlist>view{display:flex;flex-direction:column;align-items:center;margin-bottom:10rpx}.mabox .minboxlist>view>image{width:60rpx}.mabox .minboxlist>view>view{font-size:26rpx} |
||||
.mabox{display:flex;flex-direction:column;padding:20rpx 0;box-sizing:border-box;width:686rpx;margin:auto;background-color:#fff;margin-bottom:20rpx;margin-top:10rpx;border-radius:10rpx;box-shadow:0 2rpx 10rpx rgba(226,226,227,.5)}.mabox .boxtitl{font-size:34rpx;font-weight:500;margin-bottom:10rpx;border-bottom:1rpx solid #EEEEEE;padding:0rpx 20rpx 20rpx;color:#092c4d}.mabox .minboxlist{display:flex;flex-wrap:wrap;align-items:center;padding-top:10rpx}.mabox .minboxlist>view{width:25%;display:flex;flex-direction:column;align-items:center;margin-bottom:15rpx}.mabox .minboxlist>view>image{width:100rpx}.mabox .minboxlist>view>view{font-size:26rpx} |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../../common/vendor.js"),s=require("../../api/user.js");if(require("../../utils/request.js"),require("../../store/index.js"),require("../../utils/functions.js"),require("../../utils/IDCardVerification.js"),require("../../config/host.js"),require("../../utils/base64.js"),require("../../utils/md5.js"),!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("tips"))()}Math;const n=e.defineComponent({__name:"login",setup(n){let t=e.ref(null),r=e.reactive({tenantId:"",password:"",username:"",isremember:!0});function o(){console.log("确认")}async function a(){let n={grant_type:"password",scope:"all",username:r.username,password:r.password,tenantId:r.tenantId},o=await s.oauthtoken(n);console.log(o),(null==o?void 0:o.refresh_token)?function(s){if(e.index.setStorageSync("access_token",s.access_token),e.index.setStorageSync("refresh_token",s.refresh_token),e.index.setStorageSync("userinfo",s),r.isremember){let s={tenantId:r.tenantId,password:r.password,username:r.username};e.index.setStorageSync("loginuser",s)}e.index.switchTab({url:"/pages/index/index"})}(o):(t.value.setdetails({title:"提示",content:"请确认账号密码正确,多次错误后禁止登录",confirmTxt:"确认",isshow:!0,isshowcancel:!1,success:()=>{t.value.setisshow(!1)},cancel:()=>{t.value.setisshow(!1)},close:()=>{t.value.setisshow(!1)}}),console.log("登录错误"))}function i(){r.isremember=!r.isremember}e.onLoad((()=>{let s=e.index.getStorageSync("loginuser");s&&(r.password=s.password,r.tenantId=s.tenantId,r.username=s.username)})),e.onShow((()=>{setTimeout((()=>{}),2e3)}));const{username:u,password:l,tenantId:c,isremember:d}=e.toRefs(r);return(s,n)=>({a:e.p({title:"登录",placeholder:!0,border:"true",leftIcon:""}),b:e.unref(c),c:e.o((s=>e.isRef(c)?c.value=s.detail.value:null)),d:e.unref(u),e:e.o((s=>e.isRef(u)?u.value=s.detail.value:null)),f:e.unref(l),g:e.o((s=>e.isRef(l)?l.value=s.detail.value:null)),h:e.unref(d)?"/static/check.png":"/static/nocheck.png",i:e.o(i),j:e.o(a),k:e.sr(t,"c4194660-1",{k:"tip"}),l:e.o(o)})}});wx.createPage(n); |
||||
"use strict";const e=require("../../common/vendor.js"),s=require("../../api/user.js"),t=require("../../utils/utils.js"),n=require("../../store/uaeUserStore.js");if(require("../../utils/request.js"),require("../../store/index.js"),require("../../utils/functions.js"),require("../../utils/IDCardVerification.js"),require("../../utils/base64.js"),require("../../config/host.js"),require("../../utils/md5.js"),!Array){(e.resolveComponent("tips")+e.resolveComponent("tiplist"))()}const r=e.defineComponent({__name:"login",setup(r){const i=n.useUserStore(),{HANDLE_ACCTOKEN:o,HANDLE_REFTOKEN:a,HANDLE_USERINFO:u}=i;let c=e.ref(null),l=e.reactive({tenantId:"",password:"",username:"",isremember:!0,showck:!1,warehouseList:[],checkitem:{}});const d=e.ref(null);async function m(){if(!l.checkitem.id)return e.index.showToast({title:"没有选择仓库,请先选择仓库",icon:"none"}),void t.utils.ttsspke("没有选择仓库,请先选择仓库");await s.preserveCurrentWarehouse(l.checkitem),e.index.setStorageSync("checkname",l.checkitem),e.index.switchTab({url:"/pages/index/index"})}async function h(){try{let t={grant_type:"password",scope:"all",username:l.username,password:l.password,tenantId:l.tenantId};e.index.showLoading({mask:!0,title:"登录中"});let n=await s.oauthtoken(t);if(console.log(n),null==n?void 0:n.refresh_token){if(function(s){if(e.index.setStorageSync("access_token",s.access_token),o("userinfo.access_token"),e.index.setStorageSync("refresh_token",s.refresh_token),a(s.refresh_token),e.index.setStorageSync("userinfo",s),u(s),e.index.removeStorageSync("authbuts"),e.index.removeStorageSync("homerouter"),l.isremember){let s={tenantId:l.tenantId,password:l.password,username:l.username};e.index.setStorageSync("loginuser",s)}}(n),e.index.setStorageSync("checkname",{warehouse_id:n.detail.warehouse_id,warehouse_name:n.detail.warehouse_name,name:n.detail.warehouse_name}),n.detail.warehouse_id)return void e.index.switchTab({url:"/pages/index/index"});let t=await s.getMyWarehouseList({});if(l.warehouseList=t.data,1==l.warehouseList.length){await s.preserveCurrentWarehouse(l.warehouseList[0]);return e.index.setStorageSync("checkname",l.warehouseList[0]),void e.index.switchTab({url:"/pages/index/index"})}l.showck=!0}else c.value.setdetails({title:"提示",content:"请确认账号密码正确,多次错误后禁止登录",confirmTxt:"确认",isshow:!0,isshowcancel:!1,success:()=>{c.value.setisshow(!1)},cancel:()=>{c.value.setisshow(!1)},close:()=>{c.value.setisshow(!1)}}),console.log("登录错误")}catch(t){console.log("err :>> ",t)}finally{e.index.hideLoading()}}function w(){l.isremember=!l.isremember}function f(){e.index.navigateBack()}e.onLoad((()=>{let s=e.index.getStorageSync("loginuser");s&&(l.password=s.password,l.tenantId=s.tenantId,l.username=s.username)})),e.onShow((()=>{const e=setTimeout((()=>{clearTimeout(e)}),2e3)})),e.onPullDownRefresh((()=>{const s=setTimeout((()=>{l.username="",l.tenantId="",l.password="",e.index.stopPullDownRefresh(),clearTimeout(s)}),500)}));const{checkitem:g,warehouseList:p,showck:k,username:x,password:v,tenantId:S,isremember:_}=e.toRefs(l);return(s,t)=>e.e({a:e.o(f),b:e.unref(S),c:e.o((s=>e.isRef(S)?S.value=s.detail.value:null)),d:e.unref(x),e:e.o((s=>e.isRef(x)?x.value=s.detail.value:null)),f:e.unref(v),g:e.o((s=>e.isRef(v)?v.value=s.detail.value:null)),h:e.unref(_)?"/static/ck.png":"/static/nock.png",i:e.o(w),j:e.o(h),k:e.unref(k)},e.unref(k)?{l:e.f(e.unref(p),((s,t,n)=>({a:e.t(s.name),b:e.o((e=>function(e){l.checkitem=e}(s))),c:e.n(s.name==e.unref(g).name?"items xzck":"items")}))),m:e.o(m),n:e.o((()=>{})),o:e.o((e=>k.value=!1))}:{},{p:e.sr(c,"e4dba176-0",{k:"tip"}),q:e.sr(d,"e4dba176-1",{k:"tiplists"})})}});wx.createPage(r); |
||||
|
@ -1,8 +1,7 @@
|
||||
{ |
||||
"navigationBarTitleText": "登录", |
||||
"enablePullDownRefresh": false, |
||||
"enablePullDownRefresh": true, |
||||
"onReachBottomDistance": 1, |
||||
"navigationStyle": "custom", |
||||
"usingComponents": { |
||||
"u-navbar": "../../uni_modules/uview-plus/components/u-navbar/u-navbar" |
||||
} |
||||
"usingComponents": {} |
||||
} |
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="c4194660-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view style="display:flex;align-items:center;justify-content:center;width:100vw;height:100%;box-sizing:border-box"><view class="mabox"><view class="title"> 货无忧 </view><view class="inptbox"><view class="inputs"><view>租户密钥:</view><view><input placeholder="请输入租户密钥" value="{{b}}" bindinput="{{c}}"/></view></view><view class="inputs"><view>用户账号:</view><view><input placeholder="请输入用户名称" value="{{d}}" bindinput="{{e}}"/></view></view><view class="inputs"><view>登录密码:</view><view><input placeholder="请输入登录密码" password value="{{f}}" bindinput="{{g}}"/></view></view></view><view class="isrememberpassword" bindtap="{{i}}"><image src="{{h}}"></image><view>是否记住账号密码</view></view><view class="submit" bindtap="{{j}}"> 登录 </view></view></view><tips class="r" u-r="tip" bindconfirm="{{l}}" u-i="c4194660-1" bind:__l="__l"></tips> |
||||
<image class="backimg" bindtap="{{a}}" src="/static/rigthviewb.png"></image><image class="bgimgmabx" src="/static/mabg.png"></image><view class="maboxview"><view class="tophi"><view>Hello!</view><view>欢迎来到货无忧</view></view><view class="mabox"><view class="inptbox"><view class="inputs"><view>公司编号</view><view><input placeholder="请输入" value="{{b}}" bindinput="{{c}}"/></view></view><view class="inputs"><view>用户账号</view><view><input placeholder="请输入" value="{{d}}" bindinput="{{e}}"/></view></view><view class="inputs"><view>登录密码</view><view><input placeholder="请输入" password value="{{f}}" bindinput="{{g}}"/></view></view></view><view class="isrememberpassword" bindtap="{{i}}"><image src="{{h}}"></image><view>记住密码</view></view><view class="submit" bindtap="{{j}}"> 登录 </view></view></view><view wx:if="{{k}}" class="bgmabx" bindtap="{{o}}"><view class="changkus" catchtap="{{n}}"><view class="tis"><image class="bgimgs" src="/static/tpbg.png"></image><image class="ckbgcc" src="/static/changku.png"></image><view class="titlck">选择仓库</view><scroll-view scroll-y="true" class="scvuew"><view class="maboxs"><view wx:for="{{l}}" wx:for-item="item" bindtap="{{item.b}}" class="{{item.c}}">{{item.a}}</view></view></scroll-view><view class="submitcheck" bindtap="{{m}}">确认选择</view></view></view></view><tips class="r" u-r="tip" u-i="e4dba176-0" bind:__l="__l"></tips><tiplist class="r" u-r="tiplists" u-i="e4dba176-1" bind:__l="__l"></tiplist> |
@ -1 +1 @@
|
||||
.mabox{width:686rpx;padding:30rpx 20rpx 40rpx;box-sizing:border-box;background-color:#fff;border-radius:10rpx;box-shadow:0 2rpx 10rpx rgba(226,226,227,.5);margin-top:20%}.mabox .title{display:flex;align-items:center;justify-content:center;color:#d3832a;font-size:45rpx;font-weight:600}.mabox .isrememberpassword{display:flex;align-items:center;justify-content:center}.mabox .isrememberpassword>image{width:32rpx;height:32rpx;margin-right:15rpx}.mabox .isrememberpassword>view{font-size:28rpx;color:#092c4d}.mabox .inptbox{display:flex;flex-direction:column;align-items:center;margin-top:130rpx}.mabox .inptbox>.inputs{display:flex;align-items:center;justify-content:center;margin-bottom:30rpx}.mabox .inptbox>.inputs>view:nth-of-type(1){width:150rpx;font-size:28rpx;color:#092c4d}.mabox .inptbox>.inputs>view:nth-of-type(2){width:400rpx;height:75rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx 10rpx 10rpx 20rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.mabox .inptbox>.inputs>view:nth-of-type(2)>input{flex:1}.mabox .submit{width:320rpx;height:80rpx;display:flex;align-items:center;justify-content:center;background-color:#d3832a;color:#fff;border-radius:8rpx;margin:auto;margin-top:20rpx} |
||||
.bgmabx{position:fixed;left:0;top:0;background-color:rgba(0,0,0,.314);width:100vw;height:100vh;z-index:9999999999999}.bgmabx .changkus{width:100vw;background-color:#fff;position:absolute;bottom:0;left:0;border-radius:30rpx 30rpx 0 0;box-sizing:border-box}.bgmabx .changkus .tis{position:relative;display:flex;align-items:center;flex-direction:column}.bgmabx .changkus .bgimgs{position:absolute;left:0;top:0;width:100vw;height:100%}.bgmabx .changkus .ckbgcc{position:absolute;top:-150rpx;right:20rpx;width:260rpx;height:260rpx}.bgmabx .changkus .titlck{width:650rpx;font-size:34rpx;font-weight:500;color:#020b18;padding-top:30rpx}.bgmabx .changkus .scvuew{width:576rpx;height:470rpx;margin-top:40rpx;margin-bottom:20rpx}.bgmabx .changkus .scvuew .maboxs{display:flex;flex-wrap:wrap;align-items:center}.bgmabx .changkus .scvuew .maboxs .xzck{background-color:#faf2e9!important;border-color:#d3832a!important;color:#d3832a!important}.bgmabx .changkus .scvuew .maboxs .items{width:272rpx;height:72rpx;background-color:#fff;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#90a0af;margin-bottom:20rpx}.bgmabx .changkus .scvuew .maboxs .items:nth-child(odd){margin-right:20rpx}.bgmabx .changkus .submitcheck{width:686rpx;height:100rpx;background:#D3832A;border-radius:16rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff;margin-bottom:30rpx;position:relative}.bgimgmabx{width:100vw;height:100vh;position:absolute;left:0;top:0}.backimg{width:40rpx;height:40rpx;position:absolute;left:50rpx;z-index:9;top:70rpx;transform:rotate(180deg)}.maboxview{position:relative;width:100vw;height:100vh;display:flex;flex-direction:column;align-items:center}.tophi{width:600rpx;margin-top:240rpx}.tophi>view:nth-of-type(1){width:250rpx;font-size:72rpx;font-weight:700;line-height:104rpx;background-image:linear-gradient(275deg,rgba(9,44,77,0) 0%,#092C4D 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.tophi>view:nth-of-type(2){font-size:40rpx;font-weight:700;color:#092c4d}.mabox{position:absolute;bottom:0rpx;left:50%;transform:translate(-50%);width:660rpx;height:67vh;padding:20rpx 20rpx 40rpx;box-sizing:border-box;background-color:#fff;border-radius:30rpx 30rpx 0 0;box-shadow:0 2rpx 10rpx rgba(226,226,227,.5)}.mabox .isrememberpassword{display:flex;align-items:center;justify-content:center}.mabox .isrememberpassword>image{width:45rpx;height:45rpx;margin-right:15rpx}.mabox .isrememberpassword>view{font-size:28rpx;color:#092c4d}.mabox .inptbox{display:flex;flex-direction:column;align-items:center;margin-top:50rpx}.mabox .inptbox>.inputs{display:flex;align-items:center;justify-content:center;margin-bottom:30rpx}.mabox .inptbox>.inputs>view:nth-of-type(1){font-size:32rpx;font-weight:500;color:#092c4d;margin-right:20rpx}.mabox .inptbox>.inputs>view:nth-of-type(2){width:400rpx;height:80rpx;background:#F4F8FB;border-radius:8rpx;opacity:1;padding:10rpx 10rpx 10rpx 20rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba;display:flex;align-items:center}.mabox .inptbox>.inputs>view:nth-of-type(2)>input{flex:1;font-size:24rpx}.mabox .submit{width:600rpx;height:100rpx;display:flex;align-items:center;justify-content:center;background-color:#d3832a;color:#fff;border-radius:16rpx;margin:auto;margin-top:20rpx;box-sizing:border-box} |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../../common/vendor.js").defineComponent({__name:"news",setup:e=>(e,n)=>({})});wx.createPage(e); |
||||
"use strict";const e=require("../../common/vendor.js"),t=e.defineComponent({__name:"news",setup(t){e.onPullDownRefresh((()=>{const t=setTimeout((()=>{n.value="http://192.168.10.75:8777/",e.index.stopPullDownRefresh(),clearTimeout(t)}),500)}));let n=e.ref("http://192.168.10.12:1086/");function o(){n.value?(e.index.setStorageSync("setip",n.value),e.index.showToast({title:"设置成功",icon:"success"})):e.index.showToast({title:"请输入ip",icon:"none"})}return e.index.getStorageSync("setip")&&(n.value=e.index.getStorageSync("setip")),(t,i)=>({a:e.unref(n),b:e.o((t=>e.isRef(n)?n.value=t.detail.value:n=t.detail.value)),c:e.o(o)})}});wx.createPage(t); |
||||
|
@ -1,6 +1,7 @@
|
||||
{ |
||||
"navigationBarTitleText": "消息", |
||||
"enablePullDownRefresh": false, |
||||
"enablePullDownRefresh": true, |
||||
"onReachBottomDistance": 1, |
||||
"navigationStyle": "custom", |
||||
"usingComponents": {} |
||||
} |
@ -1 +1 @@
|
||||
<view></view> |
||||
<view class="titles">切换环境</view><view class="mabxose"><view class="titl">请输入需要设置的IP环境</view><view class="titl">例:http://192.168.10.12:1086/</view><view class="inps"><input placeholder="请输入ip环境" value="{{a}}" bindinput="{{b}}"/></view><view class="buts" bindtap="{{c}}">确认</view></view> |
@ -0,0 +1 @@
|
||||
.titles{position:absolute;left:50%;top:70rpx;transform:translate(-50%);font-size:36rpx;font-weight:400;color:#d3832a;z-index:5}.mabxose{margin:auto;margin-top:150rpx;width:560rpx;padding:20rpx;background-color:#f0e6dc;border-radius:10rpx}.mabxose .titl{color:#d3832a}.mabxose .inps{width:500rpx;height:60rpx;border:1rpx solid #cfcfcf;display:flex;align-items:center;justify-content:flex-start;margin-top:20rpx}.mabxose .inps>input{flex:1}.mabxose .buts{background-color:#d3832a;color:#fff;display:flex;align-items:center;justify-content:center;width:240rpx;height:80rpx;border-radius:10rpx;margin:auto;margin-top:20rpx} |
@ -1 +1 @@
|
||||
"use strict";const e=require("../../common/vendor.js").defineComponent({__name:"reportForms",setup:e=>(e,o)=>({})});wx.createPage(e); |
||||
"use strict";const e=require("../../common/vendor.js"),o=e.defineComponent({__name:"reportForms",setup:o=>(e.onPullDownRefresh((()=>{const o=setTimeout((()=>{e.index.stopPullDownRefresh(),clearTimeout(o)}),500)})),(e,o)=>({}))});wx.createPage(o); |
||||
|
@ -1,6 +1,7 @@
|
||||
{ |
||||
"navigationBarTitleText": "报表", |
||||
"enablePullDownRefresh": false, |
||||
"enablePullDownRefresh": true, |
||||
"onReachBottomDistance": 1, |
||||
"navigationStyle": "custom", |
||||
"usingComponents": {} |
||||
} |
@ -1 +1 @@
|
||||
"use strict";const e=require("../../common/vendor.js").defineComponent({__name:"taskList",setup:e=>(e,t)=>({})});wx.createPage(e); |
||||
"use strict";const e=require("../../common/vendor.js");if(!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("tips"))()}Math;const n=e.defineComponent({__name:"taskList",setup(n){const t=e.ref(null);let o=e.reactive({tablist:[{type:1,name:"盘点任务",minilist:[{icon:"http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",name:"盘点任务",router:"/pagesTask/pages/dynamicCheck/dynamicCheck"}]}]});e.onShow((()=>{})),e.onLoad((()=>{})),e.onPullDownRefresh((()=>{const n=setTimeout((()=>{e.index.stopPullDownRefresh(),clearTimeout(n)}),500)}));const{tablist:a}=e.toRefs(o);return(n,o)=>({a:e.p({title:"工作台",placeholder:!0,border:"true",leftIcon:""}),b:e.f(e.unref(a),((n,t,o)=>({a:e.t(n.name),b:e.f(n.minilist,((n,t,o)=>({a:n.icon,b:e.t(n.name),c:e.o((t=>{return o=n.router,void e.index.navigateTo({url:o});var o}),n.name),d:n.name}))),c:n.name}))),c:e.sr(t,"55568d11-1",{k:"tip"})})}});wx.createPage(n); |
||||
|
@ -1,6 +1,9 @@
|
||||
{ |
||||
"navigationBarTitleText": "任务", |
||||
"enablePullDownRefresh": false, |
||||
"enablePullDownRefresh": true, |
||||
"onReachBottomDistance": 1, |
||||
"navigationStyle": "custom", |
||||
"usingComponents": {} |
||||
"usingComponents": { |
||||
"u-navbar": "../../uni_modules/uview-plus/components/u-navbar/u-navbar" |
||||
} |
||||
} |
@ -1 +1 @@
|
||||
<view></view> |
||||
<u-navbar wx:if="{{a}}" u-i="55568d11-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view wx:for="{{b}}" wx:for-item="item" wx:key="c" class="mabox"><view class="boxtitl">{{item.a}}</view><view class="minboxlist"><view wx:for="{{item.b}}" wx:for-item="ite" wx:key="d" bindtap="{{ite.c}}"><image mode="widthFix" src="{{ite.a}}"></image><view>{{ite.b}}</view></view></view></view><tips class="r" u-r="tip" u-i="55568d11-1" bind:__l="__l"></tips> |
@ -0,0 +1 @@
|
||||
.mabox{display:flex;flex-direction:column;padding:20rpx 0;box-sizing:border-box;width:686rpx;margin:auto;background-color:#fff;margin-bottom:20rpx;margin-top:10rpx;border-radius:10rpx;box-shadow:0 2rpx 10rpx rgba(226,226,227,.5)}.mabox .boxtitl{font-size:34rpx;font-weight:500;margin-bottom:10rpx;border-bottom:1rpx solid #EEEEEE;padding:0rpx 20rpx 20rpx;color:#092c4d}.mabox .minboxlist{display:flex;flex-wrap:wrap;align-items:center;padding-top:10rpx}.mabox .minboxlist>view{width:25%;display:flex;flex-direction:column;align-items:center;margin-bottom:15rpx}.mabox .minboxlist>view>image{width:100rpx}.mabox .minboxlist>view>view{font-size:26rpx} |
@ -1 +1 @@
|
||||
"use strict";const e=require("../../common/vendor.js");if(!Array){e.resolveComponent("u-navbar")()}Math;const o=e.defineComponent({__name:"user",setup(o){function n(){e.index.navigateTo({url:"/pages/login/login"})}return(o,t)=>({a:e.p({title:"我的信息",placeholder:!0,leftIcon:"",bgColor:"#FA8C16da",titleStyle:"color:#ffffff"}),b:e.o(n)})}});wx.createPage(o); |
||||
"use strict";const e=require("../../common/vendor.js"),t=require("../../api/user.js"),n=require("../../utils/utils.js");if(require("../../utils/request.js"),require("../../store/index.js"),require("../../utils/functions.js"),require("../../utils/IDCardVerification.js"),require("../../utils/base64.js"),require("../../config/host.js"),require("../../utils/md5.js"),!Array){(e.resolveComponent("tiplist")+e.resolveComponent("tips"))()}const i=e.defineComponent({__name:"user",setup(i){let s=e.ref(null);const o=e.ref(null),a=e.ref(null);let r=e.ref(null),u=e.ref([{icon:"/static/usericon1.png",name:"通讯录",type:1},{icon:"/static/usericon2.png",name:"计件工资",type:2},{icon:"/static/usericon3.png",name:"系统设置",type:3},{icon:"/static/usericon4.png",name:"安全设置",type:4},{icon:"/static/usericon5.png",name:"关于我们",type:5},{icon:"/static/usericon6.png",name:"检测更新",type:6},{icon:"/static/usericon7.png",name:"分享",type:7},{icon:"/static/usericon8.png",name:"切换账号",type:8}]),c=e.reactive({showck:!1,warehouseList:[],checkitems:{}});async function l(){if(!c.checkitems.id)return e.index.showToast({title:"没有选择仓库,请先选择仓库",icon:"none"}),void n.utils.ttsspke("没有选择仓库,请先选择仓库");await t.preserveCurrentWarehouse(c.checkitems),e.index.setStorageSync("checkname",c.checkitems),c.showck=!1,e.index.showToast({title:"切换成功",icon:"none"}),n.utils.ttsspke("切换成功")}function d(){e.index.navigateTo({url:"/pages/login/login"})}async function p(){let e=await t.getMyWarehouseList({});console.log(e.data),c.warehouseList=e.data,c.showck=!0}function g(i){1==i.type||(3==i.type?e.index.navigateTo({url:"/pagesUser/pages/systemSettings/systemSettings"}):5==i.type?e.index.navigateTo({url:"/pagesUser/pages/about/about"}):6==i.type?async function(){let i=await n.utils.getversion();console.log("version 版本>>>>",i);let s={betenantCode:e.index.getStorageSync("userinfo").tenant_id,versionCode:i.version.split(".").join(""),versionType:-1!=i.pkName.indexOf("test")?"1":-1!=i.pkName.indexOf("bate")?"2":"3"};console.log("data>>>>",s);let o=await t.AppPdaversiondetail(s);200==o.code&&0!==Object.keys(o.data).length?(console.log("res.data",o.data),console.log("有可更新包"),"2"==o.data.noSensation&&-1!=o.data.link.indexOf("wgt")?n.utils.updatefile1(o.data.link):a.value.setdetails({title:"提示",content:"检测到有新版本,请问是否更新?",confirmTxt:"更新",isshow:!0,isshowcancel:!0,success:async()=>{n.utils.updatefile(o.data.link),a.value.setisshow(!1)},cancel:()=>{a.value.setisshow(!1),"2"==o.data.isUpdates&&plus.runtime.quit()},close:()=>{a.value.setisshow(!1),"2"==o.data.isUpdates&&plus.runtime.quit()}})):e.index.showToast({title:"已是最新版本",icon:"none"})}():8==i.type&&d())}function f(){const t=e.index.getStorageInfoSync();t.keys.map((t=>{"loginuser"!=t&&"HistoryDate"!=t&&"setip"!=t&&"checkname"!=t&&-1==t.indexOf("IMAGE_CACHE_INFO")&&e.index.removeStorageSync(t)})),e.index.reLaunch({url:"/pages/login/login"}),console.log(t.currentSize),console.log(String(t.limitSize))}e.onShow((()=>{s.value=e.index.getStorageSync("userinfo"),r.value=e.index.getStorageSync("checkname")})),e.onPullDownRefresh((()=>{const t=setTimeout((()=>{e.index.stopPullDownRefresh(),clearTimeout(t)}),500)}));const{showck:m,warehouseList:h,checkitems:y}=e.toRefs(c);return(t,n)=>{var i,v,k,w;return e.e({a:!(null==(i=e.unref(s))?void 0:i.user_id)},(null==(v=e.unref(s))?void 0:v.user_id)?{}:{b:e.o(d)},{c:null==(k=e.unref(s))?void 0:k.user_id},(null==(w=e.unref(s))?void 0:w.user_id)?{d:e.t(e.unref(s).real_name),e:e.t(e.unref(s).role_name),f:e.t(e.unref(r).name),g:e.o(p)}:{},{h:e.f(e.unref(u),((t,n,i)=>({a:t.icon,b:e.t(t.name),c:e.o((e=>g(t)))}))),i:e.o(f),j:e.unref(m)},e.unref(m)?{k:e.f(e.unref(h),((t,n,i)=>({a:e.t(t.name),b:e.o((e=>function(e){c.checkitems=e}(t))),c:e.n(t.name==e.unref(y).name?"items xzck":"items")}))),l:e.o(l),m:e.o((()=>{})),n:e.o((e=>m.value=!1))}:{},{o:e.sr(o,"877ebbde-0",{k:"tiplists"}),p:e.sr(a,"877ebbde-1",{k:"tip"})})}}});wx.createPage(i); |
||||
|
@ -1,8 +1,7 @@
|
||||
{ |
||||
"navigationBarTitleText": "我的", |
||||
"enablePullDownRefresh": false, |
||||
"enablePullDownRefresh": true, |
||||
"onReachBottomDistance": 1, |
||||
"navigationStyle": "custom", |
||||
"usingComponents": { |
||||
"u-navbar": "../../uni_modules/uview-plus/components/u-navbar/u-navbar" |
||||
} |
||||
"usingComponents": {} |
||||
} |
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="64d49348-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="contmabox"><view bindtap="{{b}}" class="login"> 登录 </view></view> |
||||
<view class="titles">个人中心</view><image class="usebg" src="/static/userbg.png"></image><view wx:if="{{a}}" class="userviews" bindtap="{{b}}"><image src="/static/userimg.png"></image><view><view>未登录</view></view></view><view wx:if="{{c}}" class="userviews"><image src="/static/userimg.png"></image><view><view>{{d}}</view><view><view></view><view bindtap="{{g}}"><view>{{e}}-{{f}}</view><image src="/static/rigthviewb.png"></image></view></view></view></view><view class="btsview"><view wx:for="{{h}}" wx:for-item="item" bindtap="{{item.c}}"><view><image src="{{item.a}}"></image><view>{{item.b}}</view></view><view><image src="/static/rigthview.png"></image></view></view></view><view class="butout" bindtap="{{i}}"> 退出登录 </view><view wx:if="{{j}}" class="bgmabx" bindtap="{{n}}"><view class="changkus" catchtap="{{m}}"><view class="tis"><image class="bgimgs" src="/static/tpbg.png"></image><image class="ckbgcc" src="/static/changku.png"></image><view class="titlck">选择仓库</view><scroll-view scroll-y="true" class="scvuew"><view class="maboxs"><view wx:for="{{k}}" wx:for-item="item" bindtap="{{item.b}}" class="{{item.c}}">{{item.a}}</view></view></scroll-view><view class="submitcheck" bindtap="{{l}}">确认选择</view></view></view></view><view class="zhanwei"></view><tiplist class="r" u-r="tiplists" u-i="877ebbde-0" bind:__l="__l"></tiplist><tips class="r" u-r="tip" u-i="877ebbde-1" bind:__l="__l"></tips> |
@ -1 +1 @@
|
||||
.login{width:260rpx;height:90rpx;display:flex;align-items:center;justify-content:center;background-color:#0073ff;color:#fff;border-radius:90rpx;margin:auto;margin-top:180rpx}.contmabox{display:flex;flex-direction:column;width:100%;height:400rpx;background-color:rgba(250,140,22,.855)} |
||||
.bgmabx{position:fixed;left:0;top:0;background-color:rgba(0,0,0,.314);width:100vw;height:100vh;z-index:9999999999999}.bgmabx .changkus{width:100vw;background-color:#fff;position:absolute;bottom:0;left:0;border-radius:30rpx 30rpx 0 0;box-sizing:border-box}.bgmabx .changkus .tis{position:relative;display:flex;align-items:center;flex-direction:column}.bgmabx .changkus .bgimgs{position:absolute;left:0;top:0;width:100vw;height:100%}.bgmabx .changkus .ckbgcc{position:absolute;top:-150rpx;right:20rpx;width:260rpx;height:260rpx}.bgmabx .changkus .titlck{width:650rpx;font-size:34rpx;font-weight:500;color:#020b18;padding-top:30rpx}.bgmabx .changkus .scvuew{width:576rpx;height:470rpx;margin-top:40rpx;margin-bottom:20rpx}.bgmabx .changkus .scvuew .maboxs{display:flex;flex-wrap:wrap;align-items:center}.bgmabx .changkus .scvuew .maboxs .xzck{background-color:#faf2e9!important;border-color:#d3832a!important;color:#d3832a!important}.bgmabx .changkus .scvuew .maboxs .items{width:272rpx;height:72rpx;background-color:#fff;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#90a0af;margin-bottom:20rpx}.bgmabx .changkus .scvuew .maboxs .items:nth-child(odd){margin-right:20rpx}.bgmabx .changkus .submitcheck{width:686rpx;height:100rpx;background:#D3832A;border-radius:16rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff;margin-bottom:30rpx;position:relative}.titles{position:absolute;left:50%;top:70rpx;transform:translate(-50%);font-size:36rpx;font-weight:400;color:#fff;z-index:5}.butout{width:400rpx;height:88rpx;background:#edd9c3;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:500;color:#d3832a;margin:auto;margin-top:60rpx;box-sizing:border-box}.zhanwei{width:100%;height:80rpx}.btsview{position:relative;display:flex;flex-direction:column;width:100%;padding:26rpx 26rpx 0rpx;box-sizing:border-box;border-radius:30rpx 30rpx 0 0;margin-top:50rpx;background-color:#fff}.btsview>view{display:flex;align-items:center;justify-content:space-between;padding:40rpx;box-sizing:border-box;border-bottom:2rpx solid #EEEEEE;padding-right:0;padding-left:20rpx}.btsview>view:nth-last-child(1){border-bottom:none}.btsview>view>view:nth-of-type(1){display:flex;align-items:center;justify-content:center}.btsview>view>view:nth-of-type(1)>image{width:40rpx;height:40rpx;margin-right:20rpx}.btsview>view>view:nth-of-type(1)>view{font-size:32rpx;font-weight:500;color:#3d3d3d}.btsview>view>view:nth-of-type(2)>image{width:32rpx;height:32rpx}.userviews{display:flex;align-items:center;position:relative;width:560rpx;margin:auto;margin-top:200rpx}.userviews>image{width:160rpx;height:160rpx;box-sizing:border-box;margin-right:24rpx}.userviews>view{width:400rpx;display:flex;flex-direction:column;align-items:flex-start;color:#fff}.userviews>view>view{display:flex;flex-direction:column;align-items:flex-start}.userviews>view>view:nth-of-type(1){font-size:40rpx;font-weight:700;margin-bottom:30rpx}.userviews>view>view>view{display:flex;align-items:center}.userviews>view>view>view:nth-of-type(1){font-size:32rpx;font-weight:700;margin-bottom:10rpx}.userviews>view>view>view:nth-of-type(2){font-size:28rpx}.userviews>view>view>view>image{width:32rpx;height:32rpx}.usebg{width:100%;height:476rpx;position:absolute;left:0;top:0}.login{width:260rpx;height:90rpx;display:flex;align-items:center;justify-content:center;background-color:#0073ff;color:#fff;border-radius:90rpx;margin:auto;margin-top:180rpx}.contmabox{display:flex;flex-direction:column;width:100%;height:400rpx;background-color:rgba(250,140,22,.855)} |
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="dfa68ca0-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hdtp"><view><view> 客户:{{b}}</view></view><view><view>备货是否完成:{{c}}</view><view>装车是否完成:{{d}}</view></view></view><view class="hdtpnum"><view><view>订单总数</view><view>{{e}}</view></view><view><view>齐套数</view><view>15</view></view><view><view>自提件数</view><view>15</view></view><view><view>签收件数</view><view>{{f}}</view></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{h}}" bindchange="{{g}}" u-i="dfa68ca0-1" bind:__l="__l" u-p="{{h}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号"/></view><view class="btscan">查询</view></view><scroll-view class="scve" scroll-y="true"><view class="mabx"><view wx:for="{{i}}" wx:for-item="item" class="itec"><view class="contenbx1"><view><text style="color:#90A0AF">订单编号:</text>{{item.a}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">配送数:</text>{{item.b}}</view><view><text style="color:#90A0AF">已扫码数:</text>{{item.c}}</view></view><view class="{{item.e}}">{{item.d}}</view></view></view></scroll-view> |
||||
<u-navbar wx:if="{{a}}" u-i="e3e6ac36-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hdtp"><view><view> 客户:{{b}}</view><view class="butlur" bindtap="{{c}}"> 录入包条码 </view></view><view><view>备货是否完成:{{d}}</view><view>装车是否完成:{{e}}</view></view></view><view class="hdtpnum"><view><view>订单总数</view><view>{{f}}</view></view><view><view>计划件数</view><view>{{g}}</view></view><view><view>装车件数</view><view>{{h}}</view></view><view><view>签收件数</view><view>{{i}}</view></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{k}}" bindchange="{{j}}" u-i="e3e6ac36-1" bind:__l="__l" u-p="{{k}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号" value="{{l}}" bindinput="{{m}}"/></view><view bindtap="{{n}}" class="btscan">查询</view></view><view class="tabtip"><view bindtap="{{p}}"><view class="{{o}}">定制品</view></view><view bindtap="{{r}}"><view class="{{q}}">零担</view></view><view bindtap="{{t}}"><view class="{{s}}">库存品</view></view></view><scroll-view class="scve" scroll-y="true" bindrefresherpulling="{{z}}" bindscrolltolower="{{A}}"><view class="mabx"><block wx:for="{{v}}" wx:for-item="item" wx:key="I"><block wx:if="{{w}}"><view class="itec" bindtap="{{item.l}}"><view class="contenbx1"><view><text style="color:#90A0AF" catchtap="{{item.a}}">订单编号:</text>{{item.b}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">配送数:</text>{{item.c}}</view><view><text style="color:#90A0AF">已扫码数:</text>{{item.d}}</view></view><view wx:if="{{item.e}}" class="xialaxz"><view wx:for="{{item.f}}" wx:for-item="ite"><view>包条码:{{ite.a}}</view><view>货物品类:{{ite.b}}</view><view>扫描状态:{{ite.c}}</view></view></view><view wx:if="{{item.g}}" class="{{item.i}}">{{item.h}}</view><block wx:if="{{item.j}}"><view class="abnormalStyleContainer"><view class="abnormalStyle">{{item.k}}</view></view></block></view></block><block wx:elif="{{x}}"><view class="itec" bindtap="{{item.w}}"><view class="contenbx1"><view><text style="color:#90A0AF" catchtap="{{item.m}}">订单编号:</text>{{item.n}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF" catchtap="{{item.o}}">产品名称:</text>{{item.p}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">计划数量:</text>{{item.q}}</view><view><text style="color:#90A0AF">装车数量:</text>{{item.r}}</view></view><view wx:if="{{item.s}}" class="{{item.v}}">{{item.t}}</view></view></block><block wx:elif="{{y}}"><view class="itec" bindtap="{{item.H}}"><view class="contenbx1"><view><text style="color:#90A0AF">SKU:</text>{{item.x}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">物品:</text>{{item.y}}</view><view><text style="color:#90A0AF">规格:</text>{{item.z}}</view></view><view class="contenbx1"><block wx:if="{{item.A}}"><view><text style="color:#90A0AF">备货状态:</text>{{item.B}}</view></block><block wx:else><view><text style="color:#90A0AF">二维码:</text>{{item.C}}</view></block><view><text style="color:#90A0AF">单位:</text>{{item.D}}</view></view><view wx:if="{{item.E}}" class="{{item.G}}">{{item.F}}</view></view></block></block></view></scroll-view><tiplist class="r" u-r="tiplists" u-i="e3e6ac36-2" bind:__l="__l"></tiplist><saomiao2 u-i="e3e6ac36-3" bind:__l="__l"></saomiao2> |
@ -1 +1 @@
|
||||
.hdtp{padding:34rpx 32rpx;box-sizing:border-box;background-color:#fff;display:flex;flex-direction:column;align-items:center}.hdtp>view{width:100%;display:flex;align-items:center;justify-content:space-between;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:24rpx}.hdtp>view:nth-last-child(1){margin-bottom:0}.hdtp>view>view{flex:1}.scve{width:100%;height:56vh;margin-top:20rpx}.scve .mabx{display:flex;flex-direction:column;align-items:center}.scve .mabx>.itec{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:36rpx 24rpx;box-sizing:border-box;position:relative;margin-bottom:20rpx}.scve .mabx>.itec:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1{display:flex;align-items:center;justify-content:space-between;font-size:28rpx;color:#092c4d;margin-bottom:20rpx}.scve .mabx>.itec>.contenbx1:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1>view{flex:1}.scve .mabx>.itec .tip{position:absolute;right:0;top:0;width:96rpx;height:48rpx;border-radius:0 8rpx;display:flex;align-items:center;justify-content:center;font-size:24rpx}.scve .mabx>.itec .tp1{background-color:rgba(0,134,241,.125);color:#0086f1}.scve .mabx>.itec .tp2{background-color:rgba(248,84,75,.125);color:#f8544b}.scve .mabx>.itec .tp3{background-color:rgba(250,140,22,.125);color:#fa8c16}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff}.hdtpnum{display:flex;align-items:center;justify-content:space-around;background-color:#fff;padding:28rpx 0;border-bottom:3rpx solid #EEEEEE}.hdtpnum>view{display:flex;align-items:center;flex-direction:column;font-size:28rpx;font-weight:400;color:#092c4d}.hdtpnum>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hdtpnum>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hdtpnum>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hdtpnum>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hdtpnum>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx} |
||||
.xialaxz{display:flex;flex-direction:column}.xialaxz>view{display:flex;align-items:flex-start;justify-content:space-between;border-top:1rpx solid #00000010;padding:20rpx 0;box-sizing:border-box;font-size:28rpx;color:#092c4d}.xialaxz>view>view{word-wrap:break-word;word-break:break-all;margin-right:10rpx}.xialaxz>view>view:nth-last-child(1){margin-right:0rpx}.butlur{width:200rpx!important;height:64rpx!important;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff}.tabtip{display:flex;align-items:center;justify-content:space-between}.tabtip>view{width:50%;display:flex;align-items:center;justify-content:center;background-color:#fff;font-size:32rpx;font-weight:400;color:#90a0af}.tabtip>view>view{height:80rpx;border-bottom:8rpx solid #ffffff;display:flex;align-items:center;justify-content:center}.tabtip .xz{color:#d3832a;border-bottom:8rpx solid #D3832A}.hdtp{padding:34rpx 32rpx;box-sizing:border-box;background-color:#fff;display:flex;flex-direction:column;align-items:center}.hdtp>view{width:100%;display:flex;align-items:center;justify-content:space-between;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:24rpx}.hdtp>view:nth-last-child(1){margin-bottom:0}.hdtp>view>view{width:50%}.scve{width:100%;height:50vh;margin-top:20rpx}.scve .mabx{display:flex;flex-direction:column;align-items:center}.scve .mabx>.itec{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:36rpx 24rpx;box-sizing:border-box;position:relative;margin-bottom:20rpx;overflow:hidden}.scve .mabx>.itec:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1{display:flex;align-items:center;justify-content:space-between;font-size:28rpx;color:#092c4d;margin-bottom:20rpx}.scve .mabx>.itec>.contenbx1:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1>view{flex:1}.scve .mabx>.itec .tip{position:absolute;right:0;top:0;width:96rpx;height:48rpx;border-radius:0 8rpx;display:flex;align-items:center;justify-content:center;font-size:24rpx}.scve .mabx>.itec .tp1{background-color:rgba(0,134,241,.125);color:#0086f1}.scve .mabx>.itec .tp2{background-color:rgba(248,84,75,.125);color:#f8544b}.scve .mabx>.itec .tp3{background-color:rgba(250,140,22,.125);color:#fa8c16}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .inputs>input{flex:1;font-size:24rpx;color:#092c4d}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff}.hdtpnum{display:flex;align-items:center;justify-content:space-around;background-color:#fff;padding:28rpx 0;border-bottom:3rpx solid #EEEEEE}.hdtpnum>view{display:flex;align-items:center;flex-direction:column;font-size:28rpx;font-weight:400;color:#092c4d}.hdtpnum>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hdtpnum>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hdtpnum>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hdtpnum>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hdtpnum>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx}.abnormalStyleContainer{top:-20rpx;left:-20rpx;position:absolute;padding:10rpx;border:1rpx solid #f8544b;border-radius:50%}.abnormalStyle{font-size:28rpx;height:80rpx;width:80rpx;display:flex;align-items:center;text-align:center;color:#f8544b;padding:10rpx;border-radius:50%;border:1rpx solid #f8544b;opacity:.6} |
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="aed605e0-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hedtopt"><view class="typto"><view>配车类型:{{b}}</view><view>配车状态:{{c}}</view></view><view class="typto"><view>车牌号:{{d}}</view><view>司机:{{e}}</view></view><view class="typto"><view>装卸班组:{{f}}</view><view>备货是否完成:{{g}}</view></view><view class="kehupeison"><view><view>配送客户数</view><view>{{h}}</view></view><view><view>订单总数</view><view>{{i}}</view></view><view><view>配送件数</view><view>{{j}}</view></view><view><view>签收件数</view><view>{{k}}</view></view></view></view><scroll-view scroll-y="true" class="scvbx"><view class="mabx"><view wx:for="{{l}}" wx:for-item="item" class="its" bindtap="{{item.g}}"><view class="title"><view>客户:{{item.a}}</view><view class="statetype">{{item.b}}</view></view><view class="conxb"><view><view>订单总数</view><view>{{item.c}}</view></view><view><view>配送件数</view><view>{{item.d}}</view></view><view><view>扫描件数</view><view>{{item.e}}</view></view></view><view class="tbck"><view><view>定位打卡</view><view catchtap="{{item.f}}">签到扫描</view><view>上传签收图片</view></view><view> 批量签收 </view></view></view></view></scroll-view> |
||||
<u-navbar wx:if="{{a}}" u-i="27710085-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hedtopt"><view class="typto"><view>配车类型:{{b}}</view><view>配车状态:{{c}}</view></view><view class="typto"><view>车牌号:{{d}}</view><view>司机:{{e}}</view></view><view class="typto"><view>装卸班组:{{f}}</view><view>备货是否完成:{{g}}</view></view><view class="kehupeison"><view><view>配送客户数</view><view>{{h}}</view></view><view><view>订单总数</view><view>{{i}}</view></view><view><view>计划件数</view><view>{{j}}</view></view><view><view>装车数量</view><view>{{k}}</view></view><view><view>签收件数</view><view>{{l}}</view></view></view></view><scroll-view scroll-y="true" class="scvbx"><view class="mabx"><view wx:for="{{m}}" wx:for-item="item" class="its"><view class="title"><view style="{{item.c}}">客户:{{item.a}} {{item.b}}</view><view class="statetype">{{item.d}}</view></view><view class="conxb"><view><view>订单总数</view><view>{{item.e}}</view></view><view><view>配送件数</view><view>{{item.f}}</view></view><view><view>扫描件数</view><view>{{item.g}}</view></view></view><view class="remarks"> 备注:{{item.h}}</view><view class="tbck"><view class="buts"><view class="{{item.j}}" bindtap="{{item.k}}">{{item.i}}</view><view bindtap="{{item.l}}">签到扫描</view><view bindtap="{{item.m}}">上传签收图片</view></view><view bindtap="{{item.n}}" class="mabut"> 设置增值服务 </view><view wx:if="{{item.o}}" class="mabut" bindtap="{{item.p}}"> 批量签收 </view></view></view></view></scroll-view><tiplist class="r" u-r="tiplists" u-i="27710085-1" bind:__l="__l"></tiplist> |
@ -1 +1 @@
|
||||
.scvbx{width:100%;height:60vh;margin-top:20rpx}.scvbx .mabx{display:flex;flex-direction:column;align-items:center}.scvbx .mabx>.its{width:686rpx;display:flex;flex-direction:column;margin-bottom:20rpx;background:#FFFFFF;border-radius:8rpx}.scvbx .mabx>.its:nth-last-child(1){margin-bottom:0}.scvbx .mabx>.its>.title{width:100%;display:flex;align-items:center;justify-content:space-between;padding:34rpx 24rpx;box-sizing:border-box;border-bottom:3rpx solid #EEEEEE}.scvbx .mabx>.its>.title>view:nth-of-type(1){font-size:32rpx;color:#092c4d}.scvbx .mabx>.its>.title>view:nth-of-type(2){font-size:32rpx;color:#fa8c16}.scvbx .mabx>.its>.conxb{display:flex;align-items:center;justify-content:space-around;padding:38rpx 0;border-bottom:3rpx solid #EEEEEE;box-sizing:border-box}.scvbx .mabx>.its>.conxb>view{display:flex;flex-direction:column;align-items:center;justify-content:center}.scvbx .mabx>.its>.conxb>view:nth-of-type(1)>view:nth-of-type(2){color:#0086f1}.scvbx .mabx>.its>.conxb>view:nth-of-type(2)>view:nth-of-type(2){color:#3ad8bc}.scvbx .mabx>.its>.conxb>view:nth-of-type(3)>view:nth-of-type(2){color:#fa8c16}.scvbx .mabx>.its>.conxb>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;margin-top:20rpx}.scvbx .mabx>.its .tbck{display:flex;flex-direction:column;padding:20rpx}.scvbx .mabx>.its .tbck>view:nth-of-type(1){display:flex;align-items:center;justify-content:space-between;width:646rpx;margin:auto;margin-bottom:20rpx}.scvbx .mabx>.its .tbck>view:nth-of-type(1)>view{box-sizing:border-box}.scvbx .mabx>.its .tbck>view:nth-of-type(1)>view:nth-of-type(1){width:210rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #0086F1;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#0086f1}.scvbx .mabx>.its .tbck>view:nth-of-type(1)>view:nth-of-type(2){width:210rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#d3832a}.scvbx .mabx>.its .tbck>view:nth-of-type(1)>view:nth-of-type(3){width:210rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#d3832a}.scvbx .mabx>.its .tbck>view:nth-of-type(2){width:646rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#d3832a;margin:auto;box-sizing:border-box}.hedtopt{display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:36rpx 32rpx;box-sizing:border-box}.hedtopt .typto{display:flex;align-items:center;justify-content:space-between;width:100%;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:20rpx}.hedtopt .typto:nth-last-child(1){margin-bottom:0}.hedtopt .typto>view{flex:1}.hedtopt .kehupeison{width:100%;display:flex;align-items:center;justify-content:space-around;margin-top:20rpx}.hedtopt .kehupeison>view{display:flex;flex-direction:column;align-items:center;font-size:28rpx;font-weight:400;color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hedtopt .kehupeison>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hedtopt .kehupeison>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hedtopt .kehupeison>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx} |
||||
.scvbx{width:100%;height:60vh;margin-top:20rpx}.scvbx .mabx{display:flex;flex-direction:column;align-items:center}.scvbx .mabx>.its{width:686rpx;display:flex;flex-direction:column;margin-bottom:20rpx;background:#FFFFFF;border-radius:8rpx}.scvbx .mabx>.its:nth-last-child(1){margin-bottom:0}.scvbx .mabx>.its>.title{width:100%;display:flex;align-items:center;justify-content:space-between;padding:34rpx 24rpx;box-sizing:border-box;border-bottom:3rpx solid #EEEEEE}.scvbx .mabx>.its>.title>view:nth-of-type(1){font-size:32rpx;color:#092c4d}.scvbx .mabx>.its>.title>view:nth-of-type(2){font-size:32rpx;color:#fa8c16}.scvbx .mabx>.its>.remarks{color:#747474;font-size:28rpx;padding:20rpx 25rpx;box-sizing:border-box;border-bottom:3rpx solid #EEEEEE}.scvbx .mabx>.its>.conxb{display:flex;align-items:center;justify-content:space-around;padding:38rpx 0;border-bottom:3rpx solid #EEEEEE;box-sizing:border-box}.scvbx .mabx>.its>.conxb>view{display:flex;flex-direction:column;align-items:center;justify-content:center}.scvbx .mabx>.its>.conxb>view:nth-of-type(1)>view:nth-of-type(2){color:#0086f1}.scvbx .mabx>.its>.conxb>view:nth-of-type(2)>view:nth-of-type(2){color:#3ad8bc}.scvbx .mabx>.its>.conxb>view:nth-of-type(3)>view:nth-of-type(2){color:#fa8c16}.scvbx .mabx>.its>.conxb>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;margin-top:20rpx}.scvbx .mabx>.its .ydk{color:#9f9f9f!important;border-color:#9f9f9f!important}.scvbx .mabx>.its .tbck{display:flex;flex-direction:column;padding:20rpx}.scvbx .mabx>.its .tbck>.buts{display:flex;align-items:center;justify-content:space-between;width:646rpx;margin:auto;margin-bottom:20rpx}.scvbx .mabx>.its .tbck>.buts>view{box-sizing:border-box}.scvbx .mabx>.its .tbck>.buts>view:nth-of-type(1){width:210rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #0086F1;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#0086f1}.scvbx .mabx>.its .tbck>.buts>view:nth-of-type(2){width:210rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#d3832a}.scvbx .mabx>.its .tbck>.buts>view:nth-of-type(3){width:210rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#d3832a}.scvbx .mabx>.its .tbck>.mabut{width:646rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:28rpx;color:#d3832a;margin:auto;box-sizing:border-box;margin-bottom:20rpx}.scvbx .mabx>.its .tbck>.mabut:nth-last-child(1){margin-bottom:0rpx}.hedtopt{display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:36rpx 32rpx;box-sizing:border-box}.hedtopt .typto{display:flex;align-items:center;justify-content:space-between;width:100%;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:20rpx}.hedtopt .typto:nth-last-child(1){margin-bottom:0}.hedtopt .typto>view{flex:1}.hedtopt .kehupeison{width:100%;display:flex;align-items:center;justify-content:space-around;margin-top:20rpx}.hedtopt .kehupeison>view{display:flex;flex-direction:column;align-items:center;font-size:28rpx;font-weight:400;color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hedtopt .kehupeison>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hedtopt .kehupeison>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hedtopt .kehupeison>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx} |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../../../common/vendor.js"),t=require("../../../api/user.js");if(require("../../../utils/request.js"),require("../../../store/index.js"),require("../../../utils/functions.js"),require("../../../utils/IDCardVerification.js"),require("../../../config/host.js"),require("../../../utils/base64.js"),require("../../../utils/md5.js"),!Array){e.resolveComponent("u-navbar")()}Math;const r=e.defineComponent({__name:"DeliveryCustomerScan",setup(r){let i=e.reactive({id:"",datalist:[]});e.onLoad((e=>{i.id=e.id,async function(){let e={id:i.id},r=await t.deliverycustom(e);i.datalist=r.data.records}()}));const{datalist:s}=e.toRefs(i);return(t,r)=>({a:e.p({title:"配送客户扫描",placeholder:!0,border:"true",autoBack:!0,leftIconSize:"35"}),b:e.f(e.unref(s),((t,r,i)=>({a:e.t(t.consignee),b:e.t(t.isstock),c:e.t(t.isload),d:e.t(t.ordNub),e:e.o((r=>function(t){e.index.navigateTo({url:"/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item="+JSON.stringify(t)})}(t))),f:e.t(t.reservationNum),g:e.t(t.loadingNub)}))),c:e.o((()=>{}))})}});wx.createPage(r); |
||||
"use strict";const e=require("../../../common/vendor.js"),t=require("../../../api/user.js");if(require("../../../utils/request.js"),require("../../../store/index.js"),require("../../../utils/functions.js"),require("../../../utils/IDCardVerification.js"),require("../../../utils/base64.js"),require("../../../config/host.js"),require("../../../utils/md5.js"),!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("tiplist")+e.resolveComponent("saomiao2")+e.resolveComponent("tips"))()}Math;const i=e.defineComponent({__name:"DeliveryCustomerScan",setup(i){let o=e.reactive({id:"",datalist:[],items:{},scancode:"",authbuts:e.index.getStorageSync("authbuts")});const s=e.ref(null),n=e.ref(null);e.onLoad((e=>{o.id=e.id,o.items=JSON.parse(e.item)})),e.onHide((()=>{e.index.$off("scancodedate"),console.log("uni",e.index)})),e.onShow((()=>{u(),e.index.$on("scancodedate",(function(i){i&&(console.log(i),o.scancode=i,async function(){let i=e.index.getStorageSync("checkvehicle").id,s={deliveryId:o.id,loadingId:i,type:1,barcode:o.scancode},n=await t.deliveryloadingscan(s);console.log(n),n.code}())}))})),e.onPullDownRefresh((()=>{const t=setTimeout((()=>{u(),e.index.stopPullDownRefresh(),clearTimeout(t)}),500)}));const r=e.computed((()=>{let e=0;return o.datalist.map((t=>{e+=Number(t.ordNub)})),e})),a=e.computed((()=>{let e=0;return o.datalist.map((t=>{e+=Number(t.reservationNum)})),e})),l=e.computed((()=>{let e=0;return o.datalist.map((t=>{e+=Number(t.loadingNub)})),e}));async function u(){let e={id:o.id},i=await t.deliverycustom(e);console.log("response",i),o.datalist=i.data.records}const{authbuts:c,items:d,datalist:f}=e.toRefs(o);return(i,u)=>({a:e.p({title:"配送客户扫描",bgColor:"#D3832A",leftIconColor:"#ffffff",titleStyle:"color:#ffffff",placeholder:!0,autoBack:!0,leftIconSize:"35"}),b:e.t(e.unref(d).type_name),c:e.t(e.unref(d).vehicleStatus_name),d:e.t(e.unref(d).vehicleName),e:e.t(e.unref(d).driverName),f:e.t(e.unref(d).loadingTeamName),g:e.t(e.unref(d).isstock),h:e.t(e.unref(d).customersNumber),i:e.t(e.unref(r)),j:e.t(e.unref(a)),k:e.t(e.unref(l)),l:e.f(e.unref(f),((i,n,r)=>e.e({a:e.t(i.consignee),b:e.t(i.isstock),c:e.t(i.isload),d:e.t(i.stockupArea||"无备货区"),e:e.t(i.ordNub),f:e.o((t=>function(t){e.index.navigateTo({url:"/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item="+JSON.stringify(t)+"&id="+o.id})}(i))),g:e.t(i.reservationNum),h:e.t(i.loadingNub),i:e.t(i.trayNum),j:e.o((t=>function(t){e.index.navigateTo({url:"/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item="+JSON.stringify(t)+"&id="+o.id})}(i))),k:-1!=e.unref(c).indexOf("一键装车")&&"是"!=i.isload},-1!=e.unref(c).indexOf("一键装车")&&"是"!=i.isload?{l:e.o((n=>async function(i){s.value.setdetails({title:"提示",content:"确认一键装车?",confirmTxt:"确认",isshow:!0,isshowcancel:!0,success:async()=>{let n=e.index.getStorageSync("checkvehicle").id,r={reservationId:i.id,loadingId:n,deliveryId:o.id};(await t.deliveryoneloading(r)).code,s.value.setisshow(!1)},cancel:()=>{s.value.setisshow(!1)},close:()=>{s.value.setisshow(!1)}})}(i)))}:{}))),m:e.sr(n,"e863c5f6-1",{k:"tiplists"}),n:e.sr(s,"e863c5f6-3",{k:"tip"})})}});wx.createPage(i); |
||||
|
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="69b5a390-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hedtopt"><view class="typto"><view>配车类型:商配</view><view>配车状态:装车中</view></view><view class="typto"><view>车牌号:川A88888</view><view>司机:张琪、罗翔</view></view><view class="typto"><view>装卸班组:A班组</view><view>备货是否完成:是</view></view><view class="kehupeison"><view><view>配送客户数</view><view>15</view></view><view><view>订单总数</view><view>15</view></view><view><view>计划件数</view><view>15</view></view><view><view>装车件数</view><view>15</view></view></view></view><scroll-view class="scoolv" scroll-y="true"><view class="minbx"><view wx:for="{{b}}" wx:for-item="item" class="its"><view class="titl"> 客户:{{item.a}}</view><view class="contsx"><view><view><text style="color:#90A0AF">备货是否完成:</text>{{item.b}}</view><view><text style="color:#90A0AF">装车是否完成:</text>{{item.c}}</view></view><view><view bindtap="{{item.e}}"><view>订单总数</view><view>{{item.d}}</view></view><view bindtap="{{c}}"><view>计划件数</view><view>{{item.f}}</view></view><view><view>装车件数</view><view>{{item.g}}</view></view></view></view><view class="bts"><view>一键装车</view></view></view></view></scroll-view> |
||||
<u-navbar wx:if="{{a}}" u-i="e863c5f6-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hedtopt"><view class="typto"><view>配车类型:{{b}}</view><view>配车状态:{{c}}</view></view><view class="typto"><view>车牌号:{{d}}</view><view>司机:{{e}}</view></view><view class="typto"><view>装卸班组:{{f}}</view><view>备货是否完成:{{g}}</view></view><view class="kehupeison"><view><view>配送客户数</view><view>{{h}}</view></view><view><view>订单总数</view><view>{{i}}</view></view><view><view>计划件数</view><view>{{j}}</view></view><view><view>装车件数</view><view>{{k}}</view></view></view></view><scroll-view class="scoolv" scroll-y="true"><view class="minbx"><view wx:for="{{l}}" wx:for-item="item" class="its"><view class="titl"> 客户:{{item.a}}</view><view class="contsx"><view class="tps"><view><text style="color:#90A0AF">备货是否完成:</text>{{item.b}}</view><view><text style="color:#90A0AF">装车是否完成:</text>{{item.c}}</view></view><view class="tps"><view><text style="color:#90A0AF">备货区:</text>{{item.d}}</view></view><view class="numbx"><view bindtap="{{item.f}}"><view>订单总数</view><view class="golink">{{item.e}}</view></view><view><view>计划件数</view><view>{{item.g}}</view></view><view><view>装车件数</view><view>{{item.h}}</view></view><view bindtap="{{item.j}}"><view>托盘个数</view><view class="golink">{{item.i}}</view></view></view></view><view wx:if="{{item.k}}" class="bts"><view bindtap="{{item.l}}">一键装车</view></view></view></view></scroll-view><tiplist class="r" u-r="tiplists" u-i="e863c5f6-1" bind:__l="__l"></tiplist><saomiao2 u-i="e863c5f6-2" bind:__l="__l"></saomiao2><tips class="r" u-r="tip" u-i="e863c5f6-3" bind:__l="__l"></tips> |
@ -1 +1 @@
|
||||
.scoolv{width:100%;height:60vh;margin-top:20rpx}.scoolv .minbx{display:flex;flex-direction:column;align-items:center}.scoolv .minbx>.its{display:flex;flex-direction:column;align-items:center;width:686rpx;background:#FFFFFF;border-radius:8rpx;box-sizing:border-box;margin-bottom:20rpx}.scoolv .minbx>.its:nth-last-child(1){margin-bottom:0}.scoolv .minbx>.its .titl{width:100%;font-size:32rpx;font-weight:400;color:#092c4d;border-bottom:3rpx solid #EEEEEE;padding:26rpx 24rpx;box-sizing:border-box}.scoolv .minbx>.its .bts{display:flex;align-items:center;justify-content:center;padding:20rpx 0}.scoolv .minbx>.its .bts>view{width:204rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;font-size:28rpx;color:#d3832a;display:flex;align-items:center;justify-content:center}.scoolv .minbx>.its .contsx{width:100%;display:flex;flex-direction:column;padding:34rpx 24rpx;box-sizing:border-box;border-bottom:3rpx solid #EEEEEE}.scoolv .minbx>.its .contsx>view:nth-of-type(1){width:100%;display:flex;align-items:center;justify-content:space-between;font-size:28rpx;color:#092c4d}.scoolv .minbx>.its .contsx>view:nth-of-type(1)>view{flex:1}.scoolv .minbx>.its .contsx>view:nth-of-type(2){width:100%;display:flex;align-items:center;justify-content:space-around;margin-top:44rpx}.scoolv .minbx>.its .contsx>view:nth-of-type(2)>view{display:flex;flex-direction:column;align-items:center;font-size:28rpx;color:#092c4d}.scoolv .minbx>.its .contsx>view:nth-of-type(2)>view:nth-of-type(1)>view:nth-of-type(2){color:#0086f1}.scoolv .minbx>.its .contsx>view:nth-of-type(2)>view:nth-of-type(2)>view:nth-of-type(2){color:#3ad8bc}.scoolv .minbx>.its .contsx>view:nth-of-type(2)>view:nth-of-type(3)>view:nth-of-type(2){color:#fa8c16}.scoolv .minbx>.its .contsx>view:nth-of-type(2)>view>view:nth-of-type(2){font-size:36rpx;color:#0086f1;margin-top:20rpx}.hedtopt{display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:36rpx 32rpx;box-sizing:border-box}.hedtopt .typto{display:flex;align-items:center;justify-content:space-between;width:100%;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:20rpx}.hedtopt .typto:nth-last-child(1){margin-bottom:0}.hedtopt .typto>view{flex:1}.hedtopt .kehupeison{width:100%;display:flex;align-items:center;justify-content:space-around;margin-top:20rpx}.hedtopt .kehupeison>view{display:flex;flex-direction:column;align-items:center;font-size:28rpx;font-weight:400;color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hedtopt .kehupeison>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hedtopt .kehupeison>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hedtopt .kehupeison>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx} |
||||
.scoolv{width:100%;height:60vh;margin-top:20rpx}.scoolv .minbx{display:flex;flex-direction:column;align-items:center}.scoolv .minbx>.its{display:flex;flex-direction:column;align-items:center;width:686rpx;background:#FFFFFF;border-radius:8rpx;box-sizing:border-box;margin-bottom:20rpx}.scoolv .minbx>.its:nth-last-child(1){margin-bottom:0}.scoolv .minbx>.its .titl{width:100%;font-size:32rpx;font-weight:400;color:#092c4d;border-bottom:3rpx solid #EEEEEE;padding:26rpx 24rpx;box-sizing:border-box}.scoolv .minbx>.its .bts{display:flex;align-items:center;justify-content:center;padding:20rpx 0}.scoolv .minbx>.its .bts>view{width:204rpx;height:64rpx;background:#FFFFFF;border-radius:8rpx;opacity:1;border:2rpx solid #D3832A;font-size:28rpx;color:#d3832a;display:flex;align-items:center;justify-content:center}.scoolv .minbx>.its .contsx{width:100%;display:flex;flex-direction:column;padding:34rpx 24rpx;box-sizing:border-box;border-bottom:3rpx solid #EEEEEE}.scoolv .minbx>.its .contsx>.tps{width:100%;display:flex;align-items:center;justify-content:space-between;font-size:28rpx;color:#092c4d;margin-bottom:20rpx}.scoolv .minbx>.its .contsx>.tps>view{flex:1}.scoolv .minbx>.its .contsx>.numbx{width:100%;display:flex;align-items:center;justify-content:space-around;margin-top:44rpx}.scoolv .minbx>.its .contsx>.numbx>view{display:flex;flex-direction:column;align-items:center;font-size:28rpx;color:#092c4d}.scoolv .minbx>.its .contsx>.numbx>view:nth-of-type(1)>view:nth-of-type(2){color:#0086f1}.scoolv .minbx>.its .contsx>.numbx>view:nth-of-type(2)>view:nth-of-type(2){color:#3ad8bc}.scoolv .minbx>.its .contsx>.numbx>view:nth-of-type(3)>view:nth-of-type(2){color:#fa8c16}.scoolv .minbx>.its .contsx>.numbx>view>view:nth-of-type(2){font-size:36rpx;color:#0086f1;margin-top:20rpx}.hedtopt{display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:36rpx 32rpx;box-sizing:border-box}.hedtopt .typto{display:flex;align-items:center;justify-content:space-between;width:100%;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:20rpx}.hedtopt .typto:nth-last-child(1){margin-bottom:0}.hedtopt .typto>view{flex:1}.hedtopt .kehupeison{width:100%;display:flex;align-items:center;justify-content:space-around;margin-top:20rpx}.hedtopt .kehupeison>view{display:flex;flex-direction:column;align-items:center;font-size:28rpx;font-weight:400;color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hedtopt .kehupeison>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hedtopt .kehupeison>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hedtopt .kehupeison>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hedtopt .kehupeison>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx} |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../../../common/vendor.js"),r={};if(!Array){e.resolveComponent("u-navbar")()}Math;const t=e._export_sfc(r,[["render",function(r,t){return{a:e.p({title:"下架扫描",placeholder:!0,border:"true",autoBack:!0,leftIconSize:"35"})}}]]);wx.createPage(t); |
||||
"use strict";const e=require("../../../common/vendor.js"),o={};if(!Array){e.resolveComponent("u-navbar")()}Math;const r=e._export_sfc(o,[["render",function(o,r){return{a:e.p({title:"下架扫描",bgColor:"#D3832A",leftIconColor:"#ffffff",titleStyle:"color:#ffffff",placeholder:!0,autoBack:!0,leftIconSize:"35"})}}]]);wx.createPage(r); |
||||
|
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="44316490-0" bind:__l="__l" u-p="{{a}}"></u-navbar> |
||||
<u-navbar wx:if="{{a}}" u-i="6d8ead05-0" bind:__l="__l" u-p="{{a}}"></u-navbar> |
@ -1 +1 @@
|
||||
"use strict";const e=require("../../../common/vendor.js"),n=require("../../../api/user.js");if(require("../../../utils/request.js"),require("../../../store/index.js"),require("../../../utils/functions.js"),require("../../../utils/IDCardVerification.js"),require("../../../config/host.js"),require("../../../utils/base64.js"),require("../../../utils/md5.js"),!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("uni-th")+e.resolveComponent("uni-tr")+e.resolveComponent("uni-td")+e.resolveComponent("uni-table"))()}Math||((()=>"../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js")+(()=>"../../../uni_modules/uni-table/components/uni-th/uni-th.js")+(()=>"../../../uni_modules/uni-table/components/uni-tr/uni-tr.js")+(()=>"../../../uni_modules/uni-table/components/uni-td/uni-td.js")+(()=>"../../../uni_modules/uni-table/components/uni-table/uni-table.js")+t)();const t=()=>"../../../compoment/cus-selects-fan/cus-selects-fan.js",r=e.defineComponent({__name:"LoadingDetails",setup(t){let r=e.reactive({schanvalue:"",typearr:[{value:1,label:"齐套"},{value:2,label:"部分扫"},{value:3,label:"未扫"}],dataList:[],id:"",items:null,current:1,size:10});function u(e){""==e&&(r.schanvalue=""),r.typearr.map((n=>{n.value==e&&(r.schanvalue=n.label,console.log(r.schanvalue))}))}e.onLoad((e=>{r.items=JSON.parse(e.item),r.id=JSON.parse(e.item).id,async function(){let e={current:r.current,size:r.size,id:r.id},t=await n.deliverywrap(e);r.dataList=t.data.records}()}));const{schanvalue:i,typearr:a,dataList:l,items:s}=e.toRefs(r);return(n,t)=>{var r,o,d;return{a:e.p({title:"配车明细列表",placeholder:!0,border:"true",autoBack:!0,leftIconSize:"35"}),b:e.t(null==(r=e.unref(s))?void 0:r.vehicleStatus_name),c:e.t(null==(o=e.unref(s))?void 0:o.vehicleName),d:e.t(null==(d=e.unref(s))?void 0:d.driverName),e:e.p({width:"50",align:"center"}),f:e.p({width:"70",align:"center"}),g:e.p({width:"70",align:"center"}),h:e.p({width:"70",align:"center"}),i:e.f([1,2],((n,t,r)=>{var u,i,a,l,o,d;return{a:e.t(1==n?"计划":"完成"),b:"521be830-8-"+r+",521be830-7-"+r,c:e.t(1==n?null==(u=e.unref(s))?void 0:u.customersNumber:null==(i=e.unref(s))?void 0:i.loadCusNub),d:"521be830-9-"+r+",521be830-7-"+r,e:e.t(1==n?null==(a=e.unref(s))?void 0:a.orderNumber:null==(l=e.unref(s))?void 0:l.loadOrdNub),f:"521be830-10-"+r+",521be830-7-"+r,g:e.t(1==n?null==(o=e.unref(s))?void 0:o.deliveryNumber:null==(d=e.unref(s))?void 0:d.scannedNumber),h:"521be830-11-"+r+",521be830-7-"+r,i:"521be830-7-"+r+",521be830-1"}})),j:e.p({align:"center"}),k:e.p({align:"center"}),l:e.p({align:"center"}),m:e.p({align:"center"}),n:e.p({loading:!1,emptyText:"暂无更多数据"}),o:e.o(u),p:e.p({data:e.unref(a),value:e.unref(i),placeholder:"全部",arrLeft:5,size:"145",clearable:!0}),q:e.f(e.unref(l),((n,t,r)=>({a:e.t(n.stockArticleId),b:e.t(n.orderSelfNumbering),c:e.t(n.orderStatusStr)})))}}}});wx.createPage(r); |
||||
"use strict";const e=require("../../../common/vendor.js"),t=require("../../../api/user.js");if(require("../../../utils/request.js"),require("../../../store/index.js"),require("../../../utils/functions.js"),require("../../../utils/IDCardVerification.js"),require("../../../utils/base64.js"),require("../../../config/host.js"),require("../../../utils/md5.js"),!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("uni-th")+e.resolveComponent("uni-tr")+e.resolveComponent("uni-td")+e.resolveComponent("uni-table"))()}Math||((()=>"../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js")+(()=>"../../../uni_modules/uni-table/components/uni-th/uni-th.js")+(()=>"../../../uni_modules/uni-table/components/uni-tr/uni-tr.js")+(()=>"../../../uni_modules/uni-table/components/uni-td/uni-td.js")+(()=>"../../../uni_modules/uni-table/components/uni-table/uni-table.js")+n)();const n=()=>"../../../compoment/cus-selects-fan/cus-selects-fan.js",a=e.defineComponent({__name:"LoadingDetails",setup(n){let a=e.reactive({schanvalue:"",typearr:[{value:2,label:"已扫"},{value:1,label:"未扫"}],dataList:[],id:"",items:null,current:1,size:10,orderStatus:1,scanStatus:"",orderCode:""});function r(){a.current=1,u()}async function u(){a.dataList=[];let e={current:a.current,size:a.size,id:a.id,scanStatus:a.scanStatus,orderCode:a.orderCode},n=null;1==a.orderStatus?n=await t.deliverywrap(e):2==a.orderStatus&&(n=await t.deliverywrapIn(e)),a.dataList=n.data.records}function o(e){a.orderStatus=e,r()}function s(e){""==e&&(a.schanvalue="",a.scanStatus=""),a.typearr.map((t=>{t.value==e&&(a.schanvalue=t.label,a.scanStatus=t.value,console.log(a.schanvalue))}))}e.onLoad((e=>{a.items=JSON.parse(e.item),a.id=JSON.parse(e.item).id})),e.onShow((()=>{r()}));const{orderCode:i,orderStatus:l,schanvalue:d,typearr:c,dataList:f,items:p}=e.toRefs(a);return(t,n)=>{var a,r,v;return e.e({a:e.p({title:"配车明细列表",bgColor:"#D3832A",leftIconColor:"#ffffff",titleStyle:"color:#ffffff",placeholder:!0,autoBack:!0,leftIconSize:"35"}),b:e.t(null==(a=e.unref(p))?void 0:a.vehicleStatus_name),c:e.t(null==(r=e.unref(p))?void 0:r.vehicleName),d:e.t(null==(v=e.unref(p))?void 0:v.driverName),e:e.p({width:"50",align:"center"}),f:e.p({width:"70",align:"center"}),g:e.p({width:"70",align:"center"}),h:e.p({width:"70",align:"center"}),i:e.f([1,2],((t,n,a)=>{var r,u,o,s,i,l;return{a:e.t(1==t?"计划":"完成"),b:"33af2925-8-"+a+",33af2925-7-"+a,c:e.t(1==t?null==(r=e.unref(p))?void 0:r.customersNumber:null==(u=e.unref(p))?void 0:u.loadCusNub),d:"33af2925-9-"+a+",33af2925-7-"+a,e:e.t(1==t?null==(o=e.unref(p))?void 0:o.orderNumber:null==(s=e.unref(p))?void 0:s.loadOrdNub),f:"33af2925-10-"+a+",33af2925-7-"+a,g:e.t(1==t?null==(i=e.unref(p))?void 0:i.deliveryNumber:null==(l=e.unref(p))?void 0:l.scannedNumber),h:"33af2925-11-"+a+",33af2925-7-"+a,i:"33af2925-7-"+a+",33af2925-1"}})),j:e.p({align:"center"}),k:e.p({align:"center"}),l:e.p({align:"center"}),m:e.p({align:"center"}),n:e.p({loading:!1,emptyText:"暂无更多数据"}),o:e.o(s),p:e.p({data:e.unref(c),value:e.unref(d),placeholder:"全部",arrLeft:5,size:"145",clearable:!0}),q:e.unref(i),r:e.o((t=>e.isRef(i)?i.value=t.detail.value:null)),s:e.o(u),t:e.n(1==e.unref(l)?"xz":""),v:e.o((e=>o(1))),w:e.n(2==e.unref(l)?"xz":""),x:e.o((e=>o(2))),y:1==e.unref(l)},1==e.unref(l)?{z:e.f(e.unref(f),((t,n,a)=>({a:e.t(t.orderCode),b:e.o((n=>function(t){e.index.navigateTo({url:"/pagesHome/pages/orderDetails/orderDetails?orderCode="+t.orderCode})}(t))),c:e.t(t.orderPackageCode),d:e.t(1==t.scanStatus||""==t.scanStatus||4==t.scanStatus?"未扫描":t.scanStatus?"扫描":"未扫描")})))}:{},{A:2==e.unref(l)},2==e.unref(l)?{B:e.f(e.unref(f),((t,n,a)=>({a:e.t(t.sku),b:e.t(t.coding),c:e.t(t.descriptionGoods),d:e.t(t.specification),e:e.t(t.logpmUnit),f:e.t(1==t.scanStatus||""==t.scanStatus||4==t.scanStatus?"未扫描":t.scanStatus?"扫描":"未扫描")})))}:{})}}});wx.createPage(a); |
||||
|
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="521be830-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="headtop"><view><view>配车类型:{{b}}</view></view><view><view>车牌号:{{c}}</view><view>司机:{{d}}</view></view></view><view class="tabmabx"><view><uni-table wx:if="{{n}}" u-s="{{['d']}}" u-i="521be830-1" bind:__l="__l" u-p="{{n}}"><uni-tr u-s="{{['d']}}" u-i="521be830-2,521be830-1" bind:__l="__l"><uni-th wx:if="{{e}}" u-i="521be830-3,521be830-2" bind:__l="__l" u-p="{{e}}"></uni-th><uni-th wx:if="{{f}}" u-s="{{['d']}}" u-i="521be830-4,521be830-2" bind:__l="__l" u-p="{{f}}">配送客户数</uni-th><uni-th wx:if="{{g}}" u-s="{{['d']}}" u-i="521be830-5,521be830-2" bind:__l="__l" u-p="{{g}}">订单总数</uni-th><uni-th wx:if="{{h}}" u-s="{{['d']}}" u-i="521be830-6,521be830-2" bind:__l="__l" u-p="{{h}}">装车件数</uni-th></uni-tr><uni-tr wx:for="{{i}}" wx:for-item="item" u-s="{{['d']}}" u-i="{{item.i}}" bind:__l="__l"><uni-td wx:if="{{j}}" u-s="{{['d']}}" class="jhjs" u-i="{{item.b}}" bind:__l="__l" u-p="{{j}}">{{item.a}}</uni-td><uni-td wx:if="{{k}}" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{k}}">{{item.c}}</uni-td><uni-td wx:if="{{l}}" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{l}}">{{item.e}}</uni-td><uni-td wx:if="{{m}}" u-s="{{['d']}}" u-i="{{item.h}}" bind:__l="__l" u-p="{{m}}">{{item.g}}</uni-td></uni-tr></uni-table></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{p}}" bindchange="{{o}}" u-i="521be830-12" bind:__l="__l" u-p="{{p}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号"/></view><view class="btscan">查询</view></view><scroll-view scroll-y="true" class="scrollv"><view class="mabxs"><view wx:for="{{q}}" wx:for-item="item" class="ite"><view><view>订单号:{{item.a}}</view><view>包装号:{{item.b}}</view></view><view><view>是否扫描:{{item.c}}</view></view></view></view></scroll-view> |
||||
<u-navbar wx:if="{{a}}" u-i="33af2925-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="headtop"><view><view>配车类型:{{b}}</view></view><view><view>车牌号:{{c}}</view><view>司机:{{d}}</view></view></view><view class="tabmabx"><view><uni-table wx:if="{{n}}" u-s="{{['d']}}" u-i="33af2925-1" bind:__l="__l" u-p="{{n}}"><uni-tr u-s="{{['d']}}" u-i="33af2925-2,33af2925-1" bind:__l="__l"><uni-th wx:if="{{e}}" u-i="33af2925-3,33af2925-2" bind:__l="__l" u-p="{{e}}"></uni-th><uni-th wx:if="{{f}}" u-s="{{['d']}}" u-i="33af2925-4,33af2925-2" bind:__l="__l" u-p="{{f}}">配送客户数</uni-th><uni-th wx:if="{{g}}" u-s="{{['d']}}" u-i="33af2925-5,33af2925-2" bind:__l="__l" u-p="{{g}}">订单总数</uni-th><uni-th wx:if="{{h}}" u-s="{{['d']}}" u-i="33af2925-6,33af2925-2" bind:__l="__l" u-p="{{h}}">装车件数</uni-th></uni-tr><uni-tr wx:for="{{i}}" wx:for-item="item" u-s="{{['d']}}" u-i="{{item.i}}" bind:__l="__l"><uni-td wx:if="{{j}}" u-s="{{['d']}}" class="jhjs" u-i="{{item.b}}" bind:__l="__l" u-p="{{j}}">{{item.a}}</uni-td><uni-td wx:if="{{k}}" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{k}}">{{item.c}}</uni-td><uni-td wx:if="{{l}}" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{l}}">{{item.e}}</uni-td><uni-td wx:if="{{m}}" u-s="{{['d']}}" u-i="{{item.h}}" bind:__l="__l" u-p="{{m}}">{{item.g}}</uni-td></uni-tr></uni-table></view></view><view class="scinp"><view>扫描状态</view><view><cus-selects wx:if="{{p}}" bindchange="{{o}}" u-i="33af2925-12" bind:__l="__l" u-p="{{p}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号" value="{{q}}" bindinput="{{r}}"/></view><view bindtap="{{s}}" class="btscan">查询</view></view><view class="tabtip"><view bindtap="{{v}}"><view class="{{t}}">定制品</view></view><view bindtap="{{x}}"><view class="{{w}}">库存品</view></view></view><scroll-view scroll-y="true" class="scrollv"><view class="mabxs"><block wx:if="{{y}}"><view wx:for="{{z}}" wx:for-item="item" class="ite"><view><view bindtap="{{item.b}}">订单号:{{item.a}}</view><view>包条码:{{item.c}}</view></view><view><view>是否扫描:{{item.d}}</view></view></view></block><block wx:if="{{A}}"><view wx:for="{{B}}" wx:for-item="item" class="ite"><view><view>SKU:{{item.a}}</view><view>包件号:{{item.b}}</view></view><view><view>物品:{{item.c}}</view><view>规格:{{item.d}}</view></view><view><view>单位:{{item.e}}</view><view>扫描:{{item.f}}</view></view></view></block></view></scroll-view> |
@ -1 +1 @@
|
||||
.scrollv{width:686rpx;height:48vh;background-color:#fff;margin:auto;margin-top:20rpx;padding:20rpx;box-sizing:border-box}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:5rpx}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:20rpx 15rpx 10rpx;box-sizing:border-box;border-radius:8rpx;box-shadow:0 2rpx 10rpx #e2e2e3;margin-bottom:20rpx}.scrollv .mabxs .ite>view{display:flex;align-items:flex-start;justify-content:space-between;width:100%;margin-bottom:20rpx;word-wrap:break-word;word-break:break-all}.scrollv .mabxs .ite>view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>view>view{width:50%;font-size:28rpx;font-weight:400;color:#092c4d}.tabmabx{width:100%;padding:0 32rpx 20rpx;box-sizing:border-box;background-color:#fff}.tabmabx .uni-table-th{background-color:#f8fbff;font-size:28rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td{font-size:36rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td{border-bottom:none!important;font-size:36rpx;font-weight:400;color:#0086f1}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx>view{border-radius:8rpx;border:1rpx solid #EEEEEE;padding-bottom:-2rpx}.headtop{display:flex;flex-direction:column;padding:34rpx 32rpx;box-sizing:border-box;background-color:#fff}.headtop>view{display:flex;align-items:center;justify-content:space-between;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:24rpx}.headtop>view:nth-of-type(2){margin-bottom:0}.headtop>view>view{flex:1}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
.tabtip{display:flex;align-items:center;justify-content:space-between}.tabtip>view{width:50%;display:flex;align-items:center;justify-content:center;background-color:#fff;font-size:32rpx;font-weight:400;color:#90a0af}.tabtip>view>view{height:80rpx;border-bottom:8rpx solid #ffffff;display:flex;align-items:center;justify-content:center}.tabtip .xz{color:#d3832a;border-bottom:8rpx solid #D3832A}.scrollv{width:686rpx;height:41vh;background-color:#fff;margin:auto;margin-top:20rpx;padding:20rpx;box-sizing:border-box}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:5rpx}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:20rpx 15rpx 10rpx;box-sizing:border-box;border-radius:8rpx;box-shadow:0 2rpx 10rpx #e2e2e3;margin-bottom:20rpx}.scrollv .mabxs .ite>view{display:flex;align-items:flex-start;justify-content:space-between;width:100%;margin-bottom:20rpx;word-wrap:break-word;word-break:break-all}.scrollv .mabxs .ite>view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>view>view{width:50%;font-size:28rpx;font-weight:400;color:#092c4d;margin-left:5rpx}.tabmabx{width:100%;padding:0 32rpx 20rpx;box-sizing:border-box;background-color:#fff}.tabmabx .uni-table-th{background-color:#f8fbff;font-size:28rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td{font-size:36rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td{border-bottom:none!important;font-size:36rpx;font-weight:400;color:#0086f1}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx>view{border-radius:8rpx;border:1rpx solid #EEEEEE;padding-bottom:-2rpx}.headtop{display:flex;flex-direction:column;padding:34rpx 32rpx;box-sizing:border-box;background-color:#fff}.headtop>view{display:flex;align-items:center;justify-content:space-between;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:24rpx}.headtop>view:nth-of-type(2){margin-bottom:0}.headtop>view>view{flex:1}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .inputs>input{flex:1;font-size:24rpx;color:#092c4d}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="20682624-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="schbox"><view>配车日期:</view><view catchtap="{{i}}" class="inputsr"><input value="{{b}}" disabled placeholder="请选择时间"/><view catchtap="{{h}}"><u-icon wx:if="{{c}}" catchclick="{{d}}" style="margin-right:10rpx" u-i="20682624-1" bind:__l="__l" u-p="{{e}}"></u-icon><u-icon wx:else catchclick="{{f}}" style="margin-right:10rpx" u-i="20682624-2" bind:__l="__l" u-p="{{g||''}}"></u-icon></view></view><view> 查询 </view></view><scroll-view scroll-y="true" class="scvbx"><view class="mabxslist"><view wx:for="{{j}}" wx:for-item="item" class="item"><view class="headtop"><view class="type1s"><view><text style="color:#90A0AF">配车类型:</text>{{item.a}}</view><view><text style="color:#90A0AF">配车状态:</text>{{item.b}}</view></view><view class="type1s"><view><text style="color:#90A0AF">车牌号:</text>{{item.c}}</view><view><text style="color:#90A0AF">司机:</text>{{item.d}}</view></view><view class="type1s"><view><text style="color:#90A0AF">装御班组:</text>{{item.e}}</view><view class="bhcolor"><text style="color:#90A0AF">备货是否完成:</text>{{item.f}}</view></view><view class="type1s"><view><text style="color:#90A0AF">制单时间:</text>{{item.g}}</view></view><view class="type1s"><view><text style="color:#90A0AF">任务时间:</text>{{item.h}}</view></view><view class="type1s" bindtap="{{item.j}}"><view class="bhcolor"><text style="color:#90A0AF">车次号:</text><text style="text-decoration:underline">{{item.i}}</text></view></view><view class="liebs"><view><view>配送客户数</view><view>{{item.k}}</view></view><view><view>订单总数</view><view>{{item.l}}</view></view><view><view>计划件数</view><view>{{item.m}}</view></view><view><view>装车件数</view><view>{{item.n}}</view></view></view></view><view class="buts"><view bindtap="{{k}}">发车</view><view bindtap="{{item.o}}">装车扫描</view></view></view></view></scroll-view><l-calendar wx:if="{{o}}" bindhide="{{l}}" bindchange="{{m}}" u-i="20682624-3" bind:__l="__l" bindupdateValue="{{n}}" u-p="{{o}}"></l-calendar> |
||||
<u-navbar wx:if="{{a}}" u-i="042efa4e-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="tabbmiax"><view bindtap="{{b}}" class="{{c}}"><view>商配</view><view></view></view><view bindtap="{{d}}" class="{{e}}"><view>市配</view><view></view></view></view><view class="schbox"><view>配车日期:</view><view bindtap="{{m}}" class="inputsr"><input value="{{f}}" disabled placeholder="请选择时间"/><view catchtap="{{l}}"><u-icon wx:if="{{g}}" bindclick="{{h}}" style="margin-right:10rpx" u-i="042efa4e-1" bind:__l="__l" u-p="{{i}}"></u-icon><u-icon wx:else bindclick="{{j}}" style="margin-right:10rpx" u-i="042efa4e-2" bind:__l="__l" u-p="{{k||''}}"></u-icon></view></view><view bindtap="{{n}}"> 查询 </view></view><scroll-view scroll-y="true" class="scvbx" bindscrolltolower="{{p}}"><view class="mabxslist"><view wx:for="{{o}}" wx:for-item="item" class="item"><view class="headtop"><view class="type1s"><view><text style="color:#90A0AF">配送类型:</text>{{item.a}}</view><view><text style="color:#90A0AF">配送状态:</text>{{item.b}}</view></view><view class="type1s"><view><text style="color:#90A0AF">车牌号:</text>{{item.c}}</view><view><text style="color:#90A0AF">司机:</text>{{item.d}}</view></view><view class="type1s"><view><text style="color:#90A0AF">装卸班组:</text>{{item.e}}</view><view class="bhcolor"><text style="color:#90A0AF">备货是否完成:</text>{{item.f}}</view></view><view class="type1s"><view><text style="color:#90A0AF">客户:</text>{{item.g}}</view></view><view class="type1s"><view><text style="color:#90A0AF">配送日期:</text>{{item.h}}</view></view><view wx:if="{{item.i}}" class="type1s"><view><text style="color:#90A0AF">发车时间:</text>{{item.j}}</view></view><view class="type1s"><view><text style="color:#90A0AF">备货区:</text>{{item.k}}</view></view><view class="type1s" bindtap="{{item.m}}"><view class="bhcolor"><text style="color:#90A0AF">车次号:</text><text style="text-decoration:underline">{{item.l}}</text></view></view><view class="liebs"><view><view>配送客户数</view><view>{{item.n}}</view></view><view><view>订单总数</view><view>{{item.o}}</view></view><view><view>计划件数</view><view>{{item.p}}</view></view><view><view>装车件数</view><view>{{item.q}}</view></view><view><view>库存品数</view><view>{{item.r}}</view></view></view></view><view class="buts"><view bindtap="{{item.s}}">装车扫描</view><view bindtap="{{item.t}}">滞留</view><view wx:if="{{item.v}}" bindtap="{{item.w}}">发车</view></view></view></view></scroll-view><l-calendar wx:if="{{t}}" bindhide="{{q}}" bindchange="{{r}}" u-i="042efa4e-3" bind:__l="__l" bindupdateValue="{{s}}" u-p="{{t}}"></l-calendar><tiplist class="r" u-r="tiplists" u-i="042efa4e-4" bind:__l="__l"></tiplist><tips class="r" u-r="tip" u-i="042efa4e-5" bind:__l="__l"></tips> |
@ -1 +1 @@
|
||||
.inputsr{width:400rpx!important;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:16rpx 18rpx;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:26rpx;font-weight:400;color:#092c4d}.inputsr>input{flex:1}.scvbx{width:100%;height:81vh;margin-top:20rpx}.scvbx .mabxslist{display:flex;flex-direction:column;align-items:center}.scvbx .mabxslist>.item{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:20rpx 0;box-sizing:border-box;margin-bottom:20rpx}.scvbx .mabxslist>.item>.headtop{display:flex;flex-direction:column;padding:24rpx}.scvbx .mabxslist>.item>.headtop>.type1s{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:20rpx;box-sizing:border-box;font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.type1s>view{flex:1}.scvbx .mabxslist>.item>.headtop>.type1s .bhcolor{color:#0086f1}.scvbx .mabxslist>.item>.headtop>.liebs{display:flex;align-items:flex-start;justify-content:space-around}.scvbx .mabxslist>.item>.headtop>.liebs>view{display:flex;flex-direction:column;align-items:center;margin-top:20rpx}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;margin-top:20rpx}.scvbx .mabxslist>.item>.buts{border-top:3rpx solid #EEEEEE;display:flex;align-items:center;justify-content:space-around;padding-top:20rpx}.scvbx .mabxslist>.item>.buts>view{width:204rpx;height:64rpx;border-radius:8rpx;opacity:1;display:flex;align-items:center;justify-content:center;font-size:28rpx}.scvbx .mabxslist>.item>.buts>view:nth-of-type(1){border:2rpx solid #0086F1;color:#0086f1}.scvbx .mabxslist>.item>.buts>view:nth-of-type(2){border:2rpx solid #D3832A;color:#d3832a}.schbox{display:flex;align-items:center;justify-content:space-between;padding:15rpx 32rpx;box-sizing:border-box;background-color:#fff}.schbox>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.schbox>view:nth-of-type(2){width:380rpx}.schbox>view:nth-of-type(3){width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
.tabbmiax{display:flex;align-items:center;justify-content:space-between;background-color:#fff}.tabbmiax .xz>view:nth-of-type(1){color:#fa8c16!important}.tabbmiax .xz>view:nth-of-type(2){background-color:#fa8c16!important}.tabbmiax>view{width:50%;height:80rpx;display:flex;align-items:center;justify-content:center;flex-direction:column;border-bottom:1rpx solid #EEEEEE}.tabbmiax>view:nth-of-type(1){border-right:1rpx solid #EEEEEE}.tabbmiax>view>view:nth-of-type(1){font-size:34rpx;color:#092c4d}.tabbmiax>view>view:nth-of-type(2){width:58rpx;height:8rpx;margin-top:10rpx;border-radius:20rpx}.inputsr{width:400rpx!important;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:16rpx 18rpx;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:26rpx;font-weight:400;color:#092c4d}.inputsr>input{flex:1;font-size:26rpx}.scvbx{width:100%;height:75vh;margin-top:20rpx}.scvbx .mabxslist{display:flex;flex-direction:column;align-items:center}.scvbx .mabxslist>.item{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:20rpx 0;box-sizing:border-box;margin-bottom:20rpx}.scvbx .mabxslist>.item>.headtop{display:flex;flex-direction:column;padding:24rpx}.scvbx .mabxslist>.item>.headtop>.type1s{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:20rpx;box-sizing:border-box;font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.type1s>view{flex:1}.scvbx .mabxslist>.item>.headtop>.type1s .bhcolor{color:#0086f1}.scvbx .mabxslist>.item>.headtop>.liebs{display:flex;align-items:flex-start;justify-content:space-around}.scvbx .mabxslist>.item>.headtop>.liebs>view{display:flex;flex-direction:column;align-items:center;margin-top:20rpx}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;margin-top:20rpx}.scvbx .mabxslist>.item>.buts{border-top:3rpx solid #EEEEEE;display:flex;align-items:center;justify-content:space-around;padding-top:20rpx}.scvbx .mabxslist>.item>.buts>view{width:204rpx;height:64rpx;border-radius:8rpx;opacity:1;display:flex;align-items:center;justify-content:center;font-size:28rpx}.scvbx .mabxslist>.item>.buts>view:nth-of-type(1){border:2rpx solid #0086F1;color:#0086f1}.scvbx .mabxslist>.item>.buts>view:nth-of-type(2){border:2rpx solid #f8113b;color:#f8113b}.scvbx .mabxslist>.item>.buts>view:nth-of-type(3){border:2rpx solid #D3832A;color:#d3832a}.schbox{display:flex;align-items:center;justify-content:space-between;padding:15rpx 32rpx;box-sizing:border-box;background-color:#fff}.schbox>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.schbox>view:nth-of-type(2){width:380rpx}.schbox>view:nth-of-type(3){width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="52919ca0-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hdtpnum"><view><view>订单总数</view><view>{{b}}</view></view><view><view>齐套数</view><view>{{c}}</view></view><view><view>自提件数</view><view>{{d}}</view></view><view><view>签收件数</view><view>{{e}}</view></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{g}}" bindchange="{{f}}" u-i="52919ca0-1" bind:__l="__l" u-p="{{g}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号" value="{{h}}" bindinput="{{i}}"/></view><view class="btscan" bindtap="{{j}}">查询</view></view><scroll-view class="scve" scroll-y="true"><view class="mabx"><view wx:for="{{k}}" wx:for-item="item" class="itec"><view class="contenbx1"><view><text style="color:#90A0AF">订单编号:</text>{{item.a}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">配送数:</text>{{item.b}}</view><view><text style="color:#90A0AF">已扫码数:</text>{{item.c}}</view></view><view class="{{item.e}}">{{item.d}}</view></view></view></scroll-view> |
||||
<u-navbar wx:if="{{a}}" u-i="0ea02be5-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="hdtpnum"><view><view>订单总数</view><view>{{b}}</view></view><view><view>齐套数</view><view>{{c}}</view></view><view><view>自提件数</view><view>{{d}}</view></view><view><view>签收件数</view><view>{{e}}</view></view><view><view>库存品数</view><view>{{f}}</view></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{h}}" bindchange="{{g}}" u-i="0ea02be5-1" bind:__l="__l" u-p="{{h}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号" value="{{i}}" bindinput="{{j}}"/></view><view class="btscan" bindtap="{{k}}">查询</view></view><view class="tabtip"><view bindtap="{{m}}"><view class="{{l}}">定制品</view></view><view bindtap="{{o}}"><view class="{{n}}">库存品</view></view><view bindtap="{{q}}"><view class="{{p}}">零担</view></view></view><scroll-view class="scve" scroll-y="true"><view class="mabx"><block wx:for="{{r}}" wx:for-item="item" wx:key="s"><block wx:if="{{s}}"><view class="itec" bindtap="{{item.f}}"><view class="contenbx1"><view><text style="color:#90A0AF">订单编号:</text> {{item.a}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">配送数:</text>{{item.b}}</view><view><text style="color:#90A0AF">已扫码数:</text>{{item.c}}</view></view><view class="{{item.e}}">{{item.d}}</view></view></block><block wx:if="{{t}}"><view class="itec" bindtap="{{item.l}}"><view class="contenbx1"><view><text style="color:#90A0AF">SKU:</text>{{item.g}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">物品:</text>{{item.h}}</view><view><text style="color:#90A0AF">规格:</text>{{item.i}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">单位:</text>{{item.j}}</view><view><text style="color:#90A0AF">自提数:</text>{{item.k}}</view></view></view></block><block wx:if="{{v}}"><view class="itec" bindtap="{{item.r}}"><view class="contenbx1"><view><text style="color:#90A0AF">订单号:</text>{{item.m}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">运单号:</text>{{item.n}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">产品名称:</text>{{item.o}}</view></view><view class="contenbx1"><view><text style="color:#90A0AF">预计签收件数:</text>{{item.p}}</view><view><text style="color:#90A0AF">实际签收件数:</text>{{item.q}}</view></view></view></block></block></view></scroll-view><tiplist class="r" u-r="tiplists" u-i="0ea02be5-2" bind:__l="__l"></tiplist><saomiao2 u-i="0ea02be5-3" bind:__l="__l"></saomiao2> |
@ -1 +1 @@
|
||||
.scve{width:100%;height:69vh;margin-top:20rpx}.scve .mabx{display:flex;flex-direction:column;align-items:center}.scve .mabx>.itec{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:36rpx 24rpx;box-sizing:border-box;position:relative;margin-bottom:20rpx}.scve .mabx>.itec:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1{display:flex;align-items:center;justify-content:space-between;font-size:28rpx;color:#092c4d;margin-bottom:20rpx}.scve .mabx>.itec>.contenbx1:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1>view{flex:1}.scve .mabx>.itec .tip{position:absolute;right:0;top:0;width:96rpx;height:48rpx;border-radius:0 8rpx;display:flex;align-items:center;justify-content:center;font-size:24rpx}.scve .mabx>.itec .tp1{background-color:rgba(0,134,241,.125);color:#0086f1}.scve .mabx>.itec .tp2{background-color:rgba(248,84,75,.125);color:#f8544b}.scve .mabx>.itec .tp3{background-color:rgba(250,140,22,.125);color:#fa8c16}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff}.hdtpnum{display:flex;align-items:center;justify-content:space-around;background-color:#fff;padding:28rpx 0;border-bottom:3rpx solid #EEEEEE}.hdtpnum>view{display:flex;align-items:center;flex-direction:column;font-size:28rpx;font-weight:400;color:#092c4d}.hdtpnum>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hdtpnum>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hdtpnum>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hdtpnum>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hdtpnum>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx} |
||||
.tabtip{display:flex;align-items:center;justify-content:space-between}.tabtip>view{width:50%;display:flex;align-items:center;justify-content:center;background-color:#fff;font-size:32rpx;font-weight:400;color:#90a0af}.tabtip>view>view{height:80rpx;border-bottom:8rpx solid #ffffff;display:flex;align-items:center;justify-content:center}.tabtip .xz{color:#d3832a;border-bottom:8rpx solid #D3832A}.scve{width:100%;height:69vh;margin-top:20rpx}.scve .mabx{display:flex;flex-direction:column;align-items:center}.scve .mabx>.itec{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:36rpx 24rpx;box-sizing:border-box;position:relative;margin-bottom:20rpx}.scve .mabx>.itec:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1{display:flex;align-items:flex-start;justify-content:space-between;font-size:28rpx;color:#092c4d;margin-bottom:20rpx}.scve .mabx>.itec>.contenbx1:nth-last-child(1){margin-bottom:0}.scve .mabx>.itec>.contenbx1>view{flex:1;word-wrap:break-word;word-break:break-all}.scve .mabx>.itec .tip{position:absolute;right:0;top:0;width:96rpx;height:48rpx;border-radius:0 8rpx;display:flex;align-items:center;justify-content:center;font-size:24rpx}.scve .mabx>.itec .tp1{background-color:rgba(0,134,241,.125);color:#0086f1}.scve .mabx>.itec .tp2{background-color:rgba(248,84,75,.125);color:#f8544b}.scve .mabx>.itec .tp3{background-color:rgba(250,140,22,.125);color:#fa8c16}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .inputs>input{flex:1;font-size:24rpx;color:#092c4d}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff}.hdtpnum{display:flex;align-items:center;justify-content:space-around;background-color:#fff;padding:28rpx 0;border-bottom:3rpx solid #EEEEEE}.hdtpnum>view{display:flex;align-items:center;flex-direction:column;font-size:28rpx;font-weight:400;color:#092c4d}.hdtpnum>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.hdtpnum>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.hdtpnum>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.hdtpnum>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.hdtpnum>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;color:#092c4d;margin-top:20rpx} |
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="e4b7b2b4-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="headtop"><view><view>配车类型:自提</view></view><view><view>车牌号:川A88888</view><view>司机:张琪、罗翔</view></view></view><view class="tabmabx"><view><uni-table wx:if="{{i}}" u-s="{{['d']}}" u-i="e4b7b2b4-1" bind:__l="__l" u-p="{{i}}"><uni-tr u-s="{{['d']}}" u-i="e4b7b2b4-2,e4b7b2b4-1" bind:__l="__l"><uni-th wx:if="{{b}}" u-i="e4b7b2b4-3,e4b7b2b4-2" bind:__l="__l" u-p="{{b}}"></uni-th><uni-th wx:if="{{c}}" u-s="{{['d']}}" u-i="e4b7b2b4-4,e4b7b2b4-2" bind:__l="__l" u-p="{{c}}">订单总数</uni-th><uni-th wx:if="{{d}}" u-s="{{['d']}}" u-i="e4b7b2b4-5,e4b7b2b4-2" bind:__l="__l" u-p="{{d}}">签收件数</uni-th></uni-tr><uni-tr wx:for="{{e}}" wx:for-item="item" u-s="{{['d']}}" u-i="{{item.g}}" bind:__l="__l"><uni-td wx:if="{{f}}" u-s="{{['d']}}" class="jhjs" u-i="{{item.b}}" bind:__l="__l" u-p="{{f}}">{{item.a}}</uni-td><uni-td wx:if="{{g}}" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{g}}">{{item.c}}</uni-td><uni-td wx:if="{{h}}" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{h}}">{{item.e}}</uni-td></uni-tr></uni-table></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{k}}" bindchange="{{j}}" u-i="e4b7b2b4-10" bind:__l="__l" u-p="{{k}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号"/></view><view class="btscan">查询</view></view><scroll-view scroll-y="true" class="scrollv"><view class="mabxs"><view wx:for="{{l}}" wx:for-item="item" class="ite"><view><view>订单号:{{item.a}}</view><view>包装号:{{item.b}}</view></view><view><view>是否扫描:{{item.c}}</view><view>异常:{{item.d}}</view></view></view></view></scroll-view> |
||||
<u-navbar wx:if="{{a}}" u-i="37c3c84a-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="headtop"><view><view>车牌号:{{b}}</view><view>司机:{{c}}</view></view></view><view class="tabmabx"><view><uni-table wx:if="{{k}}" u-s="{{['d']}}" u-i="37c3c84a-1" bind:__l="__l" u-p="{{k}}"><uni-tr u-s="{{['d']}}" u-i="37c3c84a-2,37c3c84a-1" bind:__l="__l"><uni-th wx:if="{{d}}" u-i="37c3c84a-3,37c3c84a-2" bind:__l="__l" u-p="{{d}}"></uni-th><uni-th wx:if="{{e}}" u-s="{{['d']}}" u-i="37c3c84a-4,37c3c84a-2" bind:__l="__l" u-p="{{e}}">订单总数</uni-th><uni-th wx:if="{{f}}" u-s="{{['d']}}" u-i="37c3c84a-5,37c3c84a-2" bind:__l="__l" u-p="{{f}}">签收件数</uni-th></uni-tr><uni-tr wx:for="{{g}}" wx:for-item="item" u-s="{{['d']}}" u-i="{{item.g}}" bind:__l="__l"><uni-td wx:if="{{h}}" u-s="{{['d']}}" class="jhjs" u-i="{{item.b}}" bind:__l="__l" u-p="{{h}}">{{item.a}}</uni-td><uni-td wx:if="{{i}}" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{i}}">{{item.c}}</uni-td><uni-td wx:if="{{j}}" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{j}}">{{item.e}}</uni-td></uni-tr></uni-table></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{m}}" bindchange="{{l}}" u-i="37c3c84a-10" bind:__l="__l" u-p="{{m}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号"/></view><view class="btscan" bindtap="{{n}}">查询</view></view><view class="tabtip"><view bindtap="{{p}}"><view class="{{o}}">定制品</view></view><view bindtap="{{r}}"><view class="{{q}}">库存品</view></view><view bindtap="{{t}}"><view class="{{s}}">零担</view></view></view><scroll-view scroll-y="true" class="scrollv"><view class="mabxs"><block wx:for="{{v}}" wx:for-item="item" wx:key="t"><block wx:if="{{w}}"><view class="ite" bindtap="{{item.f}}"><view><view catchtap="{{item.b}}">订单号:{{item.a}}</view><view>包条码:{{item.c}}</view></view><view><view>是否扫描:{{item.d}}</view><view>异常:{{item.e}}</view></view></view></block><block wx:if="{{x}}"><view class="ite" bindtap="{{item.m}}"><view><view>SKU:{{item.g}}</view><view>包件号:{{item.h}}</view></view><view><view>物品:{{item.i}}</view><view>规格:{{item.j}}</view></view><view><view>单位:{{item.k}}</view><view>扫描:{{item.l}}</view></view></view></block><block wx:if="{{y}}"><view class="ite" bindtap="{{item.s}}"><view><view>订单号:{{item.n}}</view></view><view><view>运单号:{{item.o}}</view></view><view><view>产品名称:{{item.p}}</view></view><view><view>预计签收件数:{{item.q}}</view><view>实际签收件数:{{item.r}}</view></view></view></block></block></view></scroll-view><tiplist class="r" u-r="tiplists" u-i="37c3c84a-11" bind:__l="__l"></tiplist><saomiao2 u-i="37c3c84a-12" bind:__l="__l"></saomiao2> |
@ -1 +1 @@
|
||||
.scrollv{width:686rpx;height:48.5vh;background-color:#fff;margin:auto;margin-top:20rpx;padding:20rpx;box-sizing:border-box}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:5rpx}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:20rpx 15rpx 10rpx;box-sizing:border-box;border-radius:8rpx;box-shadow:0 2rpx 10rpx #e2e2e3;margin-bottom:20rpx}.scrollv .mabxs .ite:nth-last-child(1){margin-bottom:5rpx}.scrollv .mabxs .ite>view{display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:20rpx}.scrollv .mabxs .ite>view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>view>view{font-size:28rpx;font-weight:400;color:#092c4d}.tabmabx{width:100%;padding:0 32rpx 20rpx;box-sizing:border-box;background-color:#fff}.tabmabx .uni-table-th{background-color:#f8fbff;font-size:28rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td{font-size:36rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td{border-bottom:none!important;font-size:36rpx;font-weight:400;color:#0086f1}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx>view{border-radius:8rpx;border:1rpx solid #EEEEEE;padding-bottom:-2rpx}.headtop{display:flex;flex-direction:column;padding:34rpx 32rpx;box-sizing:border-box;background-color:#fff}.headtop>view{display:flex;align-items:center;justify-content:space-between;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:24rpx}.headtop>view:nth-of-type(2){margin-bottom:0}.headtop>view>view{flex:1}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
.tabtip{display:flex;align-items:center;justify-content:space-between}.tabtip>view{width:50%;display:flex;align-items:center;justify-content:center;background-color:#fff;font-size:32rpx;font-weight:400;color:#90a0af}.tabtip>view>view{height:80rpx;border-bottom:8rpx solid #ffffff;display:flex;align-items:center;justify-content:center}.tabtip .xz{color:#d3832a;border-bottom:8rpx solid #D3832A}.scrollv{width:686rpx;height:48.5vh;background-color:#fff;margin:auto;margin-top:20rpx;padding:20rpx;box-sizing:border-box}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:5rpx}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:20rpx 15rpx 10rpx;box-sizing:border-box;border-radius:8rpx;box-shadow:0 2rpx 10rpx #e2e2e3;margin-bottom:20rpx}.scrollv .mabxs .ite:nth-last-child(1){margin-bottom:5rpx}.scrollv .mabxs .ite>view{display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:20rpx}.scrollv .mabxs .ite>view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>view>view{font-size:28rpx;font-weight:400;color:#092c4d}.tabmabx{width:100%;padding:0 32rpx 20rpx;box-sizing:border-box;background-color:#fff}.tabmabx .uni-table-th{background-color:#f8fbff;font-size:28rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td{font-size:36rpx;font-weight:400;color:#092c4d}.tabmabx .uni-table-tr:nth-last-child(2)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td{border-bottom:none!important;font-size:36rpx;font-weight:400;color:#0086f1}.tabmabx .uni-table-tr:nth-last-child(1)>.uni-table-td:nth-of-type(1){font-size:28rpx!important;font-weight:400;color:#092c4d!important}.tabmabx>view{border-radius:8rpx;border:1rpx solid #EEEEEE;padding-bottom:-2rpx}.headtop{display:flex;flex-direction:column;padding:34rpx 32rpx;box-sizing:border-box;background-color:#fff}.headtop>view{display:flex;align-items:center;justify-content:space-between;font-size:28rpx;font-weight:400;color:#092c4d;margin-bottom:24rpx}.headtop>view:nth-of-type(2){margin-bottom:0}.headtop>view>view{flex:1}.scinp{display:flex;align-items:center;justify-content:space-between;padding:12rpx 32rpx;box-sizing:border-box;background-color:#fff}.scinp>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scinp .inputs{width:276rpx;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:10rpx;box-sizing:border-box;font-size:24rpx;font-weight:400;color:#afb4ba}.scinp .inputs>input{flex:1;font-size:24rpx;color:#092c4d}.scinp .btscan{width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../../../common/vendor.js"),i=require("../../../api/user.js");if(require("../../../utils/request.js"),require("../../../store/index.js"),require("../../../utils/functions.js"),require("../../../utils/IDCardVerification.js"),require("../../../config/host.js"),require("../../../utils/base64.js"),require("../../../utils/md5.js"),!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("u-icon")+e.resolveComponent("l-calendar"))()}Math||((()=>"../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js")+(()=>"../../../uni_modules/uview-plus/components/u-icon/u-icon.js")+(()=>"../../../uni_modules/l-calendar/components/l-calendar/l-calendar.js"))();const t=e.defineComponent({__name:"SelfPickupScan",setup(t){let n=e.reactive({datatime:"",show:!1,current:1,size:10,recordsList:[]});const a=e.ref([]);function o(){n.show=!n.show}function r(e){console.log(e),a.value[0]=e.startDate,a.value[1]=e.endDate,n.datatime=a.value[0]+" 至 "+a.value[1]}function u(){n.datatime=""}e.onLoad((()=>{a.value[0]=e.index.$u.timeFormat((new Date).valueOf()-2592e5,"yyyy-mm-dd"),a.value[1]=e.index.$u.timeFormat((new Date).valueOf(),"yyyy-mm-dd"),n.current=1,async function(){let e={current:n.current,size:n.size,pickUpTimeStart:a.value[0],pickUpTimeEnd:a.value[1]},t=await i.billLadingpageList(e);n.recordsList=t.data.records}()}));const{datatime:s,dataList:l,show:c,recordsList:d}=e.toRefs(n);return(i,t)=>e.e({a:e.p({title:"自提扫描",placeholder:!0,border:"true",autoBack:!0,leftIconSize:"35"}),b:e.unref(s),c:!e.unref(s)},e.unref(s)?{f:e.o(u),g:e.p({name:"close-circle",color:"#999999",size:"40"})}:{d:e.o(o),e:e.p({name:"calendar",color:"#999999",size:"50"})},{h:e.o((()=>{})),i:e.o(o),j:e.f(e.unref(d),((i,t,n)=>({a:e.t(i.item),b:e.t(i.conditionStr),c:e.t(i.pickUpPlate),d:e.t(i.consignee),e:e.t(i.createTime),f:e.t(i.createTime),g:e.t(i.orderNum),h:e.t(i.planNum),i:e.t(i.signedNum),j:e.o((t=>function(i){e.index.navigateTo({url:"/pagesHome/pages/SelfPickupDetails/SelfPickupDetails?billLadingId="+i.billLadingId})}(i))),k:e.o((t=>function(i){e.index.navigateTo({url:"/pagesHome/pages/SelfPScanList/SelfPScanList?billLadingId="+i.billLadingId})}(i)))}))),k:e.o(o),l:e.o(r),m:e.o((i=>e.isRef(c)?c.value=i:null)),n:e.p({initStartDate:a.value[0],initEndDate:a.value[1],value:e.unref(c)})})}});wx.createPage(t); |
||||
"use strict";const e=require("../../../common/vendor.js"),t=require("../../../api/user.js");if(require("../../../utils/request.js"),require("../../../store/index.js"),require("../../../utils/functions.js"),require("../../../utils/IDCardVerification.js"),require("../../../utils/base64.js"),require("../../../config/host.js"),require("../../../utils/md5.js"),!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("u-icon")+e.resolveComponent("l-calendar"))()}Math||((()=>"../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js")+(()=>"../../../uni_modules/uview-plus/components/u-icon/u-icon.js")+(()=>"../../../uni_modules/l-calendar/components/l-calendar/l-calendar.js"))();const n=e.defineComponent({__name:"SelfPickupScan",setup(n){let i=e.reactive({datatime:"",show:!1,current:1,size:10,recordsList:[]});const a=e.ref([]);function o(){i.show=!i.show}function r(e){console.log(e),a.value[0]=e.startDate,a.value[1]=e.endDate,i.datatime=a.value[0]+" 至 "+a.value[1]}function u(){i.current=1,s()}function l(){i.current++,s()}async function s(){let n={current:i.current,size:i.size,pickUpTimeStart:a.value[0],pickUpTimeEnd:a.value[1]},o=await t.billLadingpageList(n);if(1==i.current)i.recordsList=o.data.records;else{if(0==o.data.records.lngth)return void e.index.showToast({title:"已经到底了。",icon:"none"});i.recordsList=i.recordsList.concat(o.data.records)}}function c(){i.datatime="",a.value=[],u()}e.watchEffect((()=>{0!=a.value.length&&(i.datatime=a.value[0]+" 至 "+a.value[1])})),e.onLoad((()=>{a.value[0]=e.index.$u.timeFormat((new Date).valueOf()-2592e5,"yyyy-mm-dd"),a.value[1]=e.index.$u.timeFormat((new Date).valueOf(),"yyyy-mm-dd")})),e.onShow((()=>{u()}));const{datatime:d,dataList:f,show:m,recordsList:p}=e.toRefs(i);return(t,n)=>e.e({a:e.p({title:"自提扫描",bgColor:"#D3832A",leftIconColor:"#ffffff",titleStyle:"color:#ffffff",placeholder:!0,autoBack:!0,leftIconSize:"35"}),b:e.unref(d),c:!e.unref(d)},e.unref(d)?{f:e.o(c),g:e.p({name:"close-circle",color:"#999999",size:"40"})}:{d:e.o(o),e:e.p({name:"calendar",color:"#999999",size:"50"})},{h:e.o((()=>{})),i:e.o(o),j:e.o(u),k:e.f(e.unref(p),((t,n,i)=>({a:e.t(t.pickUpPlate),b:e.t(t.consignee),c:e.t(t.createTime),d:e.t(t.createTime),e:e.t(t.orderNum),f:e.t(t.planNum),g:e.t(t.signedNum),h:e.t(t.inventoryNub),i:e.o((n=>function(t){e.index.navigateTo({url:"/pagesHome/pages/SelfPickupDetails/SelfPickupDetails?billLadingId="+t.billLadingId})}(t))),j:e.o((n=>function(t){e.index.navigateTo({url:"/pagesHome/pages/SelfPScanList/SelfPScanList?billLadingId="+t.billLadingId})}(t)))}))),l:e.o(l),m:e.o(o),n:e.o(r),o:e.o((t=>e.isRef(m)?m.value=t:null)),p:e.p({initStartDate:a.value[0],initEndDate:a.value[1],value:e.unref(m)})})}});wx.createPage(n); |
||||
|
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="76caf650-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="schbox"><view>自提日期:</view><view catchtap="{{i}}" class="inputsr"><input value="{{b}}" disabled placeholder="请选择时间"/><view catchtap="{{h}}"><u-icon wx:if="{{c}}" catchclick="{{d}}" style="margin-right:10rpx" u-i="76caf650-1" bind:__l="__l" u-p="{{e}}"></u-icon><u-icon wx:else catchclick="{{f}}" style="margin-right:10rpx" u-i="76caf650-2" bind:__l="__l" u-p="{{g||''}}"></u-icon></view></view><view> 查询 </view></view><scroll-view scroll-y="true" class="scvbx"><view class="mabxslist"><view wx:for="{{j}}" wx:for-item="item" class="item"><view class="headtop"><view class="type1s"><view><text style="color:#90A0AF">配车类型:</text>{{item.a}}</view><view><text style="color:#90A0AF">配车状态:</text>{{item.b}}</view></view><view class="type1s"><view><text style="color:#90A0AF">车牌号:</text>{{item.c}}</view><view><text style="color:#90A0AF">司机:</text>{{item.d}}</view></view><view class="type1s"><view><text style="color:#90A0AF">装御班组:</text>A班组 </view><view><text style="color:#90A0AF">备货是否完成:</text>是 </view></view><view class="type1s"><view><text style="color:#90A0AF">制单时间:</text>{{item.e}}</view></view><view class="type1s"><view><text style="color:#90A0AF">任务时间:</text>{{item.f}}</view></view><view class="liebs"><view><view>订单总数</view><view>{{item.g}}</view></view><view><view>自提件数</view><view>{{item.h}}</view></view><view><view>签收件数</view><view>{{item.i}}</view></view></view></view><view class="buts"><view bindtap="{{item.j}}">明细扫描</view><view bindtap="{{item.k}}">扫描</view></view></view></view></scroll-view><l-calendar wx:if="{{n}}" bindhide="{{k}}" bindchange="{{l}}" u-i="76caf650-3" bind:__l="__l" bindupdateValue="{{m}}" u-p="{{n}}"></l-calendar> |
||||
<u-navbar wx:if="{{a}}" u-i="585e3745-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="schbox"><view>自提日期:</view><view bindtap="{{i}}" class="inputsr"><input value="{{b}}" disabled placeholder="请选择时间"/><view catchtap="{{h}}"><u-icon wx:if="{{c}}" bindclick="{{d}}" style="margin-right:10rpx" u-i="585e3745-1" bind:__l="__l" u-p="{{e}}"></u-icon><u-icon wx:else bindclick="{{f}}" style="margin-right:10rpx" u-i="585e3745-2" bind:__l="__l" u-p="{{g||''}}"></u-icon></view></view><view bindtap="{{j}}"> 查询 </view></view><scroll-view scroll-y="true" class="scvbx" bindscrolltolower="{{l}}"><view class="mabxslist"><view wx:for="{{k}}" wx:for-item="item" class="item"><view class="headtop"><view class="type1s"><view><text style="color:#90A0AF">车牌号:</text>{{item.a}}</view><view><text style="color:#90A0AF">司机:</text>{{item.b}}</view></view><view class="type1s"><view><text style="color:#90A0AF">装御班组:</text>A班组 </view><view><text style="color:#90A0AF">备货是否完成:</text>是 </view></view><view class="type1s"><view><text style="color:#90A0AF">制单时间:</text>{{item.c}}</view></view><view class="type1s"><view><text style="color:#90A0AF">任务时间:</text>{{item.d}}</view></view><view class="liebs"><view><view>订单总数</view><view>{{item.e}}</view></view><view><view>自提件数</view><view>{{item.f}}</view></view><view><view>签收件数</view><view>{{item.g}}</view></view><view><view>库存品数</view><view>{{item.h}}</view></view></view></view><view class="buts"><view bindtap="{{item.i}}">明细扫描</view><view bindtap="{{item.j}}">扫描</view></view></view></view></scroll-view><l-calendar wx:if="{{p}}" bindhide="{{m}}" bindchange="{{n}}" u-i="585e3745-3" bind:__l="__l" bindupdateValue="{{o}}" u-p="{{p}}"></l-calendar> |
@ -1 +1 @@
|
||||
.inputsr{width:400rpx!important;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:16rpx 18rpx;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:26rpx;font-weight:400;color:#092c4d}.inputsr>input{flex:1}.scvbx{width:100%;height:81vh;margin-top:20rpx}.scvbx .mabxslist{display:flex;flex-direction:column;align-items:center}.scvbx .mabxslist>.item{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:20rpx 0;box-sizing:border-box;margin-bottom:20rpx}.scvbx .mabxslist>.item>.headtop{display:flex;flex-direction:column;padding:24rpx}.scvbx .mabxslist>.item>.headtop>.type1s{display:flex;align-items:center;justify-content:space-between;margin-bottom:20rpx;box-sizing:border-box;font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.type1s>view{flex:1}.scvbx .mabxslist>.item>.headtop>.liebs{display:flex;align-items:center;justify-content:space-around}.scvbx .mabxslist>.item>.headtop>.liebs>view{display:flex;flex-direction:column;align-items:center;margin-top:20rpx}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(2)>view:nth-of-type(2){color:#3ad8bc}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(3)>view:nth-of-type(2){color:#fa8c16}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;margin-top:20rpx}.scvbx .mabxslist>.item>.buts{border-top:3rpx solid #EEEEEE;display:flex;align-items:center;justify-content:space-around;padding-top:20rpx}.scvbx .mabxslist>.item>.buts>view{width:204rpx;height:64rpx;border-radius:8rpx;opacity:1;display:flex;align-items:center;justify-content:center;font-size:28rpx}.scvbx .mabxslist>.item>.buts>view:nth-of-type(1){border:2rpx solid #0086F1;color:#0086f1}.scvbx .mabxslist>.item>.buts>view:nth-of-type(2){border:2rpx solid #D3832A;color:#d3832a}.schbox{display:flex;align-items:center;justify-content:space-between;padding:15rpx 32rpx;box-sizing:border-box;background-color:#fff}.schbox>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.schbox>view:nth-of-type(2){width:380rpx}.schbox>view:nth-of-type(3){width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
.inputsr{width:400rpx!important;height:64rpx;background:#F5F5F6;border-radius:8rpx;opacity:1;border:2rpx solid #EEEEEE;padding:16rpx 18rpx;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:26rpx;font-weight:400;color:#092c4d}.inputsr>input{flex:1;font-size:26rpx}.scvbx{width:100%;height:81vh;margin-top:20rpx}.scvbx .mabxslist{display:flex;flex-direction:column;align-items:center}.scvbx .mabxslist>.item{width:686rpx;background:#FFFFFF;border-radius:8rpx;padding:20rpx 0;box-sizing:border-box;margin-bottom:20rpx}.scvbx .mabxslist>.item>.headtop{display:flex;flex-direction:column;padding:24rpx}.scvbx .mabxslist>.item>.headtop>.type1s{display:flex;align-items:center;justify-content:space-between;margin-bottom:20rpx;box-sizing:border-box;font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.type1s>view{flex:1}.scvbx .mabxslist>.item>.headtop>.liebs{display:flex;align-items:center;justify-content:space-around}.scvbx .mabxslist>.item>.headtop>.liebs>view{display:flex;flex-direction:column;align-items:center;margin-top:20rpx}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(1)>view:nth-of-type(2){color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(2)>view:nth-of-type(2){color:#0086f1}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(3)>view:nth-of-type(2){color:#3ad8bc}.scvbx .mabxslist>.item>.headtop>.liebs>view:nth-of-type(4)>view:nth-of-type(2){color:#fa8c16}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.scvbx .mabxslist>.item>.headtop>.liebs>view>view:nth-of-type(2){font-size:36rpx;font-weight:400;margin-top:20rpx}.scvbx .mabxslist>.item>.buts{border-top:3rpx solid #EEEEEE;display:flex;align-items:center;justify-content:space-around;padding-top:20rpx}.scvbx .mabxslist>.item>.buts>view{width:204rpx;height:64rpx;border-radius:8rpx;opacity:1;display:flex;align-items:center;justify-content:center;font-size:28rpx}.scvbx .mabxslist>.item>.buts>view:nth-of-type(1){border:2rpx solid #0086F1;color:#0086f1}.scvbx .mabxslist>.item>.buts>view:nth-of-type(2){border:2rpx solid #D3832A;color:#d3832a}.schbox{display:flex;align-items:center;justify-content:space-between;padding:15rpx 32rpx;box-sizing:border-box;background-color:#fff}.schbox>view:nth-of-type(1){font-size:28rpx;font-weight:400;color:#092c4d}.schbox>view:nth-of-type(2){width:380rpx}.schbox>view:nth-of-type(3){width:128rpx;height:64rpx;background:#D3832A;border-radius:8rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:400;color:#fff} |
||||
|
@ -1 +1 @@
|
||||
"use strict";const e=require("../../../common/vendor.js");if(!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("uni-th")+e.resolveComponent("uni-tr")+e.resolveComponent("uni-td")+e.resolveComponent("uni-table"))()}Math||((()=>"../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js")+(()=>"../../../uni_modules/uni-table/components/uni-th/uni-th.js")+(()=>"../../../uni_modules/uni-table/components/uni-tr/uni-tr.js")+(()=>"../../../uni_modules/uni-table/components/uni-td/uni-td.js")+(()=>"../../../uni_modules/uni-table/components/uni-table/uni-table.js")+n)();const n=()=>"../../../compoment/cus-selects-fan/cus-selects-fan.js",t=e.defineComponent({__name:"SignDetailScan",setup(n){let t=e.reactive({schanvalue:"",typearr:[{value:1,label:"齐套"},{value:2,label:"部分扫"},{value:3,label:"未扫"}]});function a(e){}const{typearr:l,schanvalue:o}=e.toRefs(t);return(n,t)=>({a:e.p({title:"签收明细扫描",placeholder:!0,border:"true",autoBack:!0,leftIconSize:"35"}),b:e.p({width:"60",align:"center"}),c:e.p({width:"70",align:"center"}),d:e.p({width:"70",align:"center"}),e:e.p({width:"70",align:"center"}),f:e.f([1,2],((n,t,a)=>({a:e.t(1==n?"计划":"完成"),b:"618f7990-8-"+a+",618f7990-7-"+a,c:"618f7990-9-"+a+",618f7990-7-"+a,d:"618f7990-10-"+a+",618f7990-7-"+a,e:"618f7990-11-"+a+",618f7990-7-"+a,f:"618f7990-7-"+a+",618f7990-1"}))),g:e.p({align:"center"}),h:e.p({align:"center"}),i:e.p({align:"center"}),j:e.p({align:"center"}),k:e.p({loading:!1,emptyText:"暂无更多数据"}),l:e.o(a),m:e.p({data:e.unref(l),value:e.unref(o),placeholder:"全部",arrLeft:5,size:"145",clearable:!0}),n:e.o(a),o:e.p({data:e.unref(l),value:e.unref(o),placeholder:"全部",arrLeft:5,size:"145",clearable:!0}),p:e.f([1,2,3,4,5],((n,t,a)=>({a:e.n(3==n?"tis bf":"tis"),b:e.t(n>=2?"未扫码":"已扫码"),c:e.n(n>=2?"scanstateerr":"scanstatesucc")})))})}});wx.createPage(t); |
||||
"use strict";const e=require("../../../common/vendor.js"),t=require("../../../api/user.js");if(require("../../../utils/request.js"),require("../../../store/index.js"),require("../../../utils/functions.js"),require("../../../utils/IDCardVerification.js"),require("../../../utils/base64.js"),require("../../../config/host.js"),require("../../../utils/md5.js"),!Array){(e.resolveComponent("u-navbar")+e.resolveComponent("uni-th")+e.resolveComponent("uni-tr")+e.resolveComponent("uni-td")+e.resolveComponent("uni-table"))()}Math||((()=>"../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js")+(()=>"../../../uni_modules/uni-table/components/uni-th/uni-th.js")+(()=>"../../../uni_modules/uni-table/components/uni-tr/uni-tr.js")+(()=>"../../../uni_modules/uni-table/components/uni-td/uni-td.js")+(()=>"../../../uni_modules/uni-table/components/uni-table/uni-table.js")+a)();const a=()=>"../../../compoment/cus-selects-fan/cus-selects-fan.js",r=e.defineComponent({__name:"SignDetailScan",setup(a){let r=e.reactive({orderCodevalue:"",signforStatevalue:"",signforStatearr:[{value:1,label:"齐套"},{value:2,label:"部分扫"},{value:3,label:"未扫"}],statearr:[{value:1,label:"齐套"},{value:2,label:"部分扫"},{value:3,label:"未扫"}],items:{},id:"",datalist:[],orderStatus:1,signforState:""});function n(e){r.orderStatus=e,o()}async function o(){r.datalist=[];let e={id:r.id,signforState:r.signforState};if(1==r.orderStatus){let a=await t.signforwrap(e);console.log(a),r.datalist=a.data.records}else if(2==r.orderStatus){let a=await t.signforwrapIn(e);console.log(a),r.datalist=a.data.records}}e.onLoad((e=>{r.items=JSON.parse(e.item),r.id=JSON.parse(e.item).id,o()}));const{orderStatus:i,signforStatearr:s,signforStatevalue:u,items:l,datalist:f}=e.toRefs(r);return(t,a)=>e.e({a:e.p({title:"签收明细扫描",bgColor:"#D3832A",leftIconColor:"#ffffff",titleStyle:"color:#ffffff",placeholder:!0,autoBack:!0,leftIconSize:"35"}),b:e.t(e.unref(l).type_name),c:e.t(e.unref(l).vehicleName),d:e.t(e.unref(l).driverName),e:e.p({width:"60",align:"center"}),f:e.p({width:"70",align:"center"}),g:e.p({width:"70",align:"center"}),h:e.p({width:"70",align:"center"}),i:e.f([1,2],((t,a,r)=>({a:e.t(1==t?"计划":"完成"),b:"4322ba85-8-"+r+",4322ba85-7-"+r,c:e.t(1==t?e.unref(l).customersNumber:e.unref(l).loadCusNub),d:"4322ba85-9-"+r+",4322ba85-7-"+r,e:e.t(1==t?e.unref(l).orderNumber:e.unref(l).loadOrdNub),f:"4322ba85-10-"+r+",4322ba85-7-"+r,g:e.t(1==t?e.unref(l).signNub:e.unref(l).signNubSr),h:"4322ba85-11-"+r+",4322ba85-7-"+r,i:"4322ba85-7-"+r+",4322ba85-1"}))),j:e.p({align:"center"}),k:e.p({align:"center"}),l:e.p({align:"center"}),m:e.p({align:"center"}),n:e.p({loading:!1,emptyText:"暂无更多数据"}),o:e.o((e=>{return t=1,a=e,console.log(t,a),void(1==t&&(""==a&&(r.signforStatevalue="",r.signforState=""),r.signforStatearr.map((e=>{e.value==a&&(r.signforStatevalue=e.label,r.signforState=e.value,console.log(r.signforStatevalue))})),o()));var t,a})),p:e.p({data:e.unref(s),value:e.unref(u),placeholder:"全部",arrLeft:5,size:"145",clearable:!0}),q:e.o(o),r:e.n(1==e.unref(i)?"xz":""),s:e.o((e=>n(1))),t:e.n(2==e.unref(i)?"xz":""),v:e.o((e=>n(2))),w:1==e.unref(i)},1==e.unref(i)?{x:e.f(e.unref(f),((t,a,r)=>({a:e.t(t.orderCode),b:e.o((a=>function(t){e.index.navigateTo({url:"/pagesHome/pages/orderDetails/orderDetails?orderCode="+t.orderCode})}(t))),c:e.t(t.packetBarCode),d:e.t(t.materialName),e:e.t(1==t.signforState?"未扫码":"已扫码"),f:e.n(1==t.signforState?"scanstateerr":"scanstatesucc")})))}:{},{y:2==e.unref(i)},2==e.unref(i)?{z:e.f(e.unref(f),((t,a,r)=>({a:e.t(t.sku),b:e.t(t.descriptionGoods),c:e.t(t.specification),d:e.t(t.logpmUnit)})))}:{})}});wx.createPage(r); |
||||
|
@ -1 +1 @@
|
||||
<u-navbar wx:if="{{a}}" u-i="618f7990-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="headtop"><view><view>配车类型:自提</view></view><view><view>车牌号:川A88888</view><view>司机:张琪、罗翔</view></view></view><view class="tabmabx"><view><uni-table wx:if="{{k}}" u-s="{{['d']}}" u-i="618f7990-1" bind:__l="__l" u-p="{{k}}"><uni-tr u-s="{{['d']}}" u-i="618f7990-2,618f7990-1" bind:__l="__l"><uni-th wx:if="{{b}}" u-i="618f7990-3,618f7990-2" bind:__l="__l" u-p="{{b}}"></uni-th><uni-th wx:if="{{c}}" u-s="{{['d']}}" u-i="618f7990-4,618f7990-2" bind:__l="__l" u-p="{{c}}">配送客户数</uni-th><uni-th wx:if="{{d}}" u-s="{{['d']}}" u-i="618f7990-5,618f7990-2" bind:__l="__l" u-p="{{d}}">订单总数</uni-th><uni-th wx:if="{{e}}" u-s="{{['d']}}" u-i="618f7990-6,618f7990-2" bind:__l="__l" u-p="{{e}}">签收件数</uni-th></uni-tr><uni-tr wx:for="{{f}}" wx:for-item="item" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l"><uni-td wx:if="{{g}}" u-s="{{['d']}}" class="jhjs" u-i="{{item.b}}" bind:__l="__l" u-p="{{g}}">{{item.a}}</uni-td><uni-td wx:if="{{h}}" u-s="{{['d']}}" u-i="{{item.c}}" bind:__l="__l" u-p="{{h}}">15</uni-td><uni-td wx:if="{{i}}" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{i}}">15</uni-td><uni-td wx:if="{{j}}" u-s="{{['d']}}" u-i="{{item.e}}" bind:__l="__l" u-p="{{j}}">16</uni-td></uni-tr></uni-table></view></view><view class="scinp"><view class="titl">齐套状态</view><view><cus-selects wx:if="{{m}}" bindchange="{{l}}" u-i="618f7990-12" bind:__l="__l" u-p="{{m}}"></cus-selects></view><view class="titl">包件类型</view><view><cus-selects wx:if="{{o}}" bindchange="{{n}}" u-i="618f7990-13" bind:__l="__l" u-p="{{o}}"></cus-selects></view><view class="btscan">查询</view></view><scroll-view class="scbx" scroll-y="true"><view class="mabox"><view wx:for="{{p}}" wx:for-item="item" class="item"><view class="toptitl"><view class="toplft"> 库位号:G-1-1-1 </view><view class="{{item.a}}"> 整托备货 </view></view><view class="boxcontt"><view><view><text style="color:#90A0AF">包装号:</text>0001</view><view><text style="color:#90A0AF">货物名称:</text>门板</view></view><view><view class="{{item.c}}"><text style="color:#90A0AF">扫描状态:</text>{{item.b}}</view></view></view><view class="buttts"><view class="anj"> 异常上报 </view></view></view></view></scroll-view> |
||||
<u-navbar wx:if="{{a}}" u-i="4322ba85-0" bind:__l="__l" u-p="{{a}}"></u-navbar><view class="headtop"><view><view>配车类型:{{b}}</view></view><view><view>车牌号:{{c}}</view><view>司机:{{d}}</view></view></view><view class="tabmabx"><view><uni-table wx:if="{{n}}" u-s="{{['d']}}" u-i="4322ba85-1" bind:__l="__l" u-p="{{n}}"><uni-tr u-s="{{['d']}}" u-i="4322ba85-2,4322ba85-1" bind:__l="__l"><uni-th wx:if="{{e}}" u-i="4322ba85-3,4322ba85-2" bind:__l="__l" u-p="{{e}}"></uni-th><uni-th wx:if="{{f}}" u-s="{{['d']}}" u-i="4322ba85-4,4322ba85-2" bind:__l="__l" u-p="{{f}}">配送客户数</uni-th><uni-th wx:if="{{g}}" u-s="{{['d']}}" u-i="4322ba85-5,4322ba85-2" bind:__l="__l" u-p="{{g}}">订单总数</uni-th><uni-th wx:if="{{h}}" u-s="{{['d']}}" u-i="4322ba85-6,4322ba85-2" bind:__l="__l" u-p="{{h}}">签收件数</uni-th></uni-tr><uni-tr wx:for="{{i}}" wx:for-item="item" u-s="{{['d']}}" u-i="{{item.i}}" bind:__l="__l"><uni-td wx:if="{{j}}" u-s="{{['d']}}" class="jhjs" u-i="{{item.b}}" bind:__l="__l" u-p="{{j}}">{{item.a}}</uni-td><uni-td wx:if="{{k}}" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{k}}">{{item.c}}</uni-td><uni-td wx:if="{{l}}" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{l}}">{{item.e}}</uni-td><uni-td wx:if="{{m}}" u-s="{{['d']}}" u-i="{{item.h}}" bind:__l="__l" u-p="{{m}}">{{item.g}}</uni-td></uni-tr></uni-table></view></view><view class="scinp"><view class="left"><view class="titl">齐套状态</view><view><cus-selects wx:if="{{p}}" bindchange="{{o}}" u-i="4322ba85-12" bind:__l="__l" u-p="{{p}}"></cus-selects></view></view><view bindtap="{{q}}" class="btscan">查询</view></view><view class="tabtip"><view bindtap="{{s}}"><view class="{{r}}">定制品</view></view><view bindtap="{{v}}"><view class="{{t}}">库存品</view></view></view><scroll-view class="scbx" scroll-y="true"><view class="mabox"><block wx:if="{{w}}"><view wx:for="{{x}}" wx:for-item="item" class="item"><view class="toptitl"><view class="toplft" catchtap="{{item.b}}"> 订单号:{{item.a}}</view></view><view class="boxcontt"><view><view><text style="color:#90A0AF">包条码:</text>{{item.c}}</view><view><text style="color:#90A0AF">货物名称:</text>{{item.d}}</view></view><view><view class="{{item.f}}"><text style="color:#90A0AF">扫描状态:</text> {{item.e}}</view></view></view></view></block><block wx:if="{{y}}"><view wx:for="{{z}}" wx:for-item="item" class="item"><view class="toptitl"><view class="toplft"> SKU:{{item.a}}</view></view><view class="boxcontt"><view><view><text style="color:#90A0AF">物品:</text>{{item.b}}</view><view><text style="color:#90A0AF">规格:</text>{{item.c}}</view></view><view><view><text style="color:#90A0AF">单位:</text>{{item.d}}</view></view></view></view></block></view></scroll-view> |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue