This commit is contained in:
wangweidong 2025-12-11 08:39:22 +08:00
commit 819ba71570
18 changed files with 1974 additions and 743 deletions

View File

@ -148,6 +148,13 @@
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/procurement/inventory",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/Warehouse/warehome"
},

View File

@ -127,12 +127,13 @@
const qglog = ()=>{
let obj = {
nuId:uni.getStorageSync('nuId'),
elderId:uni.getStorageSync('NUall').id,
elderId:uni.getStorageSync('NUall').elderId,
wlId:props.objtake.wlId,
pageNo:pageNo.value,
pageSize:20
}
queryQlwcLog(obj).then(res=>{
console.log("咋没有",obj,res)
wcLog.value.push(...res.result.records);
status.value = (res.result.total == wcLog.value.length ? 'nomore' : 'loadmore')
})

View File

@ -166,10 +166,10 @@
:src="item.materialInfo.materialImg?serverUrl+item.materialInfo.materialImg:'/static/index/procurement/k.png'"
mode="aspectFill"></image>
<view class="left-tages" style="margin-top: -15rpx;">
耗材用品
{{ item.materialInfo.categoryName}}
</view>
<view class="left-tages">
支架
{{ item.materialInfo.typeName}}
</view>
</view>
<view class="right-one-right">
@ -221,7 +221,8 @@
import defaultr from '../common/default.vue'
const props = defineProps({
isShow: {
type: Boolean
type: Boolean,
required: true,
},
});
const tagsarray = ref(["全部", "待出库", "已出库", "已收货 ", "已作废"])
@ -231,10 +232,12 @@
watch(
() => props.isShow,
(newVal, oldVal) => {
console.log("??????",newVal, oldVal)
// falsetrue0.2
if (!oldVal && newVal) {
transition.value = false;
firstgetqueryCgdList();
chongzhi()
// firstgetqueryCgdList();
setTimeout(() => {
transition.value = true;
}, 50)
@ -303,7 +306,7 @@
plzinfo.searchContent = ""
changetype(0)
firstgetqueryCgdList()
// firstgetqueryCgdList()
setTimeout(() => chongzhiLock = false, 500)
}
@ -349,6 +352,7 @@
queryQldWlInfo({ qldNo: res.result.records[0].qldNo }).then((element : any) => {
rightarray.value = []
// console.log("////",element.result)
rightarray.value.push(...element.result)
rightdonghua.value = true;
})
@ -754,6 +758,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 25rpx;
}
}
}

View File

@ -87,11 +87,9 @@
</view>
<view class="middle-heng-father">
<image class="middle-ball-img" style="width: 32rpx;height: 32rpx;" v-if="v?.status === '2' || v?.status === '3'" src="/static/index/requestform/iserror.png" />
<!-- <view class="middle-ball" style="background-color: #1083F8;"
:style=" v?.status === '2' || v?.status === '3' ?{backgroundColor:`#FF5757`}:{}"
v-if="Number(v.status)<4">
</view> -->
<image class="middle-ball-img" v-else src="/static/index/requestform/isok.png" />
<view class="middle-ball" style="background-color: #1083F8;" v-else >
</view>
<!-- <image class="middle-ball-img" v-else src="/static/index/requestform/isok.png" /> -->
</view>
<view class="end-font">
@ -286,10 +284,10 @@
cannomessage.value = false
plsbuy.value = [];
console.log(res)
// console.log(res)
plsbuy.value.push(...res.result.records)
// console.log("", plzinfo)
// console.log("", res.result.records)
console.log("查看数组", res.result.records)
alltotal.value = res.result.total
// console.log("???", res)
@ -709,6 +707,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 25rpx;
}
}
}

View File

@ -2382,7 +2382,7 @@
.end-font {
width: 100%;
height: 6vh;
font-size: 23rpx;
font-size: 25rpx;
text-align: center;
color: #666666;
overflow: hidden;

View File

@ -422,8 +422,8 @@
</view>
<view class="bottom-right" @click="openselect=false">
确定
<text style="font-size: 25rpx;margin-top: 5rpx;" v-if="alltotal>=99">
(99+采购单)
<text style="font-size: 25rpx;margin-top: 5rpx;" v-if="alltotal">
{{ alltotal }}采购单
</text>
</view>
</view>
@ -2346,7 +2346,7 @@
.end-font {
width: 100%;
height: 6vh;
font-size: 23rpx;
font-size: 25rpx;
text-align: center;
color: #666666;
overflow: hidden;

View File

@ -762,6 +762,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 25rpx;
}
}
}

View File

@ -52,10 +52,10 @@
<view class="jianhuo tp">
<donghua width="40vw" height="40vw" :interval="150" :links="jianhuoarray" :playing="playall" :loop="true" />
</view>
<view class="pandan tp">
<view class="pandan tp" @click="housactive(5)">
<image src="/static/index/warehouse/newhome/count.png" mode="widthFix"></image>
</view>
<view class="pandantag tp">
<view class="pandantag tp" @click="housactive(5)">
<view class="gray-bgc">
库存盘点
<view class="triangle-left"></view>
@ -206,8 +206,8 @@
url: '/' + navurl.value
})
}
if (index == 8) {
navurl.value = 'pages/procurement/retstock'
if (index == 5) {
navurl.value = 'pages/procurement/inventory'
uni.navigateTo({
url: '/' + navurl.value
})
@ -218,6 +218,13 @@
url: '/' + navurl.value
})
}
if (index == 8) {
navurl.value = 'pages/procurement/retstock'
uni.navigateTo({
url: '/' + navurl.value
})
}
}

View File

@ -1,694 +0,0 @@
<template>
<view>
<view class="home">
<image class="all-home" src="/static/index/warehouse/newhome/setting.png" mode="aspectFit"></image>
</view>
<view class="paizi tp" @click="ceshi">
<donghua width="18vw" height="18vw" :interval="300" :links="paiziarray" :playing="playall" :loop="true" />
</view>
<view class="jiankong tp" @click="back">
<donghua width="17vw" height="17vw" :interval="300" :links="jiankongarray" :playing="playall"
:loop="true" />
</view>
<view class="wanjie tp">
<donghua width="18vw" height="18vw" :interval="300" :links="wanjiearray" :playing="playall" :loop="true" />
</view>
<view class="caigou tp">
<donghua width="18vw" height="18vw" :interval="300" :links="caigouarray" :playing="playall" :loop="true" />
</view>
<view class="ruku tp">
<donghua width="11vw" height="11vw" :interval="300" :links="rukuarray" :playing="playall" :loop="true" />
</view>
<view class="chuku tp">
<donghua width="11vw" height="11vw" :interval="300" :links="rukuarray" :playing="playall" :loop="true" />
</view>
<view class="jianhuo tp">
<donghua width="40vw" height="40vw" :interval="300" :links="jianhuoarray" :playing="playall" :loop="true" />
</view>
<view class="pandan tp">
<image src="/static/index/warehouse/newhome/count.png" mode="widthFix"></image>
</view>
<view class="return tp">
<image src="/static/index/warehouse/newhome/return.png" mode="widthFix"></image>
</view>
<view class="lead tp">
<image src="/static/index/warehouse/newhome/lead.png" mode="widthFix"></image>
</view>
<view class="picking tp">
<image src="/static/index/warehouse/newhome/picking.png" mode="widthFix"></image>
</view>
<view :style="moverStyle" >
<image style="width: 100%;height: 100%;" src="/static/index/warehouse/newhome/train9.png" mode="widthFix"></image>
</view>
<!-- <view class="contitem tp">
<image src="/static/index/warehouse/home/warehouse.png" mode="aspectFill"></image>
</view>
<view class="hldy tp">
<donghua width="16vw" height="8.6vw" :links="logoval.url" :playing="true" />
</view>
<view class="route tp">
<image src="/static/index/warehouse/home/carrhate.gif" mode="aspectFill" style="z-index: 4;"></image>
</view>
<view class="pulu1 tp">
<image src="/static/index/warehouse/home/pu3.gif" mode="aspectFill"></image>
</view>
<view class="pulu2 tp">
<image src="/static/index/warehouse/home/pu2.gif" mode="aspectFill"></image>
</view>
<view class="clikurlbox">
<view class="tp" :class="'itemact'+(index+1)" v-for="(item,index) in animArray" :key='index'
@click="housactive(index)">
<donghua :width="item.width" :height="item.height" :links="item.url" :playing="index == housedex" />
</view>
</view>
<view class="cardtm">
<view class="b" :class="{ 'actve':housedex == i}" v-for="(v,i) in ['采购','盘点','拣货','后勤','退货','监控室']"
@click="housactive(i)">
<text></text>{{v}}
<view class="tp">
<image src="/static/index/warehouse/home/z.png" mode=""></image>
</view>
</view>
</view>
<view class="contain-right-button" @click="goback()">
<image class="buttont-img" style="margin-top: 4rpx;" src="/static/index/purchaseorder/back.png" />
<view class="button-font">
返回
</view>
</view> -->
</view>
</template>
<script setup lang="ts">
import { ref, onMounted, reactive, onBeforeUnmount, computed, nextTick } from 'vue';
const paiziarray =
genPaths(
'/static/index/warehouse/newhome/',
'logo',
3, //
'png',
1, // 1
false //
)
const jiankongarray =
genPaths(
'/static/index/warehouse/newhome/',
'monitor',
4, //
'png',
0, // 1
false //
)
const wanjiearray =
genPaths(
'/static/index/warehouse/newhome/',
'end',
6, //
'png',
0, // 1
false //
)
const caigouarray = genPaths(
'/static/index/warehouse/newhome/',
'purchase',
4, //
'png',
0, // 1
false //
)
const rukuarray = genPaths(
'/static/index/warehouse/newhome/',
'unit1-',
5, //
'png',
0, // 1
false //
)
const jianhuoarray = genPaths(
'/static/index/warehouse/newhome/',
'Warehouse',
4, //
'png',
1, // 1
false //
)
const playall = ref(false);
onMounted(() => {
playall.value = true
})
const housedex = ref(0);
const lastTap = ref(0)
const DOUBLE_TAP_DELAY = 300;
const setout = ref(null)
const navurl = ref('')
const housactive = (index : number) => {
console.log(index)
housedex.value = index;
const now = Date.now()
if (now - lastTap.value < DOUBLE_TAP_DELAY) {
//
clearTimeout(setout.value)
if (index == 1) {
navurl.value = 'pages/Warehouse/paymoney'
uni.navigateTo({
url: '/' + navurl.value
})
}
if (index == 0) {
navurl.value = 'pages/procurement/material'
uni.navigateTo({
url: '/' + navurl.value
})
}
if (index == 2) {
navurl.value = 'pages/Warehouse/picking'
uni.navigateTo({
url: '/' + navurl.value
})
}
if (index === 3) {
uni.navigateTo({
url: "/pages/watch/full"
})
}
if (index === 5) {
uni.navigateTo({
url: "/pages/watch/full"
})
}
if (index == 7) {
navurl.value = 'pages/procurement/outbound?code=0'
uni.navigateTo({
url: '/' + navurl.value
})
}
if (index == 8) {
navurl.value = 'pages/procurement/outbound?code=1'
uni.navigateTo({
url: '/' + navurl.value
})
}
//
lastTap.value = 0
} else {
setout.value = setTimeout(() => {
// console.log("", index)
}, DOUBLE_TAP_DELAY)
//
lastTap.value = now
}
}
function genPaths(base, prefix, count, ext = 'png', startIndex = 0, pad = false) {
return Array.from({ length: count }, (_, i) => {
const idx = pad
? String(i + startIndex).padStart(2, '0')
: i + startIndex
return `${base}/${prefix}${idx}.${ext}`
})
}
const animArray = ref([
{
url: genPaths(
'/static/index/warehouse/home/',
'Procurement',
5, //
'png',
0, // 1
false //
),
width: '22.3vw',
height: '13.6vw'
},
{
url: genPaths(
'/static/index/warehouse/home',
'inventory',
4, //
'png',
0, // 1
false //
),
width: '11vw',
height: '10vw'
},
{
url: genPaths(
'/static/index/warehouse/home',
'pick',
4, //
'png',
0, // 1
false //
),
width: '11vw',
height: '9vw'
},
{
url: genPaths(
'/static/index/warehouse/home',
'unit1-',
5, //
'png',
0, // 1
false //
),
width: '14.3vw',
height: '13vw'
},
{
url: genPaths(
'/static/index/warehouse/home',
'unit1-',
5, //
'png',
0, // 1
false //
),
width: '14.3vw',
height: '13vw'
},
{
url: genPaths(
'/static/index/warehouse/home',
'unit11-',
5, //
'png',
0, // 1
false //
),
width: '14.3vw',
height: '13vw'
},
])
const logoval = reactive({
url: genPaths(
'/static/index/warehouse/home',
'logo',
3, //
'png',
1, // 1
false //
)
})
const goback = () => {
console.log("?/////")
uni.navigateBack()
}
// px
const x = ref(50)
const y = ref(54)
// const x = ref(25)
// const y = ref(44)
// s
const duration = ref(0.7)
const easing = 'cubic-bezier(.22,.9,.32,1)' // easing
// translate3d + transitionGPU
const moverStyle = computed(() => {
return {
position: 'fixed',
left: '0',
top: '0',
width: '7vw', //
height: '7vw',
transform: `translate3d(${x.value}vw, ${y.value}vw, 0)`,
transition: `transform ${duration.value}s ${easing}`,
willChange: 'transform'
}
})
// moveTo(pxX, pxY, seconds)
function moveTo(pxX, pxY, seconds = 0.6) {
//
duration.value = seconds
x.value = pxX
y.value = pxY
}
const ceshi = () => {
moveTo(25,45,6)
}
const back = () => {
moveTo(50,54,1)
}
</script>
<style scoped lang="less">
// .clikurlbox {
// position: fixed;
// width: 100vw;
// height: 100vw;
// top: 0;
// left: 0;
// overflow: hidden;
// z-index: 61;
// .itemact1 {
// width: 22.3vw;
// height: 13.6vw;
// bottom: 9.8vw;
// left: 12.6vw;
// z-index: 31;
// }
// .itemact2 {
// width: 9vw;
// height: 9vw;
// top: 22.5vw;
// left: 16.5vw;
// z-index: 57;
// }
// .itemact3 {
// width: 11vw;
// height: 9vw;
// top: 37vw;
// left: 48vw;
// z-index: 55;
// }
// .itemact4 {
// width: 14.4vw;
// height: 13vw;
// top: 35vw;
// right: 4.4vw;
// z-index: 65;
// }
// .itemact5 {
// width: 14.4vw;
// height: 10vw;
// bottom: 3vw;
// right: 21vw;
// z-index: 65;
// }
// .itemact6 {
// width: 18.2vw;
// height: 12vw;
// top: 8vw;
// left: 12vw;
// z-index: 65;
// }
// view {
// position: fixed;
// z-index: 10;
// }
// }
// .cardtm {
// position: relative;
// z-index: 66;
// >view {
// position: fixed;
// min-width: 5vw;
// height: 2.7vw;
// border-radius: 1.35vw;
// box-shadow: 0rpx 0rpx 0.3vw 0rpx rgba(174, 174, 188, 0.4);
// z-index: 66;
// display: flex;
// align-items: center;
// padding: 0 1vw;
// white-space: nowrap;
// z-index: 70;
// &:nth-child(1) {
// bottom: 33.5vh;
// left: 20.5vw;
// }
// &:nth-child(2) {
// top: 28vw;
// left: 26.5vw;
// }
// &:nth-child(3) {
// bottom: 21vw;
// left: 55vw;
// }
// &:nth-child(4) {
// top: 35vw;
// right: 6.5vw;
// }
// &:nth-child(5) {
// bottom: 11.5vw;
// right: 23.5vw;
// }
// &:nth-child(6) {
// top: 6vw;
// left: 17vw;
// }
// text {
// width: 1vw;
// height: 1vw;
// border-radius: 50%;
// border: 1px solid rgba(0, 137, 254, 1);
// margin: 0 0.4vw 0 0;
// }
// view {
// width: 2.8vw;
// height: 4.4vw;
// position: absolute;
// top: 2vw;
// left: 30%;
// }
// }
// .actve {
// background: linear-gradient(-45deg, #0089FE, #97C1FF) !important;
// color: #fff !important;
// text {
// border: 1px solid #fff;
// }
// }
// .b {
// background: #EFF2F6;
// }
// }
// .pulu1 {
// width: 28.2vw;
// height: 9.8vw;
// position: fixed;
// top: 30vw;
// right: 9.2vw;
// z-index: 60;
// overflow: auto;
// image {
// position: absolute;
// top: 0;
// left: 0;
// }
// }
// .pulu2 {
// width: 16.8vw;
// height: 24vw;
// position: fixed;
// top: 30.7vw;
// right: 21.1vw;
// z-index: 60;
// image {
// position: absolute;
// top: 0;
// left: 0;
// }
// }
// .route {
// width: 99.5vw;
// height: 51.2vw;
// position: fixed;
// top: 4.5vw;
// left: 0.3vw;
// z-index: 2;
// image {
// position: absolute;
// top: 0;
// left: 0;
// }
// }
// .contitem {
// width: 48vw;
// height: 36vw;
// position: fixed;
// top: 5.3vw;
// left: 28.2vw;
// z-index: 50;
// }
// .hldy {
// position: fixed;
// left: 6.7vw;
// bottom: 3.7vw;
// }
// .tp {
// image {
// width: 100%;
// height: 100%;
// }
// }
// .contain-right-button {
// position: fixed;
// top: 5vh;
// right: 2vw;
// width: 7.3vw;
// height: 3.3vw;
// background: #FFFFFF;
// border-radius: 1.65vw;
// border: 1px solid #D9DADC;
// font-weight: 400;
// font-size: 1.4vw;
// color: #222;
// display: flex;
// justify-content: center;
// align-items: center;
// margin: 0 0 0 0.7vw;
// color: #555555;
// z-index: 99;
// image {
// width: 1.5vw;
// height: 1.3vw;
// margin: 0 0.5vw 0 0;
// }
// }
.home {
// margin-top: 40rpx;
width: 100vw;
height: 100vh;
overflow: hidden;
position: fixed;
z-index: 0;
// background-color: red;
.all-home {
width: 100%;
height: 100% ;
}
}
.tp {
image {
width: 100%;
height: 100%;
}
}
.paizi {
width: 18vw;
height: 18vw;
position: fixed;
bottom: 0.3vw;
left: 10vw;
// z-index: 50;
}
.jiankong {
width: 17vw;
height: 17vw;
position: fixed;
top: 1.5vw;
left: 12vw;
z-index: 50;
}
.wanjie {
width: 18vw;
height: 18vw;
position: fixed;
top: 19vw;
left: 12vw;
z-index: 50;
}
.pandan{
width: 9.3vw;
height: 9.3vw;
position: fixed;
top: 23vw;
left: 29vw;
z-index: 50;
}
.caigou{
width: 18vw;
height: 18vw;
position: fixed;
top: 34vw;
left: 37vw;
z-index: 50;
}
.ruku{
width: 11vw;
height: 11vw;
position: fixed;
bottom: 9vw;
right: 17vw;
z-index: 50;
}
.chuku{
width: 11vw;
height: 11vw;
position: fixed;
bottom: 20.5vw;
right: 2.5vw;
z-index: 50;
}
.return{
width: 7vw;
height: 7vw;
position: fixed;
bottom: 8.8vw;
right: 25vw;
z-index: 50;
}
.lead{
width: 7vw;
height: 7vw;
position: fixed;
bottom: 20vw;
right: 10vw;
z-index: 50;
}
.jianhuo{
width: 40vw;
height: 40vw;
position: fixed;
top: 0vw;
right:23vw;
z-index: 50;
}
.picking{
width: 12vw;
height: 12vw;
position: fixed;
top: 24vw;
right:27vw;
z-index: 50;
}
</style>

View File

@ -219,6 +219,7 @@
})
} else {
uni.setStorageSync('serverUrl', "");
uni.setStorageSync('orgList', []);
uni.setStorageSync('orgListName', "");
uni.setStorageSync('orgListCode', "");
allserve.value = [];

View File

@ -325,7 +325,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 23rpx;
font-size: 25rpx;
}
}
}

View File

@ -616,7 +616,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 23rpx;
font-size: 25rpx;
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -21,15 +21,16 @@
</view>
</view> -->
<view class="right-buttons" @click="startselect()">
<view :class="manyselect?`right-button-blue`:`right-button-white`"
<view class="right-buttons">
<view :class="manyselect?`right-button-blue`:`right-button-white`" @click="startselect()"
v-show="plsbuy[lefttarget]?.status==`1`">
<image :src="`/static/index/warehouse/procurement/picking/piliang${manyselect?`target`:``}.png`" />
<view>
批量选择
</view>
</view>
<view class="right-button" @click="badshow=true" v-show="plsbuy[lefttarget]?.status==`1`">
<view class="right-button" @click="huituiclick()"
v-show="plsbuy[lefttarget]?.status==`1`">
<image src="/static/index/warehouse/procurement/picking/huitui.png" />
<view>
回退
@ -147,7 +148,8 @@
<view class="middle-heng-father">
<view class="middle-ball" :style="Number(v.status)<4?{backgroundColor: `#E5E5E5`}:{}"
<view class="middle-ball"
:style="Number(v.status)<4?{backgroundColor: `#E5E5E5`}:{}"
v-if="Number(v.status)!=5"></view>
<image class="middle-ball-img" v-else src="/static/index/requestform/isok.png" />
</view>
@ -184,10 +186,10 @@
:src="item.materialInfo.materialImg?serverUrl+item.materialInfo.materialImg:'/static/index/procurement/k.png'"
mode="aspectFill"></image>
<view class="left-tages" style="margin-top: -15rpx;">
耗材用品
{{ item.materialInfo.categoryName}}
</view>
<view class="left-tages">
支架
{{ item.materialInfo.typeName}}
</view>
</view>
<view class="right-one-right">
@ -227,10 +229,10 @@
style="width: 30%;height: 30%;position: absolute;">
</defaultr>
</scroll-view>
<view class="bottom-buttons" v-show="manyselect">
<view class="button-gray" @click="quxiao">
<view class="bottom-buttons" v-show="plsbuy[lefttarget]?.status==`1`">
<!-- <view class="button-gray" @click="quxiao">
取消
</view>
</view> -->
<view class="button-blue" @click="chukushow=true">
出库
</view>
@ -239,6 +241,8 @@
</view>
</view>
<errorshow :show="openerror" font="注意:只能选择待出库的请领单" @close="openerror=false" />
<errorshow :show="qinglingshow" font="注意:批量选择模式请选择一项或以上的请领单" @close="qinglingshow=false" />
<errorshow :show="chukuerror" :font="chukuvalue" @close="chukuerror=false" />
</template>
<script setup lang="ts">
@ -535,21 +539,48 @@
const selectarray = ref([]);
const startselect = () => {
selectarray.value = [];
manyselect.value = !manyselect.value
if (!manyselect.value) {
lefttarget.value = 0
}
}
const quxiao = () => {
selectarray.value = [];
manyselect.value = false
const huituiclick = () => {
if(manyselect.value){
console.log("55555")
selectarray.value = [];
manyselect.value = false
leftscrolltop.value = 1
setTimeout(() => {
leftscrolltop.value = 0
}, 50)
}else{
badshow.value = true
}
}
const chukushow = ref(false)
// const quxiao = () => {
// selectarray.value = [];
// manyselect.value = false;
// }
const chukushow = ref(false);
const qinglingshow = ref(false)
const chukuerror = ref(false);
const chukuvalue = ref("")
const chukuclick = () => {
// outbound
// console.log("",selectarray.value.join(','))
outbound({ qldNo: selectarray.value.join(',') }).then((res : any) => {
// console.log('', res)
if (manyselect.value && !selectarray.value.length) {
qinglingshow.value = true
return
}
outbound({ qldNo: manyselect.value ? selectarray.value.join(',') : plsbuy.value[lefttarget.value].qldNo }).then((res : any) => {
selectarray.value = [];
manyselect.value = false
chukushow.value = false
plzinfo.pageNo = 1;
lefttarget.value = 0
plzinfo.canpull = true;
leftscrolltop.value = 1
setTimeout(() => {
@ -557,13 +588,23 @@
}, 50)
lefttarget.value = 0
firstgetqueryCgdList();
console.log("!!!!!!", res)
setTimeout(() => {
uni.showToast({
title: res.success ? res.result.message : res.message,
icon: 'none', // 'none'
duration: 3000
})
if (res.result.status == "success") {
uni.showToast({
title: res.result.message,
icon: 'none', // 'none'
duration: 3000
})
} else {
chukuerror.value = true;
chukuvalue.value = res.result.message;
}
// uni.showToast({
// title: res.success ? res.result.message : res.message,
// icon: 'none', // 'none'
// duration: 3000
// })
}, 300)
})
@ -883,6 +924,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 25rpx;
}
}
}

View File

@ -860,7 +860,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 23rpx;
font-size: 25rpx;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -574,7 +574,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
)
]);
}
const camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/项目/hldy_app_mini/pages/camera.nvue"]]);
const camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app_mini/pages/camera.nvue"]]);
export {
camera as default
};

View File

@ -577,7 +577,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
)
]);
}
const fullcamera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/项目/hldy_app_mini/pages/fullcamera.nvue"]]);
const fullcamera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app_mini/pages/fullcamera.nvue"]]);
export {
fullcamera as default
};