改bug
This commit is contained in:
parent
ef791b1317
commit
d6840e2631
|
|
@ -1107,6 +1107,7 @@
|
|||
const stringjh = ref("")
|
||||
const serverUrl = ref("");
|
||||
const opengaijia = ref(false);
|
||||
const guiling = ref(false);
|
||||
const openjianhuo = ref(false);
|
||||
const opendata = ref(false);
|
||||
const gaijia = ref("");
|
||||
|
|
@ -1126,6 +1127,12 @@
|
|||
}
|
||||
// 计算器
|
||||
function press(k : string) {
|
||||
|
||||
if(guiling.value){
|
||||
gaijia.value = '';
|
||||
guiling.value = false
|
||||
}
|
||||
|
||||
if (k === 'AC') {
|
||||
gaijia.value = ''
|
||||
return
|
||||
|
|
@ -1174,6 +1181,7 @@
|
|||
}
|
||||
const opengaijiaclick = () => {
|
||||
opengaijia.value = true;
|
||||
guiling.value = true
|
||||
gaijia.value = (showvalue.value.arrivalPrice ? showvalue.value.arrivalPrice : showvalue.value.procurementPrice).toString()
|
||||
donghuaopo.value = false;
|
||||
setTimeout(() => {
|
||||
|
|
@ -1445,7 +1453,21 @@
|
|||
})
|
||||
}
|
||||
const showvalue = ref({
|
||||
materialImg: ""
|
||||
materialImg: "",
|
||||
cgrvalue: "",
|
||||
gysvalue: "",
|
||||
wlName: "",
|
||||
procurementPrice: "",
|
||||
wlMaterialNo: "",
|
||||
wlSpecificationModel: "",
|
||||
purchaseQuantity: "",
|
||||
wlUnits: "",
|
||||
kcsl: "",
|
||||
wlUpperLimit: "",
|
||||
wlLowerLimit: "",
|
||||
suppliersName: "",
|
||||
jianhuobtn:false,
|
||||
|
||||
})
|
||||
|
||||
const goback = () => {
|
||||
|
|
@ -1999,6 +2021,7 @@
|
|||
height: 95vh;
|
||||
width: 30%;
|
||||
position: relative;
|
||||
z-index: 99;
|
||||
|
||||
.left-select-more {
|
||||
position: absolute;
|
||||
|
|
@ -3277,7 +3300,7 @@
|
|||
width: 610rpx;
|
||||
// height: 300rpx;
|
||||
border-radius: 30rpx;
|
||||
z-index: 999;
|
||||
z-index: 102;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
||||
padding: 40rpx 30rpx;
|
||||
|
|
|
|||
|
|
@ -422,12 +422,14 @@
|
|||
const plzinfo = reactive({
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
canpull: true
|
||||
canpull: true,
|
||||
cgdParamInfo:""
|
||||
})
|
||||
const mobanplzinfo = {
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
canpull: true
|
||||
canpull: true,
|
||||
cgdParamInfo:""
|
||||
}
|
||||
const leftscrolltop = ref(0)
|
||||
|
||||
|
|
@ -436,7 +438,7 @@
|
|||
const firstgetqueryCgdList = () => {
|
||||
queryCgdList(plzinfo).then((res : any) => {
|
||||
plsbuy.value.push(...res.result.records)
|
||||
console.log("zzzz", plsbuy.value)
|
||||
// console.log("zzzz", plsbuy.value)
|
||||
if (!res.result.total) {
|
||||
nomessageshow.value = true;
|
||||
}
|
||||
|
|
@ -495,7 +497,21 @@
|
|||
queryInvo();
|
||||
}
|
||||
const showvalue = ref({
|
||||
materialImg: ""
|
||||
materialImg: "",
|
||||
cgrvalue: "",
|
||||
gysvalue: "",
|
||||
wlName: "",
|
||||
procurementPrice: "",
|
||||
wlMaterialNo: "",
|
||||
wlSpecificationModel: "",
|
||||
purchaseQuantity: "",
|
||||
wlUnits: "",
|
||||
kcsl: "",
|
||||
wlUpperLimit: "",
|
||||
wlLowerLimit: "",
|
||||
suppliersName: "",
|
||||
categoryId_dictText:"",
|
||||
typeId_dictText:"",
|
||||
})
|
||||
|
||||
const goback = () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue