mirror of
				https://github.com/pure-admin/vue-pure-admin.git
				synced 2025-11-03 13:44:47 +08:00 
			
		
		
		
	Merge remote-tracking branch 'origin/main' into gitee
This commit is contained in:
		
						commit
						f9124c886c
					
				@ -9,6 +9,7 @@ defineOptions({
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
const inputValue = defineModel({ type: String });
 | 
					const inputValue = defineModel({ type: String });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const searchVal = ref();
 | 
				
			||||||
const animatesList = ref(animates);
 | 
					const animatesList = ref(animates);
 | 
				
			||||||
const copyAnimatesList = cloneDeep(animatesList);
 | 
					const copyAnimatesList = cloneDeep(animatesList);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -48,6 +49,7 @@ function onClear() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function filterMethod(value: any) {
 | 
					function filterMethod(value: any) {
 | 
				
			||||||
 | 
					  searchVal.value = value;
 | 
				
			||||||
  animatesList.value = copyAnimatesList.value.filter((i: string | any[]) =>
 | 
					  animatesList.value = copyAnimatesList.value.filter((i: string | any[]) =>
 | 
				
			||||||
    i.includes(value)
 | 
					    i.includes(value)
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
@ -110,7 +112,7 @@ function onMouseleave() {
 | 
				
			|||||||
          </ul>
 | 
					          </ul>
 | 
				
			||||||
          <el-empty
 | 
					          <el-empty
 | 
				
			||||||
            v-show="animatesList.length === 0"
 | 
					            v-show="animatesList.length === 0"
 | 
				
			||||||
            description="暂无动画"
 | 
					            :description="`${searchVal} 动画不存在`"
 | 
				
			||||||
            :image-size="60"
 | 
					            :image-size="60"
 | 
				
			||||||
          />
 | 
					          />
 | 
				
			||||||
        </el-scrollbar>
 | 
					        </el-scrollbar>
 | 
				
			||||||
 | 
				
			|||||||
@ -174,6 +174,11 @@ watch(
 | 
				
			|||||||
                    />
 | 
					                    />
 | 
				
			||||||
                  </li>
 | 
					                  </li>
 | 
				
			||||||
                </ul>
 | 
					                </ul>
 | 
				
			||||||
 | 
					                <el-empty
 | 
				
			||||||
 | 
					                  v-show="pageList.length === 0"
 | 
				
			||||||
 | 
					                  :description="`${filterValue} 图标不存在`"
 | 
				
			||||||
 | 
					                  :image-size="60"
 | 
				
			||||||
 | 
					                />
 | 
				
			||||||
              </el-scrollbar>
 | 
					              </el-scrollbar>
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
          </el-tabs>
 | 
					          </el-tabs>
 | 
				
			||||||
 | 
				
			|||||||
@ -19,5 +19,5 @@ const props = defineProps({
 | 
				
			|||||||
      :noticeItem="item"
 | 
					      :noticeItem="item"
 | 
				
			||||||
    />
 | 
					    />
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
  <el-empty v-else description="暂无数据" />
 | 
					  <el-empty description="暂无消息" />
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
				
			|||||||
@ -133,7 +133,7 @@ const handleManageProduct = product => {
 | 
				
			|||||||
              v.name.toLowerCase().includes(searchValue.toLowerCase())
 | 
					              v.name.toLowerCase().includes(searchValue.toLowerCase())
 | 
				
			||||||
            ).length === 0
 | 
					            ).length === 0
 | 
				
			||||||
        "
 | 
					        "
 | 
				
			||||||
        description="暂无数据"
 | 
					        :description="`${searchValue} 产品不存在`"
 | 
				
			||||||
      />
 | 
					      />
 | 
				
			||||||
      <template v-if="pagination.total > 0">
 | 
					      <template v-if="pagination.total > 0">
 | 
				
			||||||
        <el-row :gutter="16">
 | 
					        <el-row :gutter="16">
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user