This commit is contained in:
xd 2024-03-15 11:01:03 +08:00
commit 0b18a6f546
1 changed files with 4 additions and 2 deletions

View File

@ -691,10 +691,12 @@ export default {
/**-------------获取红本信息,包括红本版本、铜价和铝价---------------**/
getRedBookInfo() {
queryRedBookInfo().then(response => {
redBookVer = response.data.uid;
this.totalForm.currAdjDate = response.data.currAdjDate.substring(0, 10);
this.totalForm.currCopperPrice = response.data.currCopperPrice;
this.totalForm.currAlumPrice = response.data.currAlumPrice
this.totalForm.currAlumPrice = response.data.currAlumPrice;
console.log("redBookVer:" + redBookVer)
});
queryRedBookLocalVer().then(response => {
redBookLocalVer = response.msg
@ -891,7 +893,7 @@ export default {
},
/**----------------计算数据--------------------**/
calculatedData() {
if(redBookVer !== redBookLocalVer) {
if(Number(redBookVer) !== Number(redBookLocalVer)) {
this.$message({
type: 'warning',
message: "调价结果未同步,请联系管理员进行同步再进行价格计算。"