/* * 自定义浏览框组件 * 弹框操作栏 * @Author: 黎永顺 * @Date: 2024/8/30 * @Wechat: * @Email: 971387674@qq.com * @description: */ import React, { Component } from "react"; import { WeaLocaleProvider } from "ecCom"; import { Button } from "antd"; const getLabel = WeaLocaleProvider.getLabel; class CustomBrowserOperation extends Component { render() { const { moveToLeft, moveToRight, leftArrowText, rightArrowText, leftActive, rightActive, className, leftAllActive, moveAllToLeft, rightAllActive, moveAllToRight } = this.props; const moveToLeftButton = ( ); const moveToRightButton = ( ); const moveAllToLeftButton = ( ); const moveAllToRightButton = ( ); return (