Browse Source

新增表格组件

dev
qb 7 months ago
parent
commit
49511bcc67
  1. 8
      compoment/CheckBox/CheckBox.vue
  2. 280
      compoment/MyTable/MyTable.vue
  3. 2
      compoment/saomiao2.vue
  4. 4
      config/host.js
  5. 3
      main.js
  6. 6
      pages/user/user.vue
  7. 2
      pagesHome/pages/Check/Check.vue
  8. 2
      pagesHome/pages/CustomerSign/CustomerSign.vue
  9. 2
      pagesHome/pages/DownGoodsType/DownGoodsType.vue
  10. 2
      pagesHome/pages/DownScan/DownScan.vue
  11. 2
      pagesHome/pages/Listinginboundtrains/Listinginboundtrains.vue
  12. 2
      pagesHome/pages/LoadingDetails/LoadingDetails.vue
  13. 2
      pagesHome/pages/LoadingScan/LoadingScan.vue
  14. 2
      pagesHome/pages/MergeTrayDetails/MergeTrayDetails.vue
  15. 2
      pagesHome/pages/OfflineUpload/OfflineUpload.vue
  16. 2
      pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.vue
  17. 2
      pagesHome/pages/PeopleScanUpType/PeopleScanUpType.vue
  18. 2
      pagesHome/pages/RelayScanList/RelayScanList.vue
  19. 2
      pagesHome/pages/ScanSortingType/ScanSortingType.vue
  20. 2
      pagesHome/pages/ScanUpType/ScanUpType.vue
  21. 2
      pagesHome/pages/SelfPickupScan/SelfPickupScan.vue
  22. 2
      pagesHome/pages/SetPrice/SetPrice.vue
  23. 2
      pagesHome/pages/SignDetailScan/SignDetailScan.vue
  24. 2
      pagesHome/pages/StorageLocationList/StorageLocationList.vue
  25. 4
      pagesHome/pages/UnorderTask/UnorderTask.vue
  26. 4
      pagesHome/pages/billsList/billsList.vue
  27. 4
      pagesHome/pages/directGoMarket/directGoMarket.vue
  28. 7
      pagesHome/pages/integralEdit/integralEdit.vue
  29. 2
      pagesHome/pages/inventoryDetailList/inventoryDetailList.vue
  30. 2
      pagesHome/pages/inventoryType/inventoryType.vue
  31. 2
      pagesHome/pages/inventoryenter/inventoryenter.vue
  32. 2
      pagesHome/pages/orderDetail/orderDetail.vue
  33. 2
      pagesHome/pages/orderDetails/orderDetails.vue
  34. 2
      pagesHome/pages/pickingScan/pickingScan.vue
  35. 377
      pagesHome/pages/signOrderScan/signOrderScan.vue
  36. 2
      pagesHome/pages/signinScan/signinScan.vue
  37. 128
      pagesHome/pages/trayInquiry/trayInquiry.vue
  38. 55
      pagesUser/pages/about/about.vue
  39. 9
      pagesUser/pages/securitySettings/securitySettings.vue
  40. 131
      pagesUser/pages/systemSettings/systemSettings.vue
  41. 2403
      unpackage/dist/dev/app-plus/app-service.js
  42. 53
      unpackage/dist/dev/app-plus/pagesHome/pages/signOrderScan/signOrderScan.css

8
compoment/CheckBox/CheckBox.vue

@ -1,12 +1,6 @@
<template>
<view @click.stop="handleClick" :class="{'checkbox':true, 'active':props.modelValue}">
<!-- <view class="fwb" v-show="props.modelValue">
L
</view> -->
<!-- <view class="">
</view> -->
</view>
</template>
@ -22,7 +16,7 @@
modelValue: {
default: false,
},
//
//
click: {
type: Function,
default: null

280
compoment/MyTable/MyTable.vue

@ -0,0 +1,280 @@
<template>
<view class="my_table">
<!-- 表头 -->
<view class="my_table_row my_table_head">
<!-- 是否复选框 -->
<template v-if="props.haveSelection">
<view class="selection td" @click.stop="handleClickAll">
<view :class="
{
'checkbox':true,
'active':details.isCheckAll === 2 || details.isCheckAll === 1,
'PartialActivation': details.isCheckAll === 1
}">
</view>
</view>
</template>
<block v-for="item in props.columnList">
<view class="td" :style="{width: item.width || '100px'}">
{{item.label}}
</view>
</block>
</view>
<!-- 表体 -->
<template v-if="props.data.length > 0">
<view class="my_table_body">
<block v-for="(value, index) in props.data" :key="value">
<view class="my_table_row my_table_data">
<!-- 是否复选框 -->
<template v-if="props.haveSelection">
<view class="selection td" @click.stop="()=>handleCheckItem(value, index)">
<view :class="{'checkbox':true, 'active':value.isCheck,}">
</view>
</view>
</template>
<block v-for="item in props.columnList" :key="item.label">
<view class="td" :style="{width: item.width || '100px'}">
{{value[item.prop]}}
</view>
</block>
</view>
</block>
</view>
</template>
<template v-else>
<view class="my_table_empty">
暂无数据
</view>
</template>
</view>
</template>
<script lang="ts" setup>
import { reactive, defineProps, defineEmits, watch } from 'vue';
const props = defineProps({
//
columnList: {
type: Array,
required: true
},
//
data: {
type: Array,
required: true
},
haveSelection: {
type: Boolean,
required: false,
default: false
}
})
const emits = defineEmits(['selectionChange'])
const details = reactive({
/** 是否全选 0 -- 全部未选, 1 -- 部分选择, 2 -- 全部选择 */
isCheckAll: 0 as 0 | 1 | 2,
/** 被选中的数组 */
selectionList: []
})
/** 点击全选按钮 */
const handleClickAll = () => {
/** 全部取消 */
const handleCheckByClose = () => {
details.isCheckAll = 0
for (let i = 0; i < props.data.length; i++) {
props.data[i].isCheck = false
}
details.selectionList = []
}
/** 全选 */
const handleCheckByAll = () => {
details.isCheckAll = 2
for (let i = 0; i < props.data.length; i++) {
props.data[i].isCheck = true
}
details.selectionList = [...props.data]
}
switch (details.isCheckAll) {
case 0:
handleCheckByAll()
break;
case 1:
handleCheckByAll()
break;
case 2:
handleCheckByClose()
break;
default:
break;
}
}
/** 是否选中 */
const handleIsCheck = () => {
let _flag = false
let _haveNot = false
for (let i = 0; i < props.data.length; i++) {
const item = props.data[i]
!item.isCheck && (_haveNot = true)
item.isCheck && (_flag = true)
}
if (!_flag) details.isCheckAll = 0
else if (_haveNot) details.isCheckAll = 1
else details.isCheckAll = 2
}
/** 点击 */
const handleCheckItem = (value, index) => {
value.isCheck = !value.isCheck
if (value.isCheck) {
details.selectionList.splice(index, 0, value)
} else details.selectionList.splice(index, 1)
handleIsCheck()
}
watch(() => props.data, () => {
console.log('123 :>> ', 123);
if (!props.haveSelection) return
handleIsCheck()
}, { deep: false, immediate: true })
watch(() => details.selectionList, () => {
console.log('111 :>> ', 111);
if (!props.haveSelection) return
emits('selectionChange', details.selectionList)
}, { deep: true, immediate: true })
</script>
<style lang="scss" scoped>
.my_table {
$border: 2upx solid #aaa;
border: $border;
width: 100%;
overflow-x: scroll;
box-sizing: border-box;
color: #606266;
font-size: 0.8rem;
.my_table_row {
width: fit-content;
min-width: 100%;
display: flex;
}
.my_table_head {
font-weight: bold;
background-color: #f5f7fa;
border-bottom: $border;
}
.my_table_data {
border-bottom: $border;
background-color: #fff;
font-size: 0.75rem;
&:last-child {
border-bottom: none;
}
}
.my_table_empty {
// border-top: $border;
height: 80upx;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.td {
padding: 8upx;
border-right: $border;
display: inline-flex;
align-items: center;
flex: 1;
word-break: break-all;
&:last-child {
border: none;
}
}
.selection {
padding: 8upx 20upx;
flex: none;
}
}
//
.checkbox {
border: 4upx solid #8d97a3;
background-color: #fff;
width: 40upx;
height: 40upx;
box-sizing: border-box;
color: #8d97a3;
border-radius: 6upx;
position: relative;
transition: all 0.3s;
&::after {
opacity: 0;
content: '';
border-bottom: 2px solid;
border-left: 2px solid;
position: absolute;
left: 50%;
width: 0;
height: 0;
transition: all 0.3s;
}
//
&.active {
border-color: var(--subjectColor);
color: var(--subjectColor);
&::after {
width: 30%;
height: 70%;
opacity: 1;
border-color: var(--subjectColor);
transform: translateX(-50%) rotateY(180deg) rotate(-45deg);
}
}
//
&.PartialActivation {
&::after {
transform: translateX(-50%) rotateY(180deg) rotate(-90deg);
border-bottom: none;
}
}
}
</style>

2
compoment/saomiao2.vue

@ -2,7 +2,7 @@
<view class="content"></view>
<view :class="{scan_continer: true,active:details.isShowEditMask}"
:style="{top: details.btnPosition.y + 'px', left: details.btnPosition.x + 'px', zIndex: isShowScanBtn? '100000': '-1'}"
:style="{top: details.btnPosition.y + 'px', left: details.btnPosition.x + 'px', zIndex: isShowScanBtn? '100000': '-1', display: isShowScanBtn ? 'flex': 'none'}"
@touchstart="(e)=> handleTouchStart(e)" @touchmove="handleTouchMove" @touchend="(e) => handleTouchEnd(e)"
id="scanBtn">
<u-icon name="scan" :color="details.isShowEditMask? '#fff':'#d3832a'" size="60" />

4
config/host.js

@ -29,9 +29,9 @@ const devhost = 'http://test.api.huo5you.com/'
/**
* 正式域名
* */
const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'https://h5uapi.huitongys.com/' // 小程序
// const prohost = 'http://test.api.huo5you.com/'
const prohost = 'http://test.api.huo5you.com/'
/**
* 图片域名
* */

3
main.js

@ -37,6 +37,8 @@ import RadioBox from '@/compoment/RadioBox/RadioBox.vue'
import MyInput from '@/compoment/MyInput/MyInput';
/** 抽屉组件 */
import MyDrawer from '@/compoment/MyDrawer/MyDrawer';
/** 表格 */
import MyTable from '@/compoment/MyTable/MyTable';
import saomiao1 from '@/compoment/saomiao1.vue'
import saomiao2 from '@/compoment/saomiao2.vue'
import saomiao3 from '@/compoment/saomiao3.vue'
@ -72,6 +74,7 @@ export function createApp() {
.component('RadioBox', RadioBox)
.component('MyInput', MyInput)
.component('MyDrawer', MyDrawer)
.component('MyTable', MyTable)
uni.$u.config.unit = 'rpx'
return {

6
pages/user/user.vue

@ -177,9 +177,9 @@
}
//
else if (item.type == 5) {
// uni.navigateTo({
// url: '/pagesUser/pages/about/about'
// })
uni.navigateTo({
url: '/pagesUser/pages/about/about'
})
} else if (item.type == 6) {
updateApp()
} else if (item.type == 8) {

2
pagesHome/pages/Check/Check.vue

@ -21,9 +21,7 @@
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
</script>

2
pagesHome/pages/CustomerSign/CustomerSign.vue

@ -171,9 +171,7 @@
})
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
console.log('onShow')
initpage()
getconfig()

2
pagesHome/pages/DownGoodsType/DownGoodsType.vue

@ -34,9 +34,7 @@
utils.ttsspke('请选择下架方式')
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
function gotourl(item : any) {
let url = '/pagesHome/pages/DownGoods/DownGoods?type=' + item.type + '&pageName=' + item.name

2
pagesHome/pages/DownScan/DownScan.vue

@ -12,9 +12,7 @@
onUnload
} from '@dcloudio/uni-app'
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
</script>

2
pagesHome/pages/Listinginboundtrains/Listinginboundtrains.vue

@ -26,9 +26,7 @@
const query = ref<any>({})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
onLoad((op) => {

2
pagesHome/pages/LoadingDetails/LoadingDetails.vue

@ -144,9 +144,7 @@
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
const timer = setTimeout(() => {
basicContainer.value.startPullDownRefresh()
clearTimeout(timer)

2
pagesHome/pages/LoadingScan/LoadingScan.vue

@ -170,9 +170,7 @@
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
const timer = setTimeout(() => {
basicContainer.value.startPullDownRefresh()
clearTimeout(timer)

2
pagesHome/pages/MergeTrayDetails/MergeTrayDetails.vue

@ -150,9 +150,7 @@
trayCode.value = op.tray
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
init()
})
function goorderdetail(item) {

2
pagesHome/pages/OfflineUpload/OfflineUpload.vue

@ -33,9 +33,7 @@
const tip = ref(null)
let taslarr = ref(null)
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
console.log('onshow');
taslarr.value = uni.getStorageSync('HistoryDate')
})

2
pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.vue

@ -197,9 +197,7 @@
details.trayCode = op.trayCode
})
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
initpage()
})
onPullDownRefresh(() => {

2
pagesHome/pages/PeopleScanUpType/PeopleScanUpType.vue

@ -22,9 +22,7 @@
let pageType = ref(null)
let trayCode = ref(null)
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
onLoad((op) => {
pageType.value = op.type

2
pagesHome/pages/RelayScanList/RelayScanList.vue

@ -172,9 +172,7 @@
}
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
await nextTick()
basicContainer.value.startPullDownRefresh()
})

2
pagesHome/pages/ScanSortingType/ScanSortingType.vue

@ -25,9 +25,7 @@
const query = ref({})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
onLoad((op) => {

2
pagesHome/pages/ScanUpType/ScanUpType.vue

@ -21,9 +21,7 @@
let pageType = ref(null)
let trayCode = ref(null)
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
onLoad((op) => {

2
pagesHome/pages/SelfPickupScan/SelfPickupScan.vue

@ -238,9 +238,7 @@
// date.value[1] = (uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd')
})
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
//
const pageSearchInfo = searchInfo.value['SelfPickupScan']
console.log('pageSearchInfo :>> ', pageSearchInfo);

2
pagesHome/pages/SetPrice/SetPrice.vue

@ -115,9 +115,7 @@
details.items = JSON.parse(op.item)
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
init()
})

2
pagesHome/pages/SignDetailScan/SignDetailScan.vue

@ -156,9 +156,7 @@
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
onLoad((op) => {

2
pagesHome/pages/StorageLocationList/StorageLocationList.vue

@ -134,9 +134,7 @@
})
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
await nextTick()

4
pagesHome/pages/UnorderTask/UnorderTask.vue

@ -280,11 +280,9 @@
}
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
await nextTick()
// if (!details.notRefresh) basicContainer.value.startPullDownRefresh()
if (!details.notRefresh) basicContainer.value.startPullDownRefresh()
})
onLoad(async () => {
date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 3), 'yyyy-mm-dd')

4
pagesHome/pages/billsList/billsList.vue

@ -74,7 +74,7 @@
</BasicContainer>
<saomiao2 :ishidestop="scanState !== 0"></saomiao2>
<saomiao2 :ishidestop="scanState !== 0"></saomiao2>
</template>
<script lang="ts" setup>
@ -140,10 +140,8 @@
// // #endif
})
onShow(async () => {
// #ifdef APP
//
uni.$off('scancodedate')
// #endif
await nextTick()
basicContainer.value.startPullDownRefresh()

4
pagesHome/pages/directGoMarket/directGoMarket.vue

@ -127,7 +127,7 @@
const UploadImg = ref()
const option = {
title: '直发商家签收列表',
title: '直发商家签收列表',
haveData: true,
isEnd: false,
async pullDownRefreshInitPage() {
@ -153,9 +153,7 @@
})
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
option.isEnd = false
details.current = 1

7
pagesHome/pages/integralEdit/integralEdit.vue

@ -261,6 +261,13 @@
console.log('files :>> ', files);
const type = 2
files.forEach(async item => {
const _path = item.path.split('.')
if (_path[_path.length - 1] === 'mp4') return uni.showToast({
title: '不支持上传视频',
icon: 'none'
})
let res = await utils.upfile(item.path)
console.log('res :>> ', res);
console.log(that.fileList2)

2
pagesHome/pages/inventoryDetailList/inventoryDetailList.vue

@ -110,9 +110,7 @@
checkindex: []
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
function removeitem() {
tip.value.setdetails({

2
pagesHome/pages/inventoryType/inventoryType.vue

@ -39,9 +39,7 @@
})
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
function gotourl(item : any) {
let url = ''

2
pagesHome/pages/inventoryenter/inventoryenter.vue

@ -197,9 +197,7 @@
// initmarlist()
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
initpage()
})
function stop() {

2
pagesHome/pages/orderDetail/orderDetail.vue

@ -13,9 +13,7 @@
} from '@dcloudio/uni-app'
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
})
</script>

2
pagesHome/pages/orderDetails/orderDetails.vue

@ -158,9 +158,7 @@
console.log('details.orderCode', details.orderCode);
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
initpage()
})

2
pagesHome/pages/pickingScan/pickingScan.vue

@ -174,9 +174,7 @@
}
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
//
const pageSearchInfo = searchInfo.value['pickingScan']

377
pagesHome/pages/signOrderScan/signOrderScan.vue

@ -53,37 +53,40 @@
<view :class="orderStatus==3?'xz':''">库存品</view>
</view>
</view>
<scroll-view class="scve" @touchmove.stop :style="{height: details.scrollHeight}" scroll-y="true">
<view class="mabx">
<block v-for="(item,index) in datalist">
<!-- 定制品 -->
<template v-if="orderStatus===1">
<view class="itec" @click="setcheckindex(index)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
<!-- <scroll-view class="scve" @touchmove.stop :style="{height: details.scrollHeight}" :scroll-y="true" :scroll-x="true"> -->
<view class="mabx" :style="{height: details.scrollHeight}">
<block v-for="(item,index) in datalist" :key="item.id">
<!-- 定制品 -->
<template v-if="orderStatus===1">
<view class="itec" @click="setcheckindex(index, item)">
<view class="contenbx1">
<view><text style="color: #90A0AF;" @click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNumber}}
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNumber}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">计划</text>{{item.reservationNum}}</view>
<view><text style="color: #90A0AF;">装车</text>{{item.loadingNub}}</view>
<view><text style="color: #90A0AF;">签收</text>{{item.signforNub}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">计划</text>{{item.reservationNum}}</view>
<view><text style="color: #90A0AF;">装车</text>{{item.loadingNub}}</view>
<view><text style="color: #90A0AF;">签收</text>{{item.signforNub}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">异常装车</text>{{item.abnormalLoading}}</view>
<view><text style="color: #90A0AF;">异常签收</text>{{item.abnormalSignature}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">异常装车</text>{{item.abnormalLoading}}</view>
<view><text style="color: #90A0AF;">异常签收</text>{{item.abnormalSignature}}</view>
</view>
<view :id="'packageBox' + index" class="packageBox"
:style="{height: listcheckindex==index ? item.packageBoxHieght: '0px'}">
<view class="xialaxz" v-if="listcheckindex==index">
<!-- <uni-table ref="uniTable1" border emptyText="暂无更多数据" style="max-height: 30vh; overflow-x: scroll;">
<template v-if="listcheckindex==index">
<view class="xialaxz">
<!-- <uni-table ref="uniTable1" border emptyText="暂无更多数据" style="max-height: 30vh; overflow-x: scroll;">
<uni-tr>
<uni-th align="left">包条码</uni-th>
<uni-th align="left">货物品类</uni-th>
@ -104,110 +107,112 @@
</uni-table> -->
<view class="main_row main_title">
<view class="">
包条码
</view>
<!-- 表格头 -->
<view class="main_row main_title">
<view class="">
包条码
</view>
<view class="">
货物品类
</view>
<view class="">
货物品类
</view>
<view class="">
签收状态
</view>
<view class="">
签收状态
</view>
<view class="">
异常状态
<view class="">
异常状态
</view>
</view>
</view>
<view class="jpScorllView">
<block v-for="ite in item.distributionAppParcelListVOS" :key="item.orderCode">
<view
:class="{'main_row': true, 'red': ite.isSignfor === 0, 'green': ite.isSignfor === 1,'active': Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1}">
<view class="">
{{ite.type === 1? ite.orderPackageCode: ite.orderPackageCode || '未备货'}}
</view>
<view class="jpScorllView">
<block v-for="ite in item.distributionAppParcelListVOS" :key="item.id">
<view
:class="{'main_row': true, 'red': ite.isSignfor === 0, 'green': ite.isSignfor === 1,'active': Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1}">
<view class="">
{{ite.type === 1? ite.orderPackageCode: ite.orderPackageCode || '未备货'}}
</view>
<view class="">{{ite.Product || '暂无数据'}}
</view>
<view class="">{{ite.Product || '暂无数据'}}
</view>
<view class="">
{{ite.isSignfor === 1?'已签':'未签'}}
</view>
<view class="">
{{ite.isSignfor === 1?'已签':'未签'}}
</view>
<view :class="{'red': ite.isAbnormal === 1}">
{{ite.isAbnormal === 1 ? '异常' : '/'}}
<view :class="{'red': ite.isAbnormal === 1}">
{{ite.isAbnormal === 1 ? '异常' : '/'}}
</view>
</view>
</view>
</block>
</block>
</view>
</view>
</view>
<view :class="item.signforNub==0?'tip tp2':item.signforNub==item.reservationNum?'tip tp1':'tip tp3'">
{{item.signforNub==0?'未扫':item.signforNub==item.reservationNum?'齐套':'部分扫'}}
</view>
</template>
</view>
</template>
<!-- 零担 -->
<template v-if="orderStatus===2">
<view class="itec" @click="checkphon(item,index)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
<view :class="item.signforNub==0?'tip tp2':item.signforNub==item.reservationNum?'tip tp1':'tip tp3'">
{{item.signforNub==0?'未扫':item.signforNub==item.reservationNum?'齐套':'部分扫'}}
</view>
</view>
</template>
<!-- 零担 -->
<template v-if="orderStatus===2">
<view class="itec" @click="checkphon(item,index)">
<view class="contenbx1">
<view><text style="color: #90A0AF;" @click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">产品名称</text>{{item.descriptionGoods}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">产品名称</text>{{item.descriptionGoods}}
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">计划签收</text>{{item.reservationNum}}</view>
<view><text
style="color: #90A0AF;">实际签收</text>{{(item.distributionParcelNumberVOS || []).reduce((cur, item)=>cur += item.signingNum || 0 ,0)}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">计划签收</text>{{item.reservationNum}}</view>
<view><text
style="color: #90A0AF;">实际签收</text>{{(item.distributionParcelNumberVOS || []).reduce((cur, item)=>cur += item.signingNum || 0 ,0)}}
</view>
</view>
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
</view>
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
</view>
</template>
<!-- 库存品 -->
<template v-if="orderStatus===3">
<view class="itec" @click="setcheckindex(index)">
<view class="contenbx1">
<view><text style="color: #90A0AF;">SKU</text>{{item.sku}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">包条码</text>{{item.orderPackageCode}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">物品</text>{{item.descriptionGoods}}</view>
<view><text style="color: #90A0AF;">规格</text>{{item.specification}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">单位</text>{{item.logpmUnit}}</view>
<!-- <view><text style="color: #90A0AF;">签收</text>{{item.signforNub}}</view> -->
</view>
<!-- <view :class="item.signforNub==0?'tip tp2':item.signforNub==item.reservationNum?'tip tp1':'tip tp3'">
</view>
</template>
<!-- 库存品 -->
<template v-if="orderStatus===3">
<view class="itec">
<view class="contenbx1">
<view><text style="color: #90A0AF;">SKU</text>{{item.sku}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">包条码</text>{{item.orderPackageCode}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">物品</text>{{item.descriptionGoods}}</view>
<view><text style="color: #90A0AF;">规格</text>{{item.specification}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">单位</text>{{item.logpmUnit}}</view>
<!-- <view><text style="color: #90A0AF;">签收</text>{{item.signforNub}}</view> -->
</view>
<!-- <view :class="item.signforNub==0?'tip tp2':item.signforNub==item.reservationNum?'tip tp1':'tip tp3'">
{{item.signforNub==0?'未扫':item.signforNub==item.reservationNum?'齐套':'部分扫'}}
</view> -->
<view :class="item.signforNub==0?'tip tp2':'tip tp1'">
{{item.signforNub==0?'未扫':'已扫'}}
</view>
<view :class="item.signforNub==0?'tip tp2':'tip tp1'">
{{item.signforNub==0?'未扫':'已扫'}}
</view>
</template>
</block>
</view>
</template>
</block>
<!-- 底部占位元素 -->
<view class="footer_container">
<!-- 底部占位元素 -->
<view class="footer_container">
</view>
</view>
</scroll-view>
</view>
<!-- </scroll-view> -->
<view class="jumpBtn" @click="handlePackageScan">
详情扫描
@ -375,7 +380,7 @@
onMounted(async () => {
await nextTick()
utils.getViewDistanceFormTop('.scve').then(res => {
utils.getViewDistanceFormTop('.mabx').then(res => {
console.log('res :>> ', res);
details.scrollHeight = res
})
@ -601,11 +606,21 @@
return null
}
}
function setcheckindex(index : number) {
async function setcheckindex(index : number, item) {
if (details.listcheckindex == index) {
details.listcheckindex = -1
} else {
details.listcheckindex = index
await nextTick()
uni.createSelectorQuery().select('#packageBox' + index + ' .xialaxz').boundingClientRect(async function (rect) {
// console.log('', rect.height);
console.log('rect :>> ', rect);
await nextTick()
item.packageBoxHieght = rect.height + 'px'
}).exec();
// item.packageBoxHieght =
}
}
@ -712,6 +727,11 @@
details.listcheckindex = index
}
}
const handleMove = (e) => {
e.preventDefault()
// console.log('e :>> ', e);
}
const { listcheckindex, inputtxt, orderStatus, datalist, items, typearr, schanvalue } = toRefs(details)
</script>
@ -732,10 +752,12 @@
}
.xialaxz {
zoom: 0.9;
// zoom: 0.9;
overflow-x: scroll;
word-wrap: break-word;
word-break: break-all;
font-size: 0.9rem;
width: 100%;
}
.tabtip {
@ -769,78 +791,81 @@
}
}
.scve {
width: 100%;
height: 62.2vh;
// .scve {
// width: 100%;
// height: 62.2vh;
// margin-top: 20upx;
.mabx {
// display: flex;
// flex-direction: column;
// align-items: center;
margin-top: 20upx;
padding: 20upx;
overflow-y: scroll;
.mabx {
display: flex;
flex-direction: column;
align-items: center;
.itec {
width: 686upx;
background: #FFFFFF;
border-radius: 8upx;
padding: 20upx;
box-sizing: border-box;
position: relative;
margin-bottom: 20upx;
>.itec {
width: 686upx;
// height: 176upx;
background: #FFFFFF;
border-radius: 8upx;
padding: 20upx;
box-sizing: border-box;
position: relative;
&:nth-last-child(1) {
margin-bottom: 0;
}
.contenbx1 {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 28upx;
color: #092C4D;
margin-bottom: 20upx;
&:nth-last-child(1) {
&:nth-last-child(2) {
margin-bottom: 0;
}
>.contenbx1 {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 28upx;
color: #092C4D;
margin-bottom: 20upx;
&:nth-last-child(2) {
margin-bottom: 0;
}
>view {
flex: 1;
}
>view {
flex: 1;
}
}
.tip {
position: absolute;
right: 0;
top: 0;
width: 96upx;
height: 48upx;
border-radius: 0 8upx 0 8upx;
display: flex;
align-items: center;
justify-content: center;
font-size: 24upx;
}
.tip {
position: absolute;
right: 0;
top: 0;
width: 96upx;
height: 48upx;
border-radius: 0 8upx 0 8upx;
display: flex;
align-items: center;
justify-content: center;
font-size: 24upx;
}
.tp1 {
background-color: #0086F120;
color: #0086F1;
}
.tp1 {
background-color: #0086F120;
color: #0086F1;
}
.tp2 {
background-color: #F8544B20;
color: #F8544B;
}
.tp2 {
background-color: #F8544B20;
color: #F8544B;
}
.tp3 {
background-color: #FA8C1620;
color: #FA8C16;
}
.tp3 {
background-color: #FA8C1620;
color: #FA8C16;
}
}
}
// }
.hdstop {
width: 100%;
padding: 20upx;
@ -992,11 +1017,17 @@
>view {
background: #eee;
color: #092C4D !important;
}
}
.main_row {
$boder: 1upx solid #999;
display: flex;
width: fit-content;
border-top: $boder;
border-left: $boder;
&.green {
color: #0a0;
@ -1008,12 +1039,14 @@
>view {
padding: 10upx 5upx;
font-size: 0.9rem;
font-size: 0.8rem;
word-break: break-all;
text-align: center;
border-bottom: 1upx dashed #999;
border-bottom: $boder;
border-right: $boder;
width: 240upx;
flex: none;
color: #777;
// &:nth-child(3) {
@ -1052,7 +1085,13 @@
}
.jpScorllView {
width: 100%;
overflow: scroll;
width: fit-content;
max-height: 400upx;
overflow-y: scroll;
}
.packageBox {
transition: all 0.3s;
overflow: hidden;
}
</style>

2
pagesHome/pages/signinScan/signinScan.vue

@ -185,9 +185,7 @@
// init()
})
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
//
const timer = setTimeout(() => {
basicContainer.value.startPullDownRefresh()

128
pagesHome/pages/trayInquiry/trayInquiry.vue

@ -46,14 +46,14 @@
<text class="row_title1">
打托方式
</text>
{{(scansortingType.find(val=> val.type === info.trayType || {})).name || '暂无数据'}}
{{(scansortingType.find(val=> val.type + '' === info.trayType + '' )|| {}).name || '暂无数据'}}
</view>
<view class="">
<text class="">
商场
名称
</text>
{{info.marketName || '暂无数据'}}
{{info.filterValue || '暂无数据'}}
</view>
</view>
@ -114,50 +114,53 @@
</view>
</view>
<scroll-view scroll-y="true" style="height: 60vh; margin-top: 10px;">
<uni-table type="selection" border stripe emptyText="暂无更多数据"
@selection-change="({detail: {index}})=> selectionChange(index, 'order')">
<!-- 表头行 -->
<!-- <scroll-view scroll-y="true" style="height: 60vh; margin-top: 10px;"> -->
<uni-table type="selection" border stripe emptyText="暂无更多数据"
@selection-change="({detail: {index}})=> selectionChange(index, 'order')">
<!-- 表头行 -->
<uni-tr>
<uni-th align="left">包条码</uni-th>
<uni-th align="left">合同号</uni-th>
<!-- <uni-th align="left">运单号</uni-th> -->
<uni-th align="left">一级品</uni-th>
<uni-th align="left">二级品</uni-th>
<uni-th align="left">三级品</uni-th>
<uni-th align="left">物料名称</uni-th>
<uni-th align="left">物料编码</uni-th>
<uni-th align="left">仓库</uni-th>
<uni-th align="left">数量</uni-th>
</uni-tr>
<!-- 表格数据行 -->
<block v-for="item in packageList">
<uni-tr>
<uni-th align="left">包条码</uni-th>
<uni-th align="left">合同号</uni-th>
<!-- <uni-th align="left">运单号</uni-th> -->
<uni-th align="left">一级品</uni-th>
<uni-th align="left">二级品</uni-th>
<uni-th align="left">三级品</uni-th>
<uni-th align="left">物料名称</uni-th>
<uni-th align="left">物料编码</uni-th>
<uni-th align="left">仓库</uni-th>
<uni-th align="left">数量</uni-th>
<!-- 包条码 -->
<uni-td>{{item.orderPackageCode}}</uni-td>
<!-- 合同号 -->
<uni-td>{{item.orderCode}}</uni-td>
<!-- 运单号 -->
<!-- <uni-td>{{item.waybillNo}}</uni-td> -->
<!-- 一级品 -->
<uni-td>{{item.firsts}}</uni-td>
<!-- 二级品 -->
<uni-td>{{item.seconds}}</uni-td>
<!-- 三级品 -->
<uni-td>{{item.thirds}}</uni-td>
<!-- 物料名称 -->
<uni-td>{{item.materialName}}</uni-td>
<!-- 物料编码 -->
<uni-td>{{item.materialCode}}</uni-td>
<!-- 仓库 -->
<uni-td>{{item.warehouseName}}</uni-td>
<!-- 数量 -->
<uni-td>{{item.num}}</uni-td>
</uni-tr>
<!-- 表格数据行 -->
<block v-for="item in packageList">
<uni-tr>
<!-- 包条码 -->
<uni-td>{{item.orderPackageCode}}</uni-td>
<!-- 合同号 -->
<uni-td>{{item.orderCode}}</uni-td>
<!-- 运单号 -->
<!-- <uni-td>{{item.waybillNo}}</uni-td> -->
<!-- 一级品 -->
<uni-td>{{item.firsts}}</uni-td>
<!-- 二级品 -->
<uni-td>{{item.seconds}}</uni-td>
<!-- 三级品 -->
<uni-td>{{item.thirds}}</uni-td>
<!-- 物料名称 -->
<uni-td>{{item.materialName}}</uni-td>
<!-- 物料编码 -->
<uni-td>{{item.materialCode}}</uni-td>
<!-- 仓库 -->
<uni-td>{{item.warehouseName}}</uni-td>
<!-- 数量 -->
<uni-td>{{item.num}}</uni-td>
</uni-tr>
</block>
</block>
</uni-table>
</scroll-view>
</uni-table>
<!-- <MyTable :columnList="columnList" @selectionChange="(list)=> selectionChange(list, 'order')"
:data="packageList" :haveSelection="true" /> -->
<!-- </scroll-view> -->
</view>
<!-- 零担 -->
@ -276,17 +279,17 @@
/** 详情 */
const info = ref<any>({ trayInfo: {} })
//
const orderStateDictionaries = reactive({
'10': '部分入库',
'20': '已入库',
'30': '部分出库',
'40': '已出库',
'50': '部分装车',
'60': '已装车',
'70': '部分签收',
'80': '已签收',
})
const columnList = ref([
{ label: '包条码', width: '10rem', prop: 'orderPackageCode' },
{ label: '合同号', width: '10rem', prop: 'orderCode' },
{ label: '一级品', width: '10rem', prop: 'firsts' },
{ label: '二级品', width: '10rem', prop: 'seconds' },
{ label: '三级品', width: '10rem', prop: 'thirds' },
{ label: '物料名称', width: '10rem', prop: 'materialName' },
{ label: '物料编码', width: '10rem', prop: 'materialCode' },
{ label: '仓库', width: '10rem', prop: 'warehouseName' },
{ label: '数量', width: '10rem', prop: 'num' },
])
/** 打托方式类型 */
const scansortingType = reactive([
@ -581,7 +584,6 @@
display: flex;
justify-content: space-around;
font-size: 32upx;
// font-weight: bold;
margin: 20upx 0;
&>view {
@ -589,22 +591,9 @@
flex: 1;
text-align: center;
position: relative;
// background: #fff;
transition: all 0.3s;
border-radius: 10upx;
// &::after {
// content: '';
// display: block;
// position: absolute;
// height: 4upx;
// width: 0;
// // background: var(--subjectColor);
// top: 100%;
// left: 50%;
// transition: all 0.5s;
// }
&.active {
background: var(--subjectColor);
color: #fff;
@ -647,7 +636,6 @@
.uni-table-td,
.uni-table-th {
// color: var(--subjectColor);
color: #000;
padding: 10upx;
word-break: break-all;

55
pagesUser/pages/about/about.vue

@ -1,36 +1,48 @@
<template>
<view>
<MyTree :tree-data="treeData" @node-click="nodeClick" :activeId="activeId"></MyTree>
<MyTable :columnList="columnList" :data="data" :haveSelection="true" />
</view>
</template>
<script lang="ts">
import MyTable from '@/compoment/MyTable/MyTable.vue';
export default {
components: {
MyTable
}
}
</script>
<script lang="ts" setup>
import { ref } from 'vue';
const treeData = [
{ id: 1, name: '一级1' },
{ id: 1, title: '一级1' },
{
id: 2,
name: '一级2',
title: '一级2',
children: [
{ id: 3, name: '二级2-1' },
{ id: 4, name: '二级2-2' }
{ id: 3, title: '二级2-1' },
{ id: 4, title: '二级2-2' }
]
},
{
id: 5,
name: '一级3',
title: '一级3',
children: [
{
id: 6,
name: '二级3-1',
title: '二级3-1',
children: [
{ id: 7, name: '三级3-1-1' },
{ id: 8, name: '三级3-1-2' }
{ id: 7, title: '三级3-1-1' },
{ id: 8, title: '三级3-1-2' }
]
},
{ id: 9, name: '二级3-2' },
{ id: 10, name: '二级3-3' }
{ id: 9, title: '二级3-2' },
{ id: 10, title: '二级3-3' }
]
}
]
@ -41,6 +53,29 @@
console.log(val)
activeId.value = val.id
}
const columnList = ref([
{
label: '名称',
width: '111px'
},
{
label: '名称',
width: '111px'
},
{
label: '名称',
width: '111px'
},
{
label: '名称',
width: '111px'
}
])
const data = ref([
{ isCheck: true }, {}, {}
])
</script>
<style lang="scss" scoped></style>

9
pagesUser/pages/securitySettings/securitySettings.vue

@ -4,14 +4,14 @@
:autoBack="true" leftIconSize='35'></u-navbar>
<view class="list">
<!-- 设置密码 -->
<view class="list_item" style="display: flex;" @click="showEditPwd">
<view class="list_item flex-c-c" @click="showEditPwd">
<view class="uni-list-cell-left">
<u-icon class="margin-right-10" name="setting-fill" color="#47beff"></u-icon>
<u-icon class="margin-right-10" name="setting-fill" size="36" color="#47beff"></u-icon>
<view>
设置密码
</view>
</view>
<u-icon name="arrow-right" color="#000"></u-icon>
<u-icon name="arrow-right" size="36" color="#000"></u-icon>
</view>
</view>
</view>
@ -206,9 +206,12 @@
</script>
<style lang="scss" scoped>
@import url(@/utils/style/common.scss);
.container {
width: 100vw;
height: 100vh;
font-size: 1rem;
// background: #fff;
}

131
pagesUser/pages/systemSettings/systemSettings.vue

@ -4,48 +4,33 @@
:autoBack="true" leftIconSize='35'></u-navbar>
<view class="list">
<!-- 设置后台监听状态 -->
<view class="list_item" style="display: flex;">
<view class="list_item flex-c-c">
<view class="uni-list-cell-left">
<u-icon class="margin-right-10" name="moments" color="#47beff"></u-icon>
<u-icon class="mr20" name="moments" size="36" color="#47beff"></u-icon>
<view>
扫描后台监听状态
</view>
</view>
<view class="uni-list-cell-db">
<picker @change="bindPickerChange" :value="details.scanStateChooseIndex"
:range="details.scanStateList.map(val => val.title)">
<view class="uni-input">{{details.scanStateList.map(val => val.title)[details.scanStateChooseIndex]}}
</view>
</picker>
</view>
<u-switch v-model="details.isListen" @change="handleChangeByListen" size="40" inactive-color="#e6e6e6"
active-color="#d3832a"></u-switch>
</view>
<view class="list_item mt20 flex" @click="handleSetIsShowScanBtn">
<!-- 是否显示扫描按钮 -->
<view class="list_item mt20 flex-c-c">
<view class="uni-list-cell-left">
<u-icon class="margin-right-10" name="moments" color="#47beff"></u-icon>
<u-icon class="mr20" name="moments" size="36" color="#47beff"></u-icon>
<view>
是否显示扫描按钮
</view>
</view>
<view class="uni-list-cell-db">
{{ isShowScanBtn ? '开启' : '关闭' }}
</view>
<u-switch v-model="details.isShowScanBtn" @change="handleChangeByShowScanBtn" @click.stop size="40"
inactive-color="#e6e6e6" active-color="#d3832a"></u-switch>
</view>
</view>
</view>
<MyDrawer ref="myDrawer">
<template #content>
<picker-view v-if="details.visible" :indicator-style="details.indicatorStyle" :immediate-change="true"
:value="details.value" @change="bindChange" class="picker-view">
<picker-view-column>
<view class="item" v-for="(item, index) in details.pickerArr" :key="index">
{{ item.label }}
</view>
</picker-view-column>
</picker-view>
</template>
</MyDrawer>
</template>
<script lang="ts" setup>
@ -81,90 +66,25 @@
const details = reactive({
//
scanStateList: [],
// --
scanStateChooseIndex: 0,
indicatorStyle: `height: 40px;`,
visible: false,
value: [0],
pickerArr: [
{
label: '开启',
value: true
},
{
label: '关闭',
value: false
},
],
/** 是否后台监听 */
isListen: false,
/** 是否显示扫描按钮 */
isShowScanBtn: false
})
//
const myDrawer = ref()
//
details.scanStateList = scanStateList.value
//
details.scanStateChooseIndex = scanStateList.value.findIndex(val => Number(val.value) === Number(scanState.value))
/**
* 处理扫描后台监听状态
*/
function bindPickerChange(e) {
console.log('picker发送选择改变,携带值为', e.detail.value)
details.scanStateChooseIndex = e.detail.value
// ,
HANDLE_SCANSTATE(details.scanStateChooseIndex)
}
/** picker切换时执行 */
const bindChange = function (e, type) {
console.log('type :>> ', type);
console.log('e :>> ', e);
details.value = e.detail.value
details.isListen = scanState.value === 1
details.isShowScanBtn = isShowScanBtn.value
/** 是否监听 */
const handleChangeByListen = (changeValue) => {
HANDLE_SCANSTATE(changeValue ? 1 : 0)
}
/** 关闭弹窗 */
const hidePopUp = (node) => {
details.visible = false
node.value.details.showPopUp = false
/** 是否显示扫描按钮 */
const handleChangeByShowScanBtn = (changeValue) => {
HANDLE_SETSCANBTN(changeValue)
}
const handleSetIsShowScanBtn = () => {
const index = details.pickerArr.findIndex((val) => val.value === isShowScanBtn.value)
details.value = index !== -1 ? [index] : [1]
console.log('index :>> ', index);
details.visible = true
myDrawer.value.setDetails({
showPopUp: true,
height: '50vh',
isShowButton: true,
success() {
console.log('details.value :>> ', details.value);
try {
const _item = details.pickerArr[details.value[0]]
HANDLE_SETSCANBTN(_item.value)
} catch (err) {
console.log('err :>> ', err);
} finally {
hidePopUp(myDrawer)
}
},
close() {
hidePopUp(myDrawer)
}
})
}
const { } = toRefs(details)
</script>
<style lang="scss" scoped>
@ -173,11 +93,10 @@
.container {
width: 100vw;
height: 100vh;
font-size: 1rem;
// background: #fff;
}
.list {}
.list_item {
display: flex;
justify-content: space-between;

2403
unpackage/dist/dev/app-plus/app-service.js vendored

File diff suppressed because it is too large Load Diff

53
unpackage/dist/dev/app-plus/pagesHome/pages/signOrderScan/signOrderScan.css vendored

@ -537,10 +537,11 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #FFFFFF;
}
.xialaxz[data-v-fb393026] {
zoom: 0.9;
overflow-x: scroll;
word-wrap: break-word;
word-break: break-all;
font-size: 0.9rem;
width: 100%;
}
.tabtip[data-v-fb393026] {
display: flex;
@ -568,17 +569,12 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #D3832A;
border-bottom: 0.25rem solid #D3832A;
}
.scve[data-v-fb393026] {
width: 100%;
height: 62.2vh;
.mabx[data-v-fb393026] {
margin-top: 0.625rem;
padding: 0.625rem;
overflow-y: scroll;
}
.scve .mabx[data-v-fb393026] {
display: flex;
flex-direction: column;
align-items: center;
}
.scve .mabx > .itec[data-v-fb393026] {
.mabx .itec[data-v-fb393026] {
width: 21.4375rem;
background: #FFFFFF;
border-radius: 0.25rem;
@ -587,10 +583,10 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
position: relative;
margin-bottom: 0.625rem;
}
.scve .mabx > .itec[data-v-fb393026]:nth-last-child(1) {
.mabx .itec[data-v-fb393026]:nth-last-child(1) {
margin-bottom: 0;
}
.scve .mabx > .itec > .contenbx1[data-v-fb393026] {
.mabx .itec .contenbx1[data-v-fb393026] {
display: flex;
align-items: center;
justify-content: space-between;
@ -598,13 +594,13 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #092C4D;
margin-bottom: 0.625rem;
}
.scve .mabx > .itec > .contenbx1[data-v-fb393026]:nth-last-child(2) {
.mabx .itec .contenbx1[data-v-fb393026]:nth-last-child(2) {
margin-bottom: 0;
}
.scve .mabx > .itec > .contenbx1 > uni-view[data-v-fb393026] {
.mabx .itec .contenbx1 > uni-view[data-v-fb393026] {
flex: 1;
}
.scve .mabx > .itec .tip[data-v-fb393026] {
.mabx .itec .tip[data-v-fb393026] {
position: absolute;
right: 0;
top: 0;
@ -616,15 +612,15 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
justify-content: center;
font-size: 0.75rem;
}
.scve .mabx > .itec .tp1[data-v-fb393026] {
.mabx .itec .tp1[data-v-fb393026] {
background-color: #0086F120;
color: #0086F1;
}
.scve .mabx > .itec .tp2[data-v-fb393026] {
.mabx .itec .tp2[data-v-fb393026] {
background-color: #F8544B20;
color: #F8544B;
}
.scve .mabx > .itec .tp3[data-v-fb393026] {
.mabx .itec .tp3[data-v-fb393026] {
background-color: #FA8C1620;
color: #FA8C16;
}
@ -746,9 +742,14 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
}
.main_title > uni-view[data-v-fb393026] {
background: #eee;
color: #092C4D !important;
}
.main_row[data-v-fb393026] {
display: flex;
width: -webkit-fit-content;
width: fit-content;
border-top: 0.03125rem solid #999;
border-left: 0.03125rem solid #999;
}
.main_row.green[data-v-fb393026] {
color: #0a0;
@ -758,12 +759,14 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
}
.main_row > uni-view[data-v-fb393026] {
padding: 0.3125rem 0.15625rem;
font-size: 0.9rem;
font-size: 0.8rem;
word-break: break-all;
text-align: center;
border-bottom: 0.03125rem dashed #999;
border-bottom: 0.03125rem solid #999;
border-right: 0.03125rem solid #999;
width: 7.5rem;
flex: none;
color: #777;
}
.main_row > uni-view:last-child.red[data-v-fb393026] {
background-color: #ff5500;
@ -783,6 +786,12 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
height: 4.6875rem;
}
.jpScorllView[data-v-fb393026] {
width: 100%;
overflow: scroll;
width: -webkit-fit-content;
width: fit-content;
max-height: 12.5rem;
overflow-y: scroll;
}
.packageBox[data-v-fb393026] {
transition: all 0.3s;
overflow: hidden;
}
Loading…
Cancel
Save