|
@@ -80,7 +80,7 @@ const tableColumns = [
|
|
|
]
|
|
|
const tableData = ref([])
|
|
|
async function getChartList() {
|
|
|
- const cArr=Array.from(new Set(filterState.classify.flat())).join(',')
|
|
|
+ const cArr=filterState.classify?Array.from(new Set(filterState.classify.flat())).join(','):''
|
|
|
const res = await apiETAChart.chartListFilter({
|
|
|
ChartClassifyIds: cArr|| '',
|
|
|
PageSize: pagination.value.defaultPageSize,
|
|
@@ -147,11 +147,11 @@ function handleConfirmClassify() {
|
|
|
MessagePlugin.warning('请选择要移动的图表')
|
|
|
return
|
|
|
}
|
|
|
- if(!filterState.targetClassify){
|
|
|
+ if(!filterState.targetClassify&&filterState.targetClassify!==0){
|
|
|
MessagePlugin.warning('请选择要移动至的分类')
|
|
|
return
|
|
|
}
|
|
|
- const cArr=Array.from(new Set(filterState.classify.flat())).join(',')
|
|
|
+ const cArr=filterState.classify?Array.from(new Set(filterState.classify.flat())).join(','):''
|
|
|
const params={
|
|
|
SelectAll: filterState.checkAll,
|
|
|
ChartClassifyIds: cArr|| '', //多个分类id用英文逗号拼接
|
|
@@ -164,7 +164,7 @@ function handleConfirmClassify() {
|
|
|
apiETAChart.moveChartBatch(params).then(res=>{
|
|
|
if(res.Ret===200){
|
|
|
MessagePlugin.success('操作成功')
|
|
|
- filterState.classify=''
|
|
|
+ filterState.classify=[]
|
|
|
filterState.user=''
|
|
|
filterState.searchVal=''
|
|
|
filterState.checkAll=false
|