This commit is contained in:
parent
18a60b1cdb
commit
0ef10f40c7
|
|
@ -5,7 +5,7 @@
|
|||
<view>
|
||||
<image src="/static/index/procurement/ddj.png" mode="aspectFill"></image>
|
||||
</view>
|
||||
<view>确认将所有未添加状态的库存预警物料添加至购物车中,并且物料的采购数量为物料的库存上限减去库存数量吗?</view>
|
||||
<view>确认将所有未添加状态的库存预警物料添加至购物车中,并且物料的采购数量为物料的库存上限减去库存数量!</view>
|
||||
<view>
|
||||
<view @click="$emit('back')">取消</view>
|
||||
<view class="qd" @click="add()">确定</view>
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
<style scoped lang="less">
|
||||
.addall{
|
||||
width: 42.4vw;
|
||||
height: 25vw;
|
||||
height: 26vw;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 0rpx 1.3vw 0rpx rgba(163,167,182,0.16);
|
||||
border-radius: 1.6vw;
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: 1px solid #888888;
|
||||
border: 1px solid #EDEDEF;
|
||||
}
|
||||
.qd{
|
||||
background: linear-gradient(0deg, #CAE0F9, #E9F4FF);
|
||||
|
|
@ -78,10 +78,10 @@
|
|||
}
|
||||
}
|
||||
&:nth-child(3){
|
||||
width: 31vw;
|
||||
width: 33vw;
|
||||
height: 3.4vw;
|
||||
font-weight: 400;
|
||||
font-size: 1.2vw;
|
||||
font-size: 1.3vw;
|
||||
color: #888888;
|
||||
line-height: 1.7vw;
|
||||
margin: 0.4vw auto 0;
|
||||
|
|
|
|||
|
|
@ -513,18 +513,18 @@
|
|||
width: 9vw;
|
||||
height: 3.8vw;
|
||||
color: rgba(92, 121, 146, 1);
|
||||
border-radius:1.6vw;
|
||||
border-radius:1.9vw;
|
||||
font-size: 1.8vw;
|
||||
border: 1px solid #A2B4CF;
|
||||
border: 1px solid #EDEDEF;
|
||||
margin-left: 1vw;
|
||||
}
|
||||
.quxiao{
|
||||
background: #FFFFFF;
|
||||
background: #EDEDEF;
|
||||
}
|
||||
.plsbuy-bottom-blue {
|
||||
background: linear-gradient(0deg, #CAE0F9, #E9F4FF);
|
||||
border: 1px solid rgba(3,133,250,0.34);
|
||||
background: linear-gradient(-61deg, #EAF5FF, #CBE7FF);
|
||||
color: #0385FA;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -399,7 +399,7 @@
|
|||
|
||||
text {
|
||||
width: 6vw;
|
||||
font-weight: 300;
|
||||
font-weight: 400;
|
||||
font-size: 1.4vw;
|
||||
color: #222222;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -362,7 +362,7 @@
|
|||
min-width: 8vw;
|
||||
height: 3.8vw;
|
||||
background: #EDEDEF;
|
||||
border-radius: 1.6vw;
|
||||
border-radius: 1.9vw;
|
||||
padding: 0 2vw;
|
||||
margin-left: 1vw;
|
||||
border: 1px solid #EDEDEF;
|
||||
|
|
@ -388,7 +388,7 @@
|
|||
|
||||
.scroltype {
|
||||
width: 100%;
|
||||
height: calc(85vh - 22vw);
|
||||
height: calc(85vh - 23vw);
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
|
||||
|
|
@ -412,7 +412,7 @@
|
|||
|
||||
.scroll-Y {
|
||||
width: 8.5vw;
|
||||
height: calc(85vh - 22vw);
|
||||
height: calc(85vh - 23vw);
|
||||
|
||||
view {
|
||||
width: 100%;
|
||||
|
|
@ -484,6 +484,7 @@
|
|||
font-size: 1.5vw;
|
||||
color: #333333;
|
||||
line-height: 2.5vw;
|
||||
margin-top: 1vw;
|
||||
}
|
||||
|
||||
.guodu {
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
</text>
|
||||
|
||||
<view class="title-right-big">
|
||||
{{v.totalPrice}}
|
||||
{{Number(v.totalPrice).toFixed(2)}}
|
||||
</view>
|
||||
|
||||
<!-- <image class="title-right-img" src="/static/more.png" @click="openmore(i)" /> -->
|
||||
|
|
@ -146,13 +146,13 @@
|
|||
<view>
|
||||
<view>{{v.wlName}}</view>
|
||||
<text>{{v.wlMaterialNo}}</text>
|
||||
<text>¥ <text class="q">{{v.totalPrice}}</text></text>
|
||||
<text>¥ <text class="q">{{Number(v.totalPrice).toFixed(2) }}</text></text>
|
||||
</view>
|
||||
<view>
|
||||
<text> 规格型号: {{v.wlSpecificationModel}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>采购单价: ¥{{v.arrivalPrice?v.arrivalPrice:v.procurementPrice}}</text>
|
||||
<text>采购单价: ¥{{v.arrivalPrice?Number(v.arrivalPrice).toFixed(2) : Number(v.procurementPrice).toFixed(2) }}</text>
|
||||
<text>采购单位: {{v.wlUnits}}</text>
|
||||
</view>
|
||||
<view></view>
|
||||
|
|
@ -298,7 +298,7 @@
|
|||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-right: 1vw;
|
||||
margin-right: 1.5vw;
|
||||
border-radius: 1.6vw;
|
||||
font-weight: 400;
|
||||
font-size: 1.6vw;
|
||||
|
|
@ -436,7 +436,7 @@
|
|||
|
||||
text {
|
||||
min-width: 3vw;
|
||||
font-weight: 300;
|
||||
font-weight: 400;
|
||||
font-size: 1.4vw;
|
||||
color: #222222;
|
||||
white-space: nowrap;
|
||||
|
|
|
|||
|
|
@ -6,16 +6,17 @@
|
|||
<image src="/static/index/procurement/x.png" mode="aspectFill" v-if="form.wlParamInfo"
|
||||
@click="search(0)"></image>
|
||||
</view>
|
||||
<view @click="search" class="scr">
|
||||
<view @click="search" class="scr guodu">
|
||||
检索
|
||||
</view>
|
||||
<view class="shx" @click="ification=true">
|
||||
<view class="shx guodu" @click="ification=true">
|
||||
<image src="/static/index/procurement/sx.png" mode="aspectFill"></image>
|
||||
筛选
|
||||
</view>
|
||||
<view class="shx" @click="chongzhi"
|
||||
<view class="shx guodu" @click="chongzhi"
|
||||
v-if="form.categoryId!=''||form.wlParamInfo!=''||form.suppliers!=''"
|
||||
>
|
||||
<image src="/static/index/procurement/cz.png" mode="aspectFill"></image>
|
||||
重置
|
||||
</view>
|
||||
<view class="back" @click="uni.navigateBack()">
|
||||
|
|
@ -766,23 +767,29 @@
|
|||
image {
|
||||
width: 1.5vw;
|
||||
height: 1.3vw;
|
||||
margin: 0 0.5vw;
|
||||
margin: 0 0.5vw 0 0;
|
||||
}
|
||||
|
||||
}
|
||||
.shx:active,.scr:active{
|
||||
color: #1083F8;
|
||||
background: linear-gradient(-45deg, rgba(223, 244, 252, 1), rgba(204, 228, 249, 0.43));
|
||||
border: 1px solid #1083F8;
|
||||
}
|
||||
.scr {
|
||||
border-radius: 1.65vw;
|
||||
font-weight: 400;
|
||||
font-size: 1.5vw;
|
||||
color: #1083F8;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 8vw;
|
||||
height: 3.3vw;
|
||||
background: linear-gradient(-45deg, rgba(223, 244, 252, 1), rgba(204, 228, 249, 0.43));
|
||||
border: 1px solid #1083F8;
|
||||
margin: 0 0 0 1.2vw;
|
||||
background: rgba(255, 255, 255, 0.6);
|
||||
border: 1px solid #D9DADC;
|
||||
color: #555555;
|
||||
box-shadow: 0.5rpx 5rpx 5rpx #dadee1;
|
||||
}
|
||||
|
||||
.shx {
|
||||
|
|
@ -799,6 +806,7 @@
|
|||
align-items: center;
|
||||
box-shadow: 0.5rpx 5rpx 5rpx #dadee1;
|
||||
margin: 0 0 0 1.2vw;
|
||||
color: #555555;
|
||||
|
||||
image {
|
||||
width: 1.5vw;
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<view class="shx" @click="chongzhi"
|
||||
v-if="form.categoryId!=''||form.wlParamInfo!=''||form.suppliers!=''"
|
||||
>
|
||||
<image src="/static/index/procurement/cz.png" mode="aspectFill"></image>
|
||||
重置
|
||||
</view>
|
||||
</view>
|
||||
|
|
@ -266,7 +267,6 @@
|
|||
view{
|
||||
width: 8vw;
|
||||
height: 3.3vw;
|
||||
border-radius: 1.6vw;
|
||||
border: 1px solid #D9DADC;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 1.65vw;
|
||||
|
|
@ -277,10 +277,11 @@
|
|||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left:0.6vw;
|
||||
color: #555555;
|
||||
image {
|
||||
width: 1.5vw;
|
||||
height: 1.3vw;
|
||||
margin: 0 0.5vw;
|
||||
width: 2vw;
|
||||
height: 2vw;
|
||||
margin: 0 0.5vw 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -321,31 +322,37 @@
|
|||
align-items: center;
|
||||
margin-left:0.6vw;
|
||||
image {
|
||||
width: 1.5vw;
|
||||
height: 1.3vw;
|
||||
margin: 0 0.5vw;
|
||||
width: 1.5vw !important;
|
||||
height: 1.5vw !important;
|
||||
margin: 0 0.5vw 0 0;
|
||||
}
|
||||
|
||||
}
|
||||
.shx:active,.scr:active{
|
||||
color: #1083F8;
|
||||
background: linear-gradient(-45deg, rgba(223, 244, 252, 1), rgba(204, 228, 249, 0.43));
|
||||
border: 1px solid #1083F8;
|
||||
}
|
||||
.scr {
|
||||
border-radius: 1.65vw;
|
||||
font-weight: 400;
|
||||
font-size: 1.5vw;
|
||||
color: #1083F8;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 8vw;
|
||||
height: 3.3vw;
|
||||
background: linear-gradient(-45deg, rgba(223, 244, 252, 1), rgba(204, 228, 249, 0.43));
|
||||
border: 1px solid #1083F8;
|
||||
margin:0 0 0 1.2vw;
|
||||
margin: 0 0 0 1.2vw;
|
||||
background: rgba(255, 255, 255, 0.6);
|
||||
border: 1px solid #D9DADC;
|
||||
color: #555555;
|
||||
box-shadow: 0.5rpx 5rpx 5rpx #dadee1;
|
||||
}
|
||||
|
||||
|
||||
.shx {
|
||||
width: 8.2vw;
|
||||
height: 3.3vw;
|
||||
background: #FFFFFF;
|
||||
background: rgba(255, 255, 255, 0.6);
|
||||
border-radius: 1.65vw;
|
||||
border: 1px solid #D9DADC;
|
||||
font-weight: 400;
|
||||
|
|
@ -355,8 +362,9 @@
|
|||
justify-content: center;
|
||||
align-items: center;
|
||||
box-shadow: 0.5rpx 5rpx 5rpx #dadee1;
|
||||
margin:0 0 0 1.2vw;
|
||||
|
||||
margin: 0 0 0 1.2vw;
|
||||
color: #555555;
|
||||
|
||||
image {
|
||||
width: 1.5vw;
|
||||
height: 1.3vw;
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 826 B |
Binary file not shown.
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 980 B |
Loading…
Reference in New Issue