发票
-
-
-
-
-
-
-
-
-
-
+ 复制
+
{
+ this.$message({
+ type: 'success',
+ message: '补单成功!'
+ });
//补单
let orderQuery = {
billNo: row.billNo
}
supplementOrder(orderQuery);
- this.$message({
- type: 'success',
- message: '补单成功!'
- });
}).catch(() => {
this.$message({
type: 'info',
diff --git a/src/views/inout/IOAddOrder.vue b/src/views/inout/IOAddOrder.vue
index f2baca0..e41a133 100644
--- a/src/views/inout/IOAddOrder.vue
+++ b/src/views/inout/IOAddOrder.vue
@@ -171,7 +171,7 @@
是否只采集预验收产品
diff --git a/src/views/userManage/param/phoneRegisterManage.vue b/src/views/userManage/param/phoneRegisterManage.vue
index d9a5c01..04c10f5 100644
--- a/src/views/userManage/param/phoneRegisterManage.vue
+++ b/src/views/userManage/param/phoneRegisterManage.vue
@@ -31,9 +31,31 @@
+
+
+
+
+
+
+
@@ -184,6 +206,8 @@
import {registerList, check, deleterKey} from "../../../api/auth/deviceCheck";
import QRCode from 'qrcodejs2'
import axios from "axios";
+import store from "@/store";
+import {getCompany, modifyCompany} from "@/api/inout/company";
export default {
data() {
@@ -213,6 +237,7 @@ export default {
editDialogVisible: false,
qrCodeVisible: false,
serverUrl: false,
+ companyInfo: {},
};
},
@@ -328,6 +353,13 @@ export default {
this.centerDialogVisible = false;
},
qrCodeGeneration() {
+ let tquery = {
+ customerId: 110,
+ };
+ getCompany(tquery).then((response) => {
+ this.loading = false;
+ this.companyInfo = response.data;
+ });
this.qrCodeVisible = true;
this.$nextTick(function () {
document.getElementById("qrCodeUrl").innerHTML = "";
@@ -339,6 +371,14 @@ export default {
colorLight: "#fff"
});
});
+ },
+ saveNameClick() {
+ modifyCompany(this.companyInfo).then((response) => {
+ if (response.code == 20000) {
+ this.$message.success("保存成功!");
+ this.qrCodeVisible = false;
+ }
+ });
}
},