修改bug
This commit is contained in:
parent
41b9502fc5
commit
0317ccecb1
|
|
@ -154,7 +154,7 @@
|
|||
采购单价
|
||||
</view>
|
||||
<view class="text-anim" style="margin-top: 5rpx;font-weight: 600;font-size: 34rpx;">
|
||||
¥{{showvalue.arrivalPrice?showvalue.arrivalPrice:showvalue.procurementPrice}}
|
||||
¥{{showvalue.arrivalPrice?showvalue.arrivalPrice.toFixed(2):showvalue.procurementPrice.toFixed(2)}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="" style="width: 33%;">
|
||||
|
|
@ -696,7 +696,7 @@
|
|||
|
||||
<text style="font-size: 30rpx;"
|
||||
:style="{fontWeight:Number(v.arrivalPrice)>0||Number(v.procurementPrice)>0 ?`600`:``}">
|
||||
{{v.arrivalPrice?v.arrivalPrice:v.procurementPrice }}
|
||||
{{v.arrivalPrice?v.arrivalPrice.toFixed(2):v.procurementPrice.toFixed(2) }}
|
||||
</text>
|
||||
|
||||
</view>
|
||||
|
|
@ -980,7 +980,7 @@
|
|||
采购单价:
|
||||
|
||||
<text style="font-weight: 600;color: black;">
|
||||
¥{{item.oldPrice}}
|
||||
¥{{item.oldPrice.toFixed(2)}}
|
||||
</text>
|
||||
|
||||
</view>
|
||||
|
|
@ -996,7 +996,7 @@
|
|||
<view class="">
|
||||
到货单价:
|
||||
<text style="font-weight: 600;color: black;">
|
||||
¥{{item.newPrice}}
|
||||
¥{{item.newPrice.toFixed(2)}}
|
||||
</text>
|
||||
|
||||
</view>
|
||||
|
|
@ -1494,6 +1494,7 @@
|
|||
const InvoicingList = ref([])
|
||||
const queryInvo = (index : number) => {
|
||||
queryCgdInfoList(form).then(res => {
|
||||
console.log(res.result.records)
|
||||
InvoicingList.value = res.result.records;
|
||||
clickmiddle(index);
|
||||
})
|
||||
|
|
|
|||
|
|
@ -65,8 +65,8 @@
|
|||
<view class="plsbuy-bottom-blue" @click="closeIt">
|
||||
确定
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="mengban" v-if="cgdwflag||gysflag" @click="gysflag = false;cgdwflag = false"></view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
|
@ -327,6 +327,7 @@
|
|||
position: absolute;
|
||||
left:7vw;
|
||||
top: -16vw;
|
||||
z-index: 211;
|
||||
.gysscrol{
|
||||
width: 100%;
|
||||
height: 10vw;
|
||||
|
|
@ -408,6 +409,7 @@
|
|||
position: absolute;
|
||||
right: 7.2vw;
|
||||
top: 7vw;
|
||||
z-index: 211;
|
||||
.gysscrol{
|
||||
width: 100%;
|
||||
height: 15vw;
|
||||
|
|
@ -609,6 +611,14 @@
|
|||
font-size: 27rpx;
|
||||
font-weight: 500;
|
||||
margin: 0.8vw auto 0;
|
||||
|
||||
}
|
||||
.mengban {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index:210;
|
||||
background: RGBA(239, 240, 244, 0.55);
|
||||
}
|
||||
</style>
|
||||
|
|
@ -19,6 +19,7 @@
|
|||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<view class="mengban" v-if="selt" @click="selt = false"></view>
|
||||
</view>
|
||||
<view class="titletop">物料分类</view>
|
||||
<view class="toptype">
|
||||
|
|
@ -223,6 +224,15 @@
|
|||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
.mengban {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index:125;
|
||||
background: RGBA(239, 240, 244, 0.55);
|
||||
}
|
||||
.gyss {
|
||||
width: 100%;
|
||||
height: 4vw;
|
||||
|
|
@ -244,7 +254,7 @@
|
|||
position: absolute;
|
||||
top: 4vw;
|
||||
right: 0;
|
||||
z-index: 133;
|
||||
z-index: 311;
|
||||
|
||||
.gysscrol {
|
||||
width: 100%;
|
||||
|
|
|
|||
|
|
@ -265,7 +265,7 @@
|
|||
采购单价
|
||||
</view>
|
||||
<view class="right-text">
|
||||
¥{{ showvalue?.procurementPrice }}
|
||||
¥{{ showvalue?.procurementPrice.toFixed(2) }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="threeone">
|
||||
|
|
|
|||
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue