Commit 70ba2e40 authored by Smile's avatar Smile

Merge remote-tracking branch 'origin/jd_dev' into jd_dev

parents 9b303e21 94dacf75
...@@ -999,7 +999,9 @@ export default { ...@@ -999,7 +999,9 @@ export default {
}, },
watch: { watch: {
showSearch() { showSearch() {
this.handleQuery() this.$nextTick(() => {
this.getHeight()
})
}, },
selectCustomerList(val) { selectCustomerList(val) {
if (val.length === 0) { if (val.length === 0) {
......
...@@ -990,7 +990,9 @@ export default { ...@@ -990,7 +990,9 @@ export default {
}, },
watch: { watch: {
showSearch() { showSearch() {
this.handleQuery() this.$nextTick(() => {
this.getHeight()
})
}, },
selectCustomerList(val) { selectCustomerList(val) {
if (val.length === 0) { if (val.length === 0) {
......
...@@ -697,7 +697,9 @@ export default { ...@@ -697,7 +697,9 @@ export default {
}, },
watch: { watch: {
showSearch() { showSearch() {
this.handleQuery() this.$nextTick(() => {
this.getHeight()
})
} }
}, },
computed: { computed: {
......
...@@ -228,7 +228,9 @@ export default { ...@@ -228,7 +228,9 @@ export default {
}, },
watch: { watch: {
showSearch() { showSearch() {
this.handleQuery() this.$nextTick(() => {
this.getHeight()
})
}, },
selectCustomerFollowList(val) { selectCustomerFollowList(val) {
if (val.length === 0) { if (val.length === 0) {
......
...@@ -851,10 +851,12 @@ export default { ...@@ -851,10 +851,12 @@ export default {
isChinese() { isChinese() {
this.getList() this.getList()
}, },
// provinceCode destCountryId
showSearch() { showSearch() {
this.handleQuery() this.$nextTick(() => {
this.getHeight()
})
}, },
// provinceCode destCountryId
destCountryId: { destCountryId: {
//监听当前地区值的变化,于与上方地区值进行了双向绑定 //监听当前地区值的变化,于与上方地区值进行了双向绑定
deep: true, //深度监听 deep: true, //深度监听
......
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