Commit 7ab47a6d authored by 赵茹林's avatar 赵茹林

fix

parent a643bae3
......@@ -190,6 +190,7 @@
},
data() {
return {
CALLBACK_INTENTION: CALLBACK_INTENTION,
show: false,
loading: true,
list: [],
......@@ -214,7 +215,7 @@
transIntention(string) {
var result;
if (string) {
result = CALLBACK_INTENTION.find(i => {
result = this.CALLBACK_INTENTION.find(i => {
return i.value == string
}).label
} else {
......
......@@ -183,6 +183,7 @@
},
data() {
return {
CALLBACK_INTENTION: CALLBACK_INTENTION,
dialog: {
search: {
wechat_number: '',
......@@ -225,7 +226,7 @@
transIntention(string) {
var result;
if (string) {
result = CALLBACK_INTENTION.find(i => {
result = this.CALLBACK_INTENTION.find(i => {
return i.value == string
}).label
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment