改样式
This commit is contained in:
parent
7122a5377f
commit
54af499b76
|
|
@ -672,7 +672,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="contain-right-middle">
|
||||
<scroll-view scroll-x="true" class="middle-Y">
|
||||
<scroll-view scroll-x="true" class="middle-Y" :scroll-left="Invoiscroll" scroll-with-animation>
|
||||
<view class="middle-Y-father">
|
||||
<view class="middle-one" v-for="(v,i) in InvoicingList" :key='i'
|
||||
:style="{border: middletarget === i? '4rpx solid #1083F8': '4rpx solid transparent',backgroundColor:middletarget === i?`#F9FCFF`:``}"
|
||||
|
|
@ -1480,12 +1480,14 @@
|
|||
cgdId: "",
|
||||
isWaring: 0
|
||||
}
|
||||
const Invoiscroll = ref(0)
|
||||
const tagsArray = [`待入库`, `挂账中`, `已入库`, `已销账`,]
|
||||
const clickmiddle = (index : number) => {
|
||||
// console.log(showvalue.value)
|
||||
middletarget.value = index;
|
||||
showvalue.value = InvoicingList.value[index];
|
||||
showvalue.value.jianhuobtn = false;
|
||||
Invoiscroll.value = (index - 2) * 205;
|
||||
if (Number(showvalue.value.status) == 0 || (Number(showvalue.value.status) > 0 && Number(showvalue.value.wrksl) > 0)) {
|
||||
showvalue.value.maxnum = (showvalue.value.rksl == 0 && showvalue.value.wrksl == 0 && showvalue.value.xzsl == 0) ? showvalue.value.purchaseQuantity : showvalue.value.wrksl
|
||||
showvalue.value.num = showvalue.value.maxnum;
|
||||
|
|
@ -3149,7 +3151,7 @@
|
|||
padding: 0 90rpx;
|
||||
|
||||
.photowall-title {
|
||||
margin-top: 80rpx;
|
||||
margin-top: 50rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
|
|
@ -3173,11 +3175,10 @@
|
|||
width: 110%;
|
||||
height: 67vh;
|
||||
display: flex;
|
||||
margin-top: 40rpx;
|
||||
|
||||
margin-top: 20rpx;
|
||||
.photowall-other-one {
|
||||
width: 28.5%;
|
||||
height: 400rpx;
|
||||
height: 430rpx;
|
||||
margin-right: 3vw;
|
||||
margin-bottom: 3%;
|
||||
border-radius: 30rpx;
|
||||
|
|
|
|||
|
|
@ -184,7 +184,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="contain-right-middle">
|
||||
<scroll-view scroll-y="true" class="middle-Y">
|
||||
<scroll-view scroll-y="true" class="middle-Y" scroll-with-animation :scroll-top="Invoitop">
|
||||
<view class="middle-Y-father">
|
||||
<view class="middle-one" v-for="(v,i) in InvoicingList" :key='i'
|
||||
:style="{border: middletarget === i? '4rpx dashed #1083F8': '4rpx solid transparent',backgroundColor:middletarget === i?`#F9FCFF`:``}"
|
||||
|
|
@ -227,9 +227,9 @@
|
|||
<view class="tags-one">
|
||||
{{ showvalue?.typeId_dictText }}
|
||||
</view>
|
||||
<!-- <view class="tags-one">
|
||||
{{ showvalue?.tagName }}
|
||||
</view> -->
|
||||
<view class="tags-one" v-if="showvalue.medicationId_dictText">
|
||||
{{showvalue.medicationId_dictText}}
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
|
@ -581,9 +581,11 @@
|
|||
cgdId: "",
|
||||
isWaring: 0
|
||||
}
|
||||
const Invoitop = ref(0)
|
||||
const clickmiddle = (index : number) => {
|
||||
middletarget.value = index;
|
||||
showvalue.value = InvoicingList.value[index];
|
||||
Invoitop.value = Math.floor(index/3) * 105;
|
||||
Object.assign(form, mobanform)
|
||||
form.pageSize = -1;
|
||||
}
|
||||
|
|
@ -1087,7 +1089,7 @@
|
|||
}
|
||||
|
||||
.tags-one {
|
||||
width: 130rpx;
|
||||
min-width: 130rpx;
|
||||
height: 60rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
@ -1098,6 +1100,7 @@
|
|||
margin-top: 20rpx;
|
||||
font-size: 25rpx;
|
||||
color: #555555;
|
||||
padding: 0 0.5vw;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue