bug
This commit is contained in:
@@ -178,6 +178,10 @@ export default {
|
|||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.clickedUserSelect = false
|
this.clickedUserSelect = false
|
||||||
})
|
})
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
this.clickedUserSelect = false
|
||||||
|
}, 2000)
|
||||||
},
|
},
|
||||||
fileList(e) {
|
fileList(e) {
|
||||||
this.form.files = e
|
this.form.files = e
|
||||||
|
|||||||
@@ -126,6 +126,10 @@ export default {
|
|||||||
console.log(e)
|
console.log(e)
|
||||||
this.clickedUserSelect = false
|
this.clickedUserSelect = false
|
||||||
})
|
})
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
this.clickedUserSelect = false
|
||||||
|
}, 2000)
|
||||||
},
|
},
|
||||||
confirm(e) {
|
confirm(e) {
|
||||||
if (e.timestamp < (Date.now() / 1000) || 0) {
|
if (e.timestamp < (Date.now() / 1000) || 0) {
|
||||||
|
|||||||
@@ -366,6 +366,12 @@ const store = new Vuex.Store({
|
|||||||
console.log(111)
|
console.log(111)
|
||||||
// alert(JSON.stringify(res))
|
// alert(JSON.stringify(res))
|
||||||
console.log(res)
|
console.log(res)
|
||||||
|
uni.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: JSON.stringify(res),
|
||||||
|
success: function (res) {
|
||||||
|
}
|
||||||
|
});
|
||||||
if (res.err_msg == "selectPrivilegedContact:ok") {
|
if (res.err_msg == "selectPrivilegedContact:ok") {
|
||||||
if (typeof res.result == 'string') {
|
if (typeof res.result == 'string') {
|
||||||
res.result = JSON.parse(res.result)
|
res.result = JSON.parse(res.result)
|
||||||
|
|||||||
Reference in New Issue
Block a user