|
@@ -212,6 +212,22 @@ watch(
|
|
}
|
|
}
|
|
},
|
|
},
|
|
)
|
|
)
|
|
|
|
+watch(
|
|
|
|
+ currentCategory,
|
|
|
|
+ () => {
|
|
|
|
+ console.log('watch run bbb')
|
|
|
|
+ if (!currentCategory.value) return
|
|
|
|
+ console.log('watch run')
|
|
|
|
+ keywords.value = ''
|
|
|
|
+ skuList.value = []
|
|
|
|
+ pageForm.value = {
|
|
|
|
+ page: 1,
|
|
|
|
+ limit: 20,
|
|
|
|
+ }
|
|
|
|
+ total.value = 0
|
|
|
|
+ getSku()
|
|
|
|
+ },
|
|
|
|
+)
|
|
const close = (done = {} as any) => {
|
|
const close = (done = {} as any) => {
|
|
$emit('update:visible', false)
|
|
$emit('update:visible', false)
|
|
if (typeof done === 'function') done()
|
|
if (typeof done === 'function') done()
|