final_html_content = """ 销售订单管理

销售订单

序号 销售订单编号 订单类型 物料名称 物料编码 订单数量 库存发货量 交货时间
""" with open("sales_order_page.html", "w", encoding="utf-8") as f: f.write(final_html_content) print("File 'sales_order_page.html' has been created successfully.")
问题反馈