diff --git a/src/views/index.vue b/src/views/index.vue
index 7c7c898..f88b727 100644
--- a/src/views/index.vue
+++ b/src/views/index.vue
@@ -192,7 +192,7 @@ let bar_option = ref({
position: 'top',
color: "#797979",
formatter: function (p) {
- let sum = pass.value[p.dataIndex] + noPass.value[p.dataIndex];
+ let sum = +pass.value[p.dataIndex] + (+noPass.value[p.dataIndex]);
return sum;
}
}
diff --git a/src/views/product/product/index.vue b/src/views/product/product/index.vue
index ed22218..205a4f1 100644
--- a/src/views/product/product/index.vue
+++ b/src/views/product/product/index.vue
@@ -156,7 +156,7 @@ function getProductQRCode(code) {
ctx.font = "bold 20px Arial";
ctx.fillStyle = "black";
ctx.textAlign="center";
- ctx.fillText("产品编码" + ':' + code, 125, 310); // 调整文本的位置和行间距
+ ctx.fillText(proxy.tLang('product',"编码") + ':' + code, 125, 310); // 调整文本的位置和行间距
// Object.keys(list).forEach((key,index) => {
// ctx.fillText(key +':'+ list[key], 240, 30 + index * 20); // 调整文本的位置和行间距
// });
diff --git a/src/views/quality/index.vue b/src/views/quality/index.vue
index d33d62f..78856bd 100644
--- a/src/views/quality/index.vue
+++ b/src/views/quality/index.vue
@@ -97,7 +97,7 @@
{{tLang('common','合格')}}
{{tLang('common','不合格')}}
- {{tLang('common','未完成')}}
+ {{tLang('common','未完成')}}
diff --git a/src/views/system/user/profile/index.vue b/src/views/system/user/profile/index.vue
index 5851f05..025550e 100644
--- a/src/views/system/user/profile/index.vue
+++ b/src/views/system/user/profile/index.vue
@@ -14,27 +14,27 @@