提交 235c2d25 authored 作者: 陈泽健's avatar 陈泽健

根据测试报告打印的异常信息,调整会议主流程相关代码的定位方式。

上级 a5a58c16
No preview for this file type
......@@ -68,8 +68,8 @@ def browser_init(login_type):
# service = Service(ChromeDriverManager().install())
# 手动指定ChromeDriver的路径
# 自动化运行服务器的chromedriver路径:
# service = Service(r'C:\Users\29194\AppData\Local\Programs\Python\Python310\Scripts\chromedriver.exe')
service = Service(r'C:\Program Files\Python310\Scripts\chromedriver.exe')
service = Service(r'C:\Users\29194\AppData\Local\Programs\Python\Python310\Scripts\chromedriver.exe')
# service = Service(r'C:\Program Files\Python310\Scripts\chromedriver.exe')
# 尝试创建WebDriver实例并执行初始化操作
try:
# 创建WebDriver实例
......
......@@ -181,3 +181,5 @@
- 封装配置项读取函数增加异常处理判断,调整涉及的相关代码部分,调整模拟器adb连接初始化方式。
43. 2025-01-17
- 调整优化。
44. 2025-01-20
- 根据测试报告打印的异常信息,调整会议主流程相关代码的定位方式。
\ No newline at end of file
......@@ -325,13 +325,12 @@ class Message_Update_000x:
sleep(1)
# 查看是否显示加载中
notify_text = elment_get_text((By.XPATH, "//p[@class='el-loading-text']"), wd)
CHECK_POINT("是否显示加载中", "提交数据中" in notify_text)
sleep(8)
# notify_text = elment_get_text((By.XPATH, "//p[@class='el-loading-text']"), wd)
# CHECK_POINT("是否显示加载中", "提交数据中" in notify_text)
sleep(2)
# 获取提示信息
notify_text = get_notify_text(wd, (By.XPATH, "//p[contains(@class,'el-message__content')]"), "Message_Manage",
"Message_Book", f"{name}_修改成功提示信息")
INFO(f"修改成功提示信息为:{notify_text}")
CHECK_POINT("修改成功提示是否正确", notify_text == check_text)
\ No newline at end of file
......@@ -2,6 +2,8 @@ from datetime import timedelta
import sys
import os
from pkg_resources import safe_listdir
# 获取当前脚本的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
# 构建预定系统的绝对路径
......@@ -42,7 +44,7 @@ class Message_Update_000x:
# 从全局存储中获取webdriver实例
wd = GSTORE['wd']
name = self.name
message_name, check_text = self.para
message_name, book_type, check_text = self.para
# 切换至已预定列表界面
STEP(1, '切换至已预定列表界面')
......@@ -64,15 +66,29 @@ class Message_Update_000x:
sleep(2)
STEP(2, "点击【删除会议】按钮")
if book_type == "普通会议":
# 点击【会议删除】按钮
safe_click((By.XPATH, "//span[contains(text(),'删除会议')]"), wd)
# 点击【取消】按钮
safe_click((By.XPATH, "(//span[contains(text(),'取消')])[5]"),wd)
safe_click((By.XPATH,
"//button[contains(@class,'el-button el-button--default el-button--small btn-custom-cancel')]//span[contains(text(),'取消')]"),
wd)
sleep(5)
# 再次点击【会议删除】按钮
safe_click((By.XPATH, "//span[contains(text(),'删除会议')]"), wd)
safe_click((By.XPATH, "(//span[contains(text(),'确定')])[11]"), wd)
safe_click((By.XPATH,
"//button[contains(@class,'el-button el-button--default el-button--small el-button--primary')]//span[contains(text(),'确定')]"),
wd)
sleep(2)
elif book_type == "周期会议":
# 点击【会议删除】按钮
safe_click((By.XPATH, "//span[contains(text(),'删除会议')]"), wd)
# 点击【删除本次及后续的周期会议】
safe_click((By.XPATH,"//span[contains(text(),'删除本次及后续的周期会议')]"), wd)
sleep(1)
# 点击【确定】按钮
safe_click((By.XPATH,"//div[contains(@aria-label,'提示')]//span[contains(text(),'确定')]"), wd)
sleep(1)
STEP(4, f"检查删除提示信息是否正确:{check_text}")
# 获取删除成功提示信息
......
No preview for this file type
预定系统/reports/imgs/Exhibit_Inspect/MeetingControl/会场画面控制.png

62.0 KB | W: 0px | H: 0px

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

62.0 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

62.2 KB | W: 0px | H: 0px

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

62.2 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

63.9 KB | W: 0px | H: 0px

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

64.1 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.8 KB | W: 0px | H: 0px

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

56.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

58.4 KB | W: 0px | H: 0px

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

58.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/Meeting_Message/添加议题文件.png

75.9 KB | W: 0px | H: 0px

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

75.9 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

76.6 KB | W: 0px | H: 0px

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

76.7 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

102.2 KB | W: 0px | H: 0px

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

103.9 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/Meeting_TableCard/进入桌牌系统.png

68.8 KB | W: 0px | H: 0px

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

70.0 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

200.1 KB | W: 0px | H: 0px

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

200.1 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.8 KB | W: 0px | H: 0px

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

79.0 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

111.4 KB | W: 0px | H: 0px

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

111.5 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

142.5 KB | W: 0px | H: 0px

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

142.6 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.6 KB | W: 0px | H: 0px

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

83.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

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

146.8 KB | W: 0px | H: 0px

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

146.9 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

138.5 KB | W: 0px | H: 0px

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

138.5 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/Server_Monitoring/选择内部参会人.png

75.3 KB | W: 0px | H: 0px

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

75.4 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

62.8 KB | W: | H:

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

62.9 KB | W: | H:

预定系统/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

235.1 KB | W: | H:

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

133.9 KB | W: | H:

预定系统/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.3 KB | W: | H:

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

57.5 KB | W: | H:

预定系统/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.2 KB | W: | H:

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

59.2 KB | W: | H:

预定系统/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

80.7 KB | W: | H:

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

80.3 KB | W: | H:

预定系统/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

79.0 KB | W: | H:

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

79.0 KB | W: | H:

预定系统/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

79.0 KB | W: | H:

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

79.0 KB | W: | H:

预定系统/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

173.8 KB | W: | H:

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

175.1 KB | W: | H:

预定系统/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/XF_Meeting/讯飞纪要界面截屏.png

139.1 KB | W: | H:

预定系统/reports/imgs/Exhibit_Inspect/XF_Meeting/讯飞纪要界面截屏.png

139.4 KB | W: | H:

预定系统/reports/imgs/Exhibit_Inspect/XF_Meeting/讯飞纪要界面截屏.png
预定系统/reports/imgs/Exhibit_Inspect/XF_Meeting/讯飞纪要界面截屏.png
预定系统/reports/imgs/Exhibit_Inspect/XF_Meeting/讯飞纪要界面截屏.png
预定系统/reports/imgs/Exhibit_Inspect/XF_Meeting/讯飞纪要界面截屏.png
  • 2-up
  • Swipe
  • Onion skin
name,message_name,check_text
会议删除_001,这是普通会议测试3,删除成功
会议删除_002,修改会议测试,删除成功
\ No newline at end of file
会议删除_001,这是普通会议测试3,普通会议,删除成功
会议删除_002,修改会议测试,普通会议,删除成功
会议删除_003,这是周期会议测试1,周期会议,删除成功
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论