提交 26b2b242 authored 作者: 陈泽健's avatar 陈泽健

排查展厅巡检中的语音转录与摄像头关闭操作失效问题,原因是缺少一个返回操作,并且麦克风和摄像头的元素定位发生变化导致操作失败,缩短等待时间。

上级 946c9138
No preview for this file type
...@@ -1002,8 +1002,8 @@ def play_cloud_voice(app_id, app_secret, device_sn): ...@@ -1002,8 +1002,8 @@ def play_cloud_voice(app_id, app_secret, device_sn):
logging.error(f"发生未知异常: {e}") logging.error(f"发生未知异常: {e}")
# # 示例调用 # # 示例调用
# if __name__ == "__main__": if __name__ == "__main__":
# app_id = os.getenv("APP_ID", "a98a124c6c3252f6612fc544a0d0fa79") app_id = os.getenv("APP_ID", "a98a124c6c3252f6612fc544a0d0fa79")
# app_secret = os.getenv("APP_SECRET", "88bc1ec4eba624f47b2200a4ce8c3852") app_secret = os.getenv("APP_SECRET", "88bc1ec4eba624f47b2200a4ce8c3852")
# device_sn = os.getenv("DEVICE_SN", "W703BB44444") device_sn = os.getenv("DEVICE_SN", "W703BB44444")
# play_cloud_voice(app_id, app_secret, device_sn) play_cloud_voice(app_id, app_secret, device_sn)
\ No newline at end of file \ No newline at end of file
...@@ -202,4 +202,6 @@ ...@@ -202,4 +202,6 @@
- 根据标准版功能巡检测试报告处理审批会议、会议模板、用户管理和部门管理模块的异常操作。 - 根据标准版功能巡检测试报告处理审批会议、会议模板、用户管理和部门管理模块的异常操作。
51. 2025-02-10 51. 2025-02-10
- 处理展厅巡检测试报告中的参数获取异常。 - 处理展厅巡检测试报告中的参数获取异常。
- 展厅巡检补充离开模式、系统开的操作,将展厅内设备进行断电。 - 展厅巡检补充离开模式、系统开的操作,将展厅内设备进行断电。
\ No newline at end of file 52. 2025-02-12
- 排查展厅巡检中的语音转录与摄像头关闭操作失效问题,原因是缺少一个返回操作,并且麦克风和摄像头的元素定位发生变化导致操作失败,缩短等待时间。
\ No newline at end of file
...@@ -25,100 +25,107 @@ class Exhibition_Meeting_Control_0001: ...@@ -25,100 +25,107 @@ class Exhibition_Meeting_Control_0001:
app_drive = app_setup_driver("Android", "5.1.1", "UT-12", "com.ubains.gviewer.develop", app_drive = app_setup_driver("Android", "5.1.1", "UT-12", "com.ubains.gviewer.develop",
"com.ubains.gviewer.activity.SplashActivity", "192.168.5.142:5555") "com.ubains.gviewer.activity.SplashActivity", "192.168.5.142:5555")
app_drive.implicitly_wait(60) # 设置缺省等待时间 app_drive.implicitly_wait(60) # 设置缺省等待时间
logging.info("等待登录页加载...") INFO("等待登录页加载...")
sleep(20) sleep(20)
# 点击【进入系统】按钮 # 点击【进入系统】按钮
enter_system_button = app_drive.find_element(AppiumBy.XPATH, enter_system_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.Button[9]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.Button[9]")
enter_system_button.click() enter_system_button.click()
sleep(20) sleep(10)
logging.info("进入系统") INFO("进入系统")
# 点击【确认】按钮 # 点击【确认】按钮
logging.info("点击【确认】按钮") INFO("点击【确认】按钮")
confirm_button = app_drive.find_element(AppiumBy.XPATH, confirm_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[2]/android.widget.Button[1]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[2]/android.widget.Button[1]")
confirm_button.click() confirm_button.click()
sleep(10) sleep(10)
# 进入视频会议模式,使用摄像头跟踪功能 # 进入视频会议模式,使用摄像头跟踪功能
logging.info("进入视频会议模式") INFO("进入视频会议模式")
video_meeting_button = app_drive.find_element(AppiumBy.XPATH, video_meeting_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[4]/android.widget.Button[14]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[4]/android.widget.Button[14]")
video_meeting_button.click() video_meeting_button.click()
sleep(20) sleep(10)
# 点击【入住式会议】按钮 # 点击【入住式会议】按钮
logging.info("点击【入住式会议】按钮") INFO("点击【入住式会议】按钮")
enter_meeting_button = app_drive.find_element(AppiumBy.XPATH, enter_meeting_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[5]/android.widget.Button[2]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[5]/android.widget.Button[2]")
enter_meeting_button.click() enter_meeting_button.click()
sleep(20) sleep(10)
# 点击【摄像头跟踪】按钮 # 点击【摄像头跟踪】按钮
logging.info("点击【摄像头跟踪】按钮") INFO("点击【摄像头跟踪】按钮")
camera_tracking_button = app_drive.find_element(AppiumBy.XPATH, camera_tracking_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[5]/android.widget.Button[30]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[5]/android.widget.Button[30]")
camera_tracking_button.click() camera_tracking_button.click()
sleep(10) sleep(10)
#选择左屏进行摄像头跟踪 #选择左屏进行摄像头跟踪
logging.info("选择左屏进行摄像头跟踪") INFO("选择左屏进行摄像头跟踪")
left_screen_button = app_drive.find_element(AppiumBy.XPATH, left_screen_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[3]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[3]")
left_screen_button.click() left_screen_button.click()
sleep(20) sleep(5)
# 返回上一级界面 # 返回上一级界面
logging.info("返回上一级界面") INFO("返回上一级界面")
back_button = app_drive.find_element(AppiumBy.XPATH, back_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[1]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[1]")
back_button.click() back_button.click()
sleep(10) sleep(5)
# 点击无纸化 # 点击无纸化
logging.info("点击无纸化") INFO("点击无纸化")
no_paper_button = app_drive.find_element(AppiumBy.XPATH, no_paper_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[5]/android.widget.Button[10]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[5]/android.widget.Button[10]")
no_paper_button.click() no_paper_button.click()
sleep(30) sleep(5)
# 点击【全部上升】按钮 # 点击【全部上升】按钮
logging.info("点击【全部上升】按钮") INFO("点击【全部上升】按钮")
all_up_button = app_drive.find_element(AppiumBy.XPATH, all_up_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[1]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[1]")
all_up_button.click() all_up_button.click()
sleep(30) sleep(5)
# 点击【返回】按钮
INFO("点击【返回】按钮")
back_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[6]")
back_button.click()
sleep(5)
# 点击左上角logo进入后台 # 点击左上角logo进入后台
# 等待元素可见,并在可见后执行长按操作。 # 等待元素可见,并在可见后执行长按操作。
enter_back_button = app_drive.find_element(AppiumBy.XPATH, enter_back_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.Button[1]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.Button[1]")
logging.info("点击左上角logo进入后台") INFO("点击左上角logo进入后台")
enter_back_button.click() enter_back_button.click()
sleep(10) sleep(5)
logging.info("尝试定位麦克风按钮") INFO("尝试定位麦克风按钮")
mic_on_button = app_drive.find_element(AppiumBy.XPATH, mic_on_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[2]/android.widget.Button[2]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[2]")
logging.info("开启麦克风") INFO("开启麦克风")
mic_on_button.click() mic_on_button.click()
sleep(10) sleep(5)
# 云喇叭参数 # 云喇叭参数
app_id = os.getenv("APP_ID", "a98a124c6c3252f6612fc544a0d0fa79") app_id = os.getenv("APP_ID", "a98a124c6c3252f6612fc544a0d0fa79")
app_secret = os.getenv("APP_SECRET", "88bc1ec4eba624f47b2200a4ce8c3852") app_secret = os.getenv("APP_SECRET", "88bc1ec4eba624f47b2200a4ce8c3852")
device_sn = os.getenv("DEVICE_SN", "W703BB44444") device_sn = os.getenv("DEVICE_SN", "W703BB44444")
play_cloud_voice(app_id, app_secret, device_sn) play_cloud_voice(app_id, app_secret, device_sn)
sleep(10) sleep(5)
mic_off_button = app_drive.find_element(AppiumBy.XPATH, mic_off_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[2]/android.widget.Button[3]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[6]/android.widget.Button[5]")
mic_off_button.click() mic_off_button.click()
sleep(10) sleep(5)
# 关闭左摄像头 # 关闭左摄像头
left_camera_off_button = app_drive.find_element(AppiumBy.XPATH, left_camera_off_button = app_drive.find_element(AppiumBy.XPATH,
"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[2]/android.widget.Button[5]") "/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.RelativeLayout/android.widget.FrameLayout/android.widget.RelativeLayout[2]/android.widget.Button[5]")
logging.info("关闭左摄像头") INFO("关闭左摄像头")
left_camera_off_button.click() left_camera_off_button.click()
sleep(20) sleep(10)
except Exception as e: except Exception as e:
...@@ -129,4 +136,4 @@ class Exhibition_Meeting_Control_0001: ...@@ -129,4 +136,4 @@ class Exhibition_Meeting_Control_0001:
# 确保驱动程序在测试结束后正确关闭 # 确保驱动程序在测试结束后正确关闭
# if app_drive: # if app_drive:
# app_drive.quit() # app_drive.quit()
# logging.info("驱动程序已退出。") # IN("驱动程序已退出。")
\ No newline at end of file \ No newline at end of file
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏截屏.png

104.6 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏截屏.png

405.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏截屏.png
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏截屏.png
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏截屏.png
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏截屏.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏设备列表.png

104.6 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏设备列表.png

104.3 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏设备列表.png
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏设备列表.png
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏设备列表.png
预定系统/reports/imgs/Exhibit_Inspect/Android/门口屏设备列表.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_down.png

349.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_down.png

349.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_down.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_on.png

451.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_on.png

460.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/command_screen_on.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_down.png

687.3 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_down.png

673.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_down.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_up.png

694.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_up.png

694.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_up.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_up.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_up.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/curtain_rtsp_up.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_brithday_on.png

457.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_brithday_on.png

474.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_brithday_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_brithday_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_brithday_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_brithday_on.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_meeting_on.png

458.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_meeting_on.png

475.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_meeting_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_meeting_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_meeting_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_meeting_on.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_space_on.png

454.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_space_on.png

471.3 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_space_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_space_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_space_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/information_space_on.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_down.png

232.9 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_down.png

216.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_down.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_down.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_on.png

358.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_on.png

355.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/light_on.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_off.png

203.6 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_off.png

203.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_off.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_off.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_off.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_off.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_on.png

229.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_on.png

225.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_on.png
预定系统/reports/imgs/Exhibit_Inspect/Control_Manage/music_on.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/会场画面控制.png

66.6 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/会场画面控制.png

66.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/会场画面控制.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/会场画面控制.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/会场画面控制.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/会场画面控制.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/分屏功能.png

61.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/分屏功能.png

61.6 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/分屏功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/分屏功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/分屏功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/分屏功能.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/查看会控按钮.png

64.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/查看会控按钮.png

64.9 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/查看会控按钮.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/查看会控按钮.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/查看会控按钮.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/查看会控按钮.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/检查会控界面功能.png

56.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/检查会控界面功能.png

56.3 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/检查会控界面功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/检查会控界面功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/检查会控界面功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/检查会控界面功能.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/添加会场功能.png

56.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/添加会场功能.png

56.6 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/添加会场功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/添加会场功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/添加会场功能.png
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/添加会场功能.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/添加议题文件.png

76.3 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/添加议题文件.png

76.3 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/添加议题文件.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/添加议题文件.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/添加议题文件.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/添加议题文件.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/选择内部参会人.png

77.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/选择内部参会人.png

77.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/选择内部参会人.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/选择内部参会人.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/选择内部参会人.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_Message/选择内部参会人.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Meeting_TableCard/进入桌牌投图.png

104.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Meeting_TableCard/进入桌牌投图.png

103.5 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Meeting_TableCard/进入桌牌投图.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_TableCard/进入桌牌投图.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_TableCard/进入桌牌投图.png
预定系统/reports/imgs/Exhibit_Inspect/Meeting_TableCard/进入桌牌投图.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/无纸化会议信息截图.png

199.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/无纸化会议信息截图.png

199.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/无纸化会议信息截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/无纸化会议信息截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/无纸化会议信息截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/无纸化会议信息截图.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件1截图.png

79.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件1截图.png

79.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件1截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件1截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件1截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件1截图.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件截图.png

198.5 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件截图.png

198.5 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件截图.png
预定系统/reports/imgs/Exhibit_Inspect/No_PaperLess/议题文件截图.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/告警数据展示.png

112.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/告警数据展示.png

112.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/告警数据展示.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/告警数据展示.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/告警数据展示.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/告警数据展示.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/控制系统.png

141.9 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/控制系统.png

141.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/控制系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/控制系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/控制系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/控制系统.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/电源系统.png

83.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/电源系统.png

83.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/电源系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/电源系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/电源系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/电源系统.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/网络系统.png

133.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/网络系统.png

133.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/网络系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/网络系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/网络系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/网络系统.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/视频系统.png

144.8 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/视频系统.png

144.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/视频系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/视频系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/视频系统.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/视频系统.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/进入系统界面.png

146.4 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/进入系统界面.png

146.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/进入系统界面.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/进入系统界面.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/进入系统界面.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/进入系统界面.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/首页界面.png

2.4 MB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/首页界面.png

2.4 MB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/首页界面.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/首页界面.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/首页界面.png
预定系统/reports/imgs/Exhibit_Inspect/Operation_maintenance/首页界面.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/选择内部参会人.png

75.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/选择内部参会人.png

75.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/选择内部参会人.png
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/选择内部参会人.png
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/选择内部参会人.png
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/选择内部参会人.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/预定会议成功界面.png

63.6 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/预定会议成功界面.png

63.5 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/预定会议成功界面.png
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/预定会议成功界面.png
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/预定会议成功界面.png
预定系统/reports/imgs/Exhibit_Inspect/Server_Monitoring/预定会议成功界面.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Tx_meeting/会场画面截屏.png

288.3 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Tx_meeting/会场画面截屏.png

402.9 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Tx_meeting/会场画面截屏.png
预定系统/reports/imgs/Exhibit_Inspect/Tx_meeting/会场画面截屏.png
预定系统/reports/imgs/Exhibit_Inspect/Tx_meeting/会场画面截屏.png
预定系统/reports/imgs/Exhibit_Inspect/Tx_meeting/会场画面截屏.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建会议详情.png

57.5 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建会议详情.png

57.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建会议详情.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建会议详情.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建会议详情.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建会议详情.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建多SMC会议提示MCU资源不足.png

59.0 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建多SMC会议提示MCU资源不足.png

59.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建多SMC会议提示MCU资源不足.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建多SMC会议提示MCU资源不足.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建多SMC会议提示MCU资源不足.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/创建多SMC会议提示MCU资源不足.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/多画面设置.png

81.5 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/多画面设置.png

81.2 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/多画面设置.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/多画面设置.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/多画面设置.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/多画面设置.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端入会画面.png

80.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端入会画面.png

79.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端入会画面.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端入会画面.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端入会画面.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端入会画面.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端设备控制.png

80.1 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端设备控制.png

79.7 KB | W: 0px | H: 0px

预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端设备控制.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端设备控制.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端设备控制.png
预定系统/reports/imgs/Exhibit_Inspect/Unified_Platform/终端设备控制.png
  • 2-up
  • Swipe
  • Onion skin
预定系统/reports/imgs/Login/Login_Pwd/登录_001_检查登录失败提示信息.png

2.3 MB | W: 0px | H: 0px

预定系统/reports/imgs/Login/Login_Pwd/登录_001_检查登录失败提示信息.png

2.3 MB | W: 0px | H: 0px

预定系统/reports/imgs/Login/Login_Pwd/登录_001_检查登录失败提示信息.png
预定系统/reports/imgs/Login/Login_Pwd/登录_001_检查登录失败提示信息.png
预定系统/reports/imgs/Login/Login_Pwd/登录_001_检查登录失败提示信息.png
预定系统/reports/imgs/Login/Login_Pwd/登录_001_检查登录失败提示信息.png
  • 2-up
  • Swipe
  • Onion skin
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论