导航:首页 > 源码编译 > 设计院协同设计平台源码

设计院协同设计平台源码

发布时间:2023-01-19 15:03:20

㈠ 什么是产品协同设计

协同设计是当下设计行业技术更新的一个重要方向,也是设计技术发展的必然趋势,其中有二个技术分支,一是主要适合于大型公建,复杂结构的三维BIM协同,二是主要适合普通建筑及住宅的二维CAD协同。通过协同设计建立统一的设计标准,包括图层、颜色、线型、打印样式等,在此基础上,所有设计专业及人员在一个统一的平台上进行设计,从而减少现行各专业之间(以及专业内部)由于沟通不畅或沟通不及时导致的错、漏、碰、缺,真正实现所有图纸信息元的单一性,实现一处修改其他自动修改,提升设计效率和设计质量。
同时,协同设计也对设计项目的规范化管理起到重要作用,包括进度管理、设计文件统一管理、人员负荷管理、审批流程管理、自动批量打印、分类归档等。国内有很多提供这方面技术服务的公司,其中免费的平台有:律典(上海)的云协同,可以尝试着玩玩,以进一步了解协同设计。

㈡ 办公OA系统源代码

Asp.net通用OA系统源代码下载 除了具有传统OA的邮件、工作流、文档等功能外,还引进了项目管理和知识管理的思想,更加注重工作任务的分解、协同和监督;知识的积累、沉淀和分享,多条件跳转的分支流更为特色,有效为企业构筑协同工作平台 比较通用的办公OA系统 有部门管理 日常考勤 日志管理 项目管理 客户关系管理等比较通用的功能 默认管理员帐号密码51aspx Db_51aspx下面为数据库文件连接地址: http://www.onegreen.net/code/HTML/12940.html这个应该可以实现,自己试一试吧!

㈢ 协同设计的概述

协同设计软件会在不增加你任何工作负担、不影响你任何设计思路的情况下,始终帮助你理顺设计中的每一张图纸,记录清楚其各个历史版本和历程,从此你的设计图纸不再凌乱;始终帮助你掌握设计的协作分寸和时机,使得图纸环节的流转及时顺畅,资源共享充分圆满,从此不再有所谓的扯皮推诿;始终帮助你监控设计过程中的每个环节,使得工程进度把握有序,从此工期不再拖延。协同设计就相当于配给你的得力助手,神奇的魅力令你无法抗拒。协同设计工作是以一种协作的方式,使成本可以降低,可以更快地完成设计。协同设计由流程、协作和管理三类模块构成。设计、校审和管理等不同角色人员利用该平台中的相关功能实现各自工作。
协同设计的真正含义是:首先在一个完整的组织机构共同来完成一个项目,项目的信息和文档从一开始创建时起,就放置到共享平台上,被项目组的所有成员查看和利用,从而完美实现设计流程上下游专业间的“提资”。

㈣ 求java编写的简单协同文本编辑器源码~~~急!

package jettang;

import java.lang.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.sql.*;

//////////////////////////////////////////////

//主类
public class STU {
public STU() {
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}

public static void main(String args[]) {
new Frm_Main();
}

private void jbInit() throws Exception {
}
}

//主框架,数据库
class Frm_Main implements ActionListener { //throws IOException
public static final int EXIT_ON_CLOSE = 0;
public JFrame frame;
public Container c;
public JMenuBar menuBar;
public JMenu mainMenu1;
public JMenu mainMenu2;
public JMenu mainMenu3;
public JMenuItem subMenu1[] = new JMenuItem[5];
public JMenuItem subMenu2[] = new JMenuItem[7];
public JMenuItem subMenu3[] = new JMenuItem[2];
JButton toolBarButton[] = new JButton[8];
public JToolBar toolBar;
//////////////////////////////////////////////
String strTip[] = {"姓名查询...", "添加信息...",
"删除...", "修改...", "修改确认...",
"添加确认...", "删除确认...", "关于产品信息:)"};
//////////////////////////////////////////////
// String id = new String();
String name = new String();
String sex = new String();
String age = new String();
String classid = new String();
String department = new String();
String call = new String();
//////////////////////////////////////////////
Connection con;
ResultSet rs;
Statement st;
// ResultSetMetaData rsmd;
// Vector columnHeads=new Vector();
// Vector rows = new Vector();
// Vector currentRow=new Vector();

///////////////////////////////////////////////
public JLabel classidL = new JLabel("班级");
public JLabel nameL = new JLabel("姓名");
public JLabel sexL = new JLabel("性别");
public JLabel ageL = new JLabel("年龄");
public JLabel departmentL = new JLabel("单位");
public JLabel callL = new JLabel("电话");
public JLabel tittleLabel = new JLabel();
//////////////////////////////////////////////
public JTextField classidT = new JTextField();
public JTextField nameT = new JTextField();
public JTextField sexT = new JTextField();
public JTextField ageT = new JTextField();
public JTextField departmentT = new JTextField();
public JTextField callT = new JTextField();
public JTextArea textT = new JTextArea();
//////////////////////////////////////////////

//////////////////////////////////////////////
public Frm_Main() {
/////////////////////////////////////////////////
frame = new JFrame("学籍管理系统V1.0");
c = frame.getContentPane();
c.setLayout(null);
menuBar = new JMenuBar();
toolBar = new JToolBar();
toolBar.setFloatable(false);
frame.setJMenuBar(menuBar);
frame.setResizable(false);
////////////////////////////////////////////////
mainMenu1 = new JMenu("管理");
String str1[] = {"添加", "删除", "查询", " ", "关闭"};
for (int i = 0; i < 5; i++) {
if (i == 3) {
mainMenu1.addSeparator();
} else {

subMenu1[i] = new JMenuItem(str1[i]);
subMenu1[i].addActionListener(this);
mainMenu1.add(subMenu1[i]);
}
}
menuBar.add(mainMenu1);
/////////////////////////////////////////////////
mainMenu2 = new JMenu("*作");
String str2[] = {"查询", "添加", "删除", "修改",
"提交修改", "提交添加", "提交删除"};
for (int i = 0; i < 7; i++) {
subMenu2[i] = new JMenuItem(str2[i]);
subMenu2[i].addActionListener(this);
mainMenu2.add(subMenu2[i]);
}
menuBar.add(mainMenu2);
/////////////////////////////////////////////////
mainMenu3 = new JMenu("集体查询");
String str3[] = {"按班级...", "按单位..."};
for (int i = 0; i < 2; i++) {
subMenu3[i] = new JMenuItem(str3[i]);
subMenu3[i].addActionListener(this);
mainMenu3.add(subMenu3[i]);
}
menuBar.add(mainMenu3);
////////////////////////////////////////////////
String strToolBar[] = {"查询", "添加", "删除", "修改", "提交修改",
"提交添加", "提交删除", "关于"};

for (int i = 0; i < 8; i++) {

toolBarButton[i] = new JButton(strToolBar[i]);
toolBarButton[i].setToolTipText(strTip[i]);
toolBarButton[i].addActionListener(this);
toolBar.add(toolBarButton[i]);

}
toolBar.setLocation(0, 0);
toolBar.setSize(400, 30);
c.add(toolBar);
////////////////////////////////////////////////
classidL.setLocation(35, 40);
classidL.setSize(40, 20);
//classidL.setFont(new Font("",Font.BOLD,12));
c.add(classidL);

classidT.setLocation(90, 40);
classidT.setSize(200, 20);
//classidT.setEnabled(false);
c.add(classidT);

nameL.setLocation(35, 70);
nameL.setSize(40, 20);
c.add(nameL);

nameT.setLocation(90, 70);
nameT.setSize(200, 20);
c.add(nameT);

sexL.setLocation(35, 100);
sexL.setSize(40, 20);
c.add(sexL);

sexT.setLocation(90, 100);
sexT.setSize(200, 20);
c.add(sexT);

ageL.setLocation(35, 130);
ageL.setSize(40, 20);
c.add(ageL);

ageT.setLocation(90, 130);
ageT.setSize(200, 20);
c.add(ageT);

departmentL.setLocation(35, 160);
departmentL.setSize(40, 20);
c.add(departmentL);

departmentT.setLocation(90, 160);
departmentT.setSize(200, 20);
c.add(departmentT);

callL.setLocation(35, 190);
callL.setSize(40, 20);
c.add(callL);

callT.setLocation(90, 190);
callT.setSize(200, 20);
c.add(callT);
/////////////////////////////////////////////////
tittleLabel.setText("----------集体查询结果--------");
tittleLabel.setSize(300, 20);
tittleLabel.setLocation(10, 210);
c.add(tittleLabel);
////////////////////////////////////////////
textT.setSize(400, 300);
textT.setLocation(10, 240);
c.add(textT, 14);

///////////////////////////////////////////////
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(500, 650);
frame.setLocation(200, 200);
frame.setVisible(true);
conDB();

}

//以上是框架设计

//JDBC
public void conDB() {
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

} catch (ClassNotFoundException e) {
JOptionPane.showMessageDialog(null, "数据库错误");
}
try {
con = DriverManager.getConnection("jdbc:odbc:jettang", "sa", "");
st = con.createStatement();
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, "数据库连接失败");
}

}

//关闭连接
public void closeDB() {
try {
st.close();
con.close();
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, "数据库关闭失败");
}
}

//事件响应
public void actionPerformed(ActionEvent e) {
//////////////////////////////////////////////
if (e.getSource() == toolBarButton[7]) {
JOptionPane.showMessageDialog(null, "当前版本1.0,*作帮助请看使用说明书");
}

/////////////////////////////////////////////查询(按姓名)
if (e.getSource() == subMenu2[0] || e.getSource() == toolBarButton[0] ||
e.getSource() == subMenu1[2]) {

String idid = JOptionPane.showInputDialog("请输入学生姓名");
if (idid.trim() != "") {
String strSQL = "select * from stuinfo where name = + idid +
";
try {
rs = st.executeQuery(strSQL);
int count = 0;
while (rs.next()) {
classid = rs.getString("classid");
name = rs.getString("name");
department = rs.getString("department");
sex = rs.getString("sex");
age = rs.getString("age");
call = rs.getString("call");
++count;
}
if (count == 0) {
JOptionPane.showMessageDialog(null, "无此信息");
} else {
classidT.setText(classid);
nameT.setText(name);
sexT.setText(sex);
ageT.setText(age);
callT.setText(call);
departmentT.setText(department);
}
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "查询失败");
}

}
}
/////////////////////////////////////////////关闭
if (e.getSource() == subMenu1[4]) {
frame.dispose();
closeDB();
}
/////////////////////////////////////////////添加
if (e.getSource() == subMenu1[0] || e.getSource() == subMenu2[1] ||
e.getSource() == toolBarButton[1]) {
JOptionPane.showMessageDialog(null, "请输入你添加的信息再点击提交添加键");
classidT.setEnabled(true);
classidT.setText("");
nameT.setText("");
sexT.setText("");
ageT.setText("");
callT.setText("");
departmentT.setText("");

}
/////////////////////////////////////////////提交添加
if (e.getSource() == toolBarButton[5] || e.getSource() == subMenu2[5]) {
if ((classidT.getText().trim()).equals("") ||
(nameT.getText().trim()).equals("") ||
(sexT.getText().trim()).equals("") ||
(ageT.getText().trim()).equals("") ||
(callT.getText().trim()).equals("") ||
(departmentT.getText().trim()).equals("")) {
JOptionPane.showMessageDialog(null, "请先点击添加键");
} else {
classid = classidT.getText();
name = nameT.getText();
sex = sexT.getText();
age = ageT.getText();
call = callT.getText();
department = departmentT.getText();
String strSQL =
"insert into stuinfo(classid,name,sex,age,call,department) values( +
classid + , +
name + , + sex + , + age + , + call + , +
department + )";
try {
st.executeUpdate(strSQL);
} catch (Exception exx) {
JOptionPane.showMessageDialog(null, "添加失败");
return;
}
JOptionPane.showMessageDialog(null, "添加成功");
classidT.setText("");
nameT.setText("");
sexT.setText("");
ageT.setText("");
callT.setText("");
departmentT.setText("");

}
}
////////////////////////////////////////////提交修改
if (e.getSource() == subMenu2[4] || e.getSource() == toolBarButton[4]) {
if ((classidT.getText().trim()).equals("") ||
(nameT.getText().trim()).equals("") ||
(sexT.getText().trim()).equals("")
|| (ageT.getText().trim()).equals("") ||
(callT.getText().trim()).equals("") ||
(departmentT.getText().trim()).equals("")) {
JOptionPane.showMessageDialog(null, "请先点击修改键");
return;
} else {
classid = classidT.getText();
name = nameT.getText();
sex = sexT.getText();
age = ageT.getText();
call = callT.getText();
department = departmentT.getText();
String strSQL = "update stuinfo set classid= + classid +
,sex= + sex + ,age= + age + ,call= +
call + ,department= + department + " +
"where name= + name + ";
try {
st.executeUpdate(strSQL);
} catch (Exception exx) {
JOptionPane.showMessageDialog(null, "修改失败");
return;
}
JOptionPane.showMessageDialog(null, "修改成功");
classidT.setText("");
nameT.setText("");
sexT.setText("");
ageT.setText("");
callT.setText("");
departmentT.setText("");

}

}
///////////////////////////////////////////////修改
if (e.getSource() == subMenu2[3] || e.getSource() == toolBarButton[3]) {
String idid = JOptionPane.showInputDialog("请输入你要修改的学生姓名后点击提交修改键确认");
if (idid.trim() != "") {
String strSQL = "select * from stuinfo where name = + idid +
";
try {
rs = st.executeQuery(strSQL);
int count = 0;
while (rs.next()) {
classid = rs.getString("classid");
name = rs.getString("name");
department = rs.getString("department");
sex = rs.getString("sex");
age = rs.getString("age");
call = rs.getString("call");
++count;
}
if (count == 0) {
JOptionPane.showMessageDialog(null, "无此信息");
} else {
classidT.setText(classid);
nameT.setText(name);
sexT.setText(sex);
ageT.setText(age);
callT.setText(call);
departmentT.setText(department);
classidT.setEnabled(false);
}
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "修改失败");
}

}
}
/////////////////////////////////////////////////删除
if (e.getSource() == subMenu2[2] || e.getSource() == toolBarButton[2] ||
e.getSource() == subMenu1[1]) {
String idDel = JOptionPane.showInputDialog("请输入要删除的学生姓名后点击提交删除键确认");
if (idDel.trim() != "") {
String strSQL = "select * from stuinfo where name = + idDel +
";
try {

rs = st.executeQuery(strSQL);
int count = 0;
while (rs.next()) {
classid = rs.getString("classid");
name = rs.getString("name");
department = rs.getString("department");
sex = rs.getString("sex");
age = rs.getString("age");
call = rs.getString("call");
++count;
}
if (count == 0) {
JOptionPane.showMessageDialog(null, "无此信息");
} else {
classidT.setText(classid);
nameT.setText(name);
sexT.setText(sex);
ageT.setText(age);
callT.setText(call);
departmentT.setText(department);
classidT.setEnabled(false);
}
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "删除失败");
}
}
}

//////////////////////////////////////////////////提交删除
if (e.getSource() == toolBarButton[6] ||
e.getSource() == subMenu2[6]) {
if ((classidT.getText().trim()).equals("") ||
(nameT.getText().trim()).equals("") ||
(sexT.getText().trim()).equals("") ||
(ageT.getText().trim()).equals("") ||
(callT.getText().trim()).equals("") ||
(departmentT.getText().trim()).equals("")) {
JOptionPane.showMessageDialog(null, "请先点击删除键");
return;
} else {
name = nameT.getText();
String strSQL = "delete from stuinfo where name= + name +
";
try {
st.executeUpdate(strSQL);
} catch (Exception exx) {
JOptionPane.showMessageDialog(null, "删除失败");
return;
}
JOptionPane.showMessageDialog(null, "删除成功");
classidT.setText("");
nameT.setText("");
sexT.setText("");
ageT.setText("");
callT.setText("");
departmentT.setText("");

}
}

//////////////////////////////////////////////集体查询(按班级)
if (e.getSource() == subMenu3[0]) {
classidT.setText("");
nameT.setText("");
sexT.setText("");
ageT.setText("");
callT.setText("");
departmentT.setText("");

if ((classidT.getText().trim()).equals("")) {
String idclass = JOptionPane.showInputDialog("请输入班级");
String strSQL = "select * from stuinfo where classid= +
idclass +
";
try {
rs = st.executeQuery(strSQL);
displayres(rs);

} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "查询失败");
}

} else {
String idclass = classidT.getText();
String strSQL = "select * from stuinfo where classid= +
idclass +
";
try {
rs = st.executeQuery(strSQL);
displayres(rs);
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "查询失败");
}
}
}
////////////////////////////按单位
if (e.getSource() == subMenu3[1]) {
classidT.setText("");
nameT.setText("");
sexT.setText("");
ageT.setText("");
callT.setText("");
departmentT.setText("");

if ((departmentT.getText().trim()).equals("")) {
String idclass = JOptionPane.showInputDialog("请输入单位");
String strSQL = "select * from stuinfo where department= +
idclass +
";
try {
rs = st.executeQuery(strSQL);
displayres(rs);

} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "查询失败");
}

} else {
String idclass = departmentT.getText();
String strSQL = "select * from stuinfo where department= +
idclass +
";
try {
rs = st.executeQuery(strSQL);
displayres(rs);
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "查询失败");
}
}
}
}

public void displayres(ResultSet rs1) throws SQLException {
//定位到达第一条记录
boolean moreRecords = rs1.next();

//如果没有记录,则提示一条消息

if (!moreRecords) {

JOptionPane.showMessageDialog(null, "无此记录");

return;

}
try {

//获取数据
getNextRow(rs1);

//刷新Table
c.validate();

}

catch (SQLException sqlex) {

sqlex.printStackTrace();

}
}

public void getNextRow(ResultSet rs2) throws
SQLException {
int count = 1;
while (rs2.next()) {
name = " 姓名:" + rs2.getString(1);
age = " 年龄:" + rs2.getString(2) + " 单位:";
department = rs2.getString(3) + "
";
textT.append(count + "." + name + age + department);
count++;
}
}
}

㈤ 协同设计平台具体有什么作用哪里可以咨询到这类平台的信息

选择凯德数值协同设计平台的优势:
1. 相较于其他产品,能够对AutoCAD、Revit等设计软件提供的最紧密的支持,对于用户未来的功能扩展提供了一定的支持和帮助。
2. 提供二次开发接口,支持用户在该平台上的自主开发,完成定制内容。
3. 文件管理系统功能完善,并且具有良好的文件跟踪和恢复系统功能。
4. 系统架构具有一定的先进性,具体功能模块化,方便于未来的功能扩展。
5. 外接国外成熟的过程管理工具,为流程管理提供了较完善的功能。
6. 功能完善的二次开发接口。
7. 针对国内建筑设计院的需求完成,和国外的大型协同相比符合中国企业的使用习惯。
8. 较为完善的版本控制功能。
9. 凯德数值的合作伙伴是上海现代设计建筑(集团)有限公司和上海宝钢钢构有限公司,并且已经实施使用,具有专业性和易用性。
免费咨询电话:电话:65755551

㈥ 国内有哪些能提源代码的bpm平台

目前国内的BPM产品已经形成对国外产品的反超,一些国外的bpm品牌在国内市场也逐渐失去了技术、产品领先的优势,近年来国内BPM发展的相当不错,像以 天翎、奥哲、炎黄为代表的一批国内BPM产品在BPMN标准后实现了从产品、功能到场景匹配的反超。各有各的优势,具体如下:

天翎:整合快速、拓展灵活,掌握流程管理大脑流程引擎核心科技,更适应中国式流程管理,支持定制化开发,有提供源码的版本;
奥哲:围绕以流程、应用、移动为基础的私有云开发平台,帮助企业构建连接上下、快速迭代、全面移动的私有云信息化综合管理基础平台;
炎黄:采用元数据驱动、可视化配置的设计思想,强调低代码驱动的交付流水线,业务应用场景覆盖广;

㈦ 比较好的设计院使用的协同设计软件有哪些最好是免费的,

比较好的设计院使用的协同设计软件有Pixso协同设计。工具无缝衔接以往工作,支持Sketch、XD、SVG等文件导入导出,自由进行Sketch的文件格式转换。并且,文件自动保存到云端,一键回溯到任意历史版本,再也不用担心文件丢失。

Pixso协同设计可以多人云端协作设计,实时同步字号、边框、颜色等各种细节。Pixso不仅是一站式产品设计协作工具,更是一款专业的UI/UX设计工具,更多矢量网格、布尔运算、样式创建、智能排版等高阶功能,使设计师真正专注于创造本身。素材库集成众多大厂优秀的设计系统,所有UI设计师均可直接拖拽复用,从此省去大量模块化设计环节的重复劳动。团队成员面对一个复杂的设计项目,不再需要等主视觉完成后再进行子页面设计。

想要了解更多关于好的设计院使用的协同设计软件的相关信息推荐选择Pixso协同设计。Pixso不仅实现了和Sketch、AdobeXD的无缝衔接,更基于优秀的组件变体、自动布局、实时协作等特色功能,团队成员面对一个复杂的设计项目,不再需要等主视觉完成后再进行子页面设计,让UI设计师在网页上就可以尽情自由创作。

㈧ 什么是协同设计协同设计平台有什么作用有哪些厂商的软件

协同设计是指为了完成某一设计目标,由两个或两个以上设计主体(或称专家),通过一定的信息交换和相互协同机制,分别以不同的设计任务共同完成这一设计目标。

与传统CAD系统相比,协同设计系统有如下特点:

1、多主体性:是指设计活动由两个或两个以上设计专家参与,而这些设计专家通常是互相独立的,并且各自具有领域知识、经验和一定的问题求解能力。

2、协同性:具有一种协同各个设计专家完成共同设计目标的机构,这一机构包括各设计专家间的通讯协议、冲突检测和仲裁机制。

3、共同性:多设计专家要实现的设计目标是共同的,他们所在的设计环境和上下文信息也是一致的。

4、灵活性:参与设计的专家数目可以动态的增加或减少,协同设计的体系结构也是灵活、可变的。

协同设计软件会在不增加你任何工作负担、不影响你任何设计思路的情况下,始终帮助你理顺设计中的每一张图纸,记录清楚其各个历史版本和历程,从此你的设计图纸不再凌乱;始终帮助你掌握设计的协作分寸和时机,使得图纸环节的流转及时顺畅,资源共享充分圆满,从此不再有所谓的扯皮推诿;始终帮助你监控设计过程中的每个环节,使得工程进度把握有序,从此工期不再拖延。协同设计就相当于配给你的得力助手,神奇的魅力令你无法抗拒。协同设计工作是以一种协作的方式,使成本可以降低,可以更快地完成设计。协同设计由流程、协作和管理三类模块构成。设计、校审和管理等不同角色人员利用该平台中的相关功能实现各自工作。

㈨ 哪家公司设计院管理系统做的好

推荐网易云建筑,之前院里用的管理系统太老了,网易做的这个设计协同系统虽然功能不是很多,但是简单,操作方便,能够实现设计协同,图档管理,建筑设计团队用很合适。

阅读全文

与设计院协同设计平台源码相关的资料

热点内容
古玩哪个app好卖 浏览:146
u盘内容全部显示为压缩包 浏览:517
编译固件时使用00优化 浏览:356
速借白条app怎么样 浏览:756
用纸张做的解压东西教程 浏览:12
求圆的周长最快算法 浏览:190
安卓热点怎么减少流量 浏览:270
北京代交社保用什么app 浏览:855
第一眼解压视频 浏览:726
文件夹err是什么 浏览:97
qt4编程pdf 浏览:572
局域网服务器下如何连续看照片 浏览:254
经过加密的数字摘要 浏览:646
加密锁9000变打印机 浏览:694
程序员的职业发展前途 浏览:639
安卓是世界上多少个程序员开发 浏览:45
解压器官方免费 浏览:85
单片机p10开发 浏览:487
做什么app赚钱 浏览:85
博途编译失败联系客户支持部门 浏览:929