|
@@ -44,6 +44,7 @@ export default {
|
|
|
methods: {
|
|
|
async testing() {
|
|
|
await getCode(async (code) => {
|
|
|
+ alert(code+'aaaaaa')
|
|
|
this.code = code;
|
|
|
if (this.code != null && this.code != "") {
|
|
|
await this.setcode(this.code);
|
|
@@ -53,6 +54,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
async setcode(code) {
|
|
|
+ alert(code+'cccc')
|
|
|
let model = { code: code };
|
|
|
this.$store
|
|
|
.dispatch("user/dingUserInfor", model)
|