明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 128|回复: 0

(WEB CAD SDK)在线CAD粗糙度标注的实现方法

[复制链接]
发表于 前天 16:58 | 显示全部楼层 |阅读模式
本帖最后由 MxDraw 于 2025-5-27 17:00 编辑

前言
‌表面粗糙度符号是机械制图中的重要标注符号,用于表示零件表面的微观不平度。它的基本形式是一个三角形,尖端从材料外垂直指向被标注的表面。符号的尖端必须从材料外垂直指向被标注的表面,标注可以注在尺寸界线上、轮廓线上、延长线上或代号中‌。在本篇文章中我们将通过解析表面粗糙度符号,调用mxcad二次开发实现粗糙度标注功能。


表面粗糙度符号解析
1. 基本符号:这些符号代表了表面可以用任何方法获得。它们简洁而直观,是表达设计意图的基础。
2. 加工方法符号:在基本符号的长边上加上一横线,可以标注相关的加工方法。无论是车削、铣削还是其他任何去除材料的方法,都能通过这些符号清晰地表达出来。
3. 去除材料方法符号:在基本符号上加上一小圆,表示表面是通过去除材料的方法获得的。这不仅可以是车、铣等传统加工方法,也可以是磨削、抛光等更精细的处理方式。
4. 相同去除方法符号:如果多个表面具有相同的去除材料方法,可以在基本符号上加上一个小圆,表示这些表面有相同的粗糙度要求。
5. 保持原供应状况符号:在某些情况下,表面需要保持其原始供应状况,这时可以在基本符号上加上一个小圆,表示这些表面不需要进行任何额外的处理。
6. 符号与代号的组合:在实际设计中,我们可能会遇到多种符号的组合使用。例如,基本符号加一短线和说明划线,表示表面是通过特定的去除材料方法获得的。

自定义实体实现
根据上述内容中对粗糙度符号的分析,我们可以得到粗糙度标注的核心数据,并根据这些数据通过mxcad里的自定义实体[McDbCustomEntity]实现粗糙度标注实体。

1. 基本结构设置
  1. export class McDbTestRoughness extends McDbCustomEntity {
  2.        // 基本属性定义
  3.        private position: McGePoint3d = new McGePoint3d();  // 标注位置
  4.        private textDownString: string[] = ['1.6'];         // 下方文本
  5.        private textUpString: string[] = [];                // 上方文本
  6.        private textLeftString: string = '';                // 左侧文本
  7.        private CornerType: string = '';                    // 角标类型
  8.        private markType: number = 0;                       // 标注类型
  9.        private dimSize: number = 5;                        // 标注尺寸
  10.        private rotation: number = 0;                       // 旋转角度
  11.        private dimHeight: number = 10;                     // 标注高度
  12.        private isSameRequire: boolean = false;             // 是否是相同需求
  13.        private isAddLongLine: boolean = false;             // 是否加长处理
  14.        private isMostSymbols: boolean = false;             // 多数符号
  15.        // 包围盒
  16.        private minPt: McGePoint3d = new McGePoint3d();
  17.        private maxPt: McGePoint3d = new McGePoint3d();
  18.    }

2. 构造函数和创建方法
  1.    constructor(imp?: any) {
  2.        super(imp);
  3.    }
  4.    public create(imp: any) {
  5.        return new McDbTestRoughness(imp);
  6.    }
  7.    public getTypeName(): string {
  8.        return "McDbTestRoughness";
  9.    }
复制代码

3. 数据持久化
  1. // 读取自定义实体数据
  2.        public dwgInFields(filter: IMcDbDwgFiler): boolean {
  3.            this.position = filter.readPoint("position").val;
  4.            this.minPt = filter.readPoint("minPt").val;
  5.            this.maxPt = filter.readPoint("maxPt").val;
  6.            const textDownStr = filter.readString("textDownStr").val;
  7.            this.textDownString = textDownStr.split(',').filter((item) => item != "");;
  8.            const textUpStr = filter.readString("textUpStr").val;
  9.            this.textUpString = textUpStr.split(',').filter((item) => item != "");;
  10.            this.textLeftString = filter.readString("textLeftStr").val;
  11.            this.CornerType = filter.readString('CornerType').val;
  12.            this.markType = filter.readLong('markType').val;
  13.            this.dimSize = filter.readDouble('dimSize').val;
  14.            this.rotation = filter.readDouble('rotation').val;
  15.            this.dimHeight = filter.readDouble('dimHeight').val;
  16.            this.isSameRequire = filter.readLong('isSameRequire').val == 1 ? true : false;
  17.            this.isAddLongLine = filter.readLong('isAddLongLine').val == 1 ? true : false;
  18.            this.isMostSymbols = filter.readLong('isMostSymbols').val == 1 ? true : false;
  19.            return true;
  20.        }
  21.        // 写入自定义实体数据
  22.        public dwgOutFields(filter: IMcDbDwgFiler): boolean {
  23.            filter.writePoint("position", this.position);
  24.            filter.writePoint("maxPt", this.maxPt);
  25.            filter.writePoint("minPt", this.minPt);
  26.            const textDownStr = this.textDownString.join(',');
  27.            const textUpStr = this.textUpString.join(',');
  28.            filter.writeString("textDownStr", textDownStr);
  29.            filter.writeString("textUpStr", textUpStr);
  30.            filter.writeString("textLeftStr", this.textLeftString);
  31.            filter.writeString('CornerType', this.CornerType);
  32.            filter.writeLong('markType', this.markType);
  33.            filter.writeDouble('dimSize', this.dimSize);
  34.            filter.writeDouble('rotation', this.rotation);
  35.            filter.writeDouble('dimHeight', this.dimHeight);
  36.            filter.writeLong('isSameRequire', this.isSameRequire ? 1 : 0);
  37.            filter.writeLong('isAddLongLine', this.isAddLongLine ? 1 : 0);
  38.            filter.writeLong('isMostSymbols', this.isMostSymbols ? 1 : 0);
  39.            return true;
  40.        }
复制代码

4. 设置标注夹点及夹点移动规则
  1. // 移动夹点:标注点即为夹点,若夹点移动则标注点随之移动
  2.    public moveGripPointsAt(iIndex: number, dXOffset: number, dYOffset: number, dZOffset: number) {
  3.        this.assertWrite();
  4.        this.position.x += dXOffset;
  5.        this.position.y += dYOffset;
  6.        this.position.z += dZOffset;
  7.    }
  8.    // 获取夹点
  9.    public getGripPoints(): McGePoint3dArray {
  10.        let ret = new McGePoint3dArray();
  11.        ret.append(this.position);
  12.        return ret;
  13.    }
复制代码

5. 绘制标注实体
  1. // 获取所有实体
  2.        public getAllEntity(): McDbEntity[] {
  3.            //  根据粗糙度绘制粗糙度形状
  4.            const mxcad = MxCpp.getCurrentMxCAD();
  5.            const entityArr = this.drawShape(this.markType, this.position, this.dimSize, true);
  6.            const pl = entityArr[0] as McDbPolyline;
  7.            const lastPoint = pl.getPointAt(pl.numVerts() - 1).val;
  8.            // 添加左侧文字
  9.            if (this.textLeftString) {
  10.                const textLeft = new McDbText();
  11.                textLeft.textString = this.textLeftString;
  12.                textLeft.height = this.dimSize * (9 / 10);
  13.                textLeft.alignmentPoint = textLeft.position = this.position.clone().addvec(McGeVector3d.kYAxis.clone().mult(this.dimSize * (1 / 10))).addvec(McGeVector3d.kXAxis.clone().negate().mult(this.dimSize))
  14.                textLeft.horizontalMode = McDb.TextHorzMode.kTextRight;
  15.                entityArr.push(textLeft)
  16.            }
  17.            // 添加角标
  18.            if (this.CornerType) {
  19.                const textCorner = new McDbText();
  20.                textCorner.textString = this.CornerType;
  21.                textCorner.height = this.dimSize * (7 / 10);
  22.                textCorner.alignmentPoint = textCorner.position = this.position.clone().addvec(McGeVector3d.kYAxis.clone().mult(this.dimSize * (3 / 10))).addvec(McGeVector3d.kXAxis.clone().mult(this.dimSize * (9 / 10)))
  23.                textCorner.horizontalMode = McDb.TextHorzMode.kTextLeft;
  24.                entityArr.push(textCorner)
  25.            }
  26.            // 相同要求
  27.            if (this.isSameRequire) {
  28.                const cirlce = new McDbCircle();
  29.                cirlce.center = lastPoint.clone();
  30.                cirlce.radius = this.dimSize * (3 / 10);
  31.                entityArr.push(cirlce);
  32.            }
  33.            // 加长横线
  34.            let endX = lastPoint.x;
  35.            // 绘制上标文字
  36.            const height = (7 / 10) * this.dimSize;
  37.            const basePos = lastPoint.clone().addvec(McGeVector3d.kXAxis.clone().mult(this.dimSize * (1 / 2))).addvec(McGeVector3d.kYAxis.clone().mult(this.dimSize * (1 / 5)))
  38.            let basePos_x: number = basePos.x;
  39.    
  40.            let lineArr: McDbLine[] = []
  41.            if (this.textUpString.length === 1) {
  42.                const text = new McDbText();
  43.                text.textString = this.textUpString[0];
  44.                text.height = height;
  45.                text.alignmentPoint = text.position = basePos;
  46.    
  47.                entityArr.push(text)
  48.    
  49.                const { maxPt } = this.getTextBox(text)
  50.    
  51.                if (maxPt.x > endX) endX = maxPt.x;
  52.                basePos_x = text.position.x;
  53.    
  54.            } else if (this.textUpString.length === 2) {
  55.                const text1 = new McDbText();
  56.                text1.textString = this.textUpString[0];
  57.                text1.height = height;
  58.    
  59.                const pos1 = basePos.clone();
  60.    
  61.                const text2 = new McDbText();
  62.                text2.height = height;
  63.                text2.textString = this.textUpString[1];
  64.    
  65.                const v = lastPoint.sub(this.position).mult(2 / 3)
  66.                const pos2 = pos1.clone().addvec(v);
  67.                const lastPoint2 = lastPoint.clone().addvec(v);
  68.    
  69.                text1.alignmentPoint = text1.position = new McGePoint3d(pos2.x, pos1.y);
  70.                text2.alignmentPoint = text2.position = pos2;
  71.                basePos_x = pos2.x;
  72.    
  73.                const res1 = this.getTextBox(text1)
  74.                const res2 = this.getTextBox(text2)
  75.    
  76.                const endPt_x = res1.maxPt.x > res2.maxPt.x ? res1.maxPt.x : res2.maxPt.x;
  77.                if (endX < endPt_x) endX = endPt_x + height * 0.3;
  78.    
  79.                const endPoint2 = new McGePoint3d(endX, lastPoint2.y);
  80.                const line2 = new McDbLine(lastPoint2.x, lastPoint2.y, lastPoint2.z, endPoint2.x, endPoint2.y, endPoint2.y);
  81.                const line3 = new McDbLine(lastPoint.x, lastPoint.y, lastPoint.z, lastPoint2.x, lastPoint2.y, lastPoint2.z);
  82.                lineArr.push(line2);
  83.                entityArr.push(text2);
  84.                entityArr.push(text1);
  85.                entityArr.push(line3);
  86.            }
  87.    
  88.            // 绘制下标文字
  89.            if (this.textDownString.length) {
  90.                const pos = new McGePoint3d(basePos_x, lastPoint.y);
  91.                this.textDownString.forEach((str, index) => {
  92.                    const text = new McDbText();
  93.                    text.textString = str;
  94.                    text.height = height;
  95.                    let v: McGeVector3d = new McGeVector3d()
  96.                    v = McGeVector3d.kYAxis.clone().negate().mult(height * (index + 1 + (1 / 6)));
  97.                    text.alignmentPoint = text.position = pos.clone().addvec(v);
  98.                    entityArr.push(text)
  99.    
  100.                    const res = this.getTextBox(text)
  101.    
  102.                    endX = endX < res.maxPt.x ? res.maxPt.x : endX;
  103.                });
  104.            };
  105.    
  106.            if (this.isAddLongLine) {
  107.                const endPoint = lastPoint.clone().addvec(McGeVector3d.kXAxis.clone().mult(this.dimSize * 2))
  108.                const line = new McDbLine(lastPoint.x, lastPoint.y, lastPoint.z, endPoint.x, endPoint.y, endPoint.y);
  109.                if (endX < endPoint.x) {
  110.                    endX = endPoint.x;
  111.                    entityArr.push(line);
  112.                }
  113.            }
  114.    
  115.            const endPoint = new McGePoint3d(endX, lastPoint.y)
  116.            const line = new McDbLine(lastPoint.x, lastPoint.y, lastPoint.z, endPoint.x, endPoint.y, endPoint.y);
  117.            entityArr.push(line)
  118.            if (lineArr.length) lineArr.forEach(line => {
  119.                line.endPoint.x = endX;
  120.                entityArr.push(line);
  121.            })
  122.    
  123.            // 多数符号
  124.            const drawArc = (params: McGePoint3d[]) => {
  125.                const arc = new McDbArc();
  126.                arc.computeArc(params[0].x, params[0].y, params[1].x, params[1].y, params[2].x, params[2].y);
  127.                entityArr.push(arc)
  128.            }
  129.            if (this.isMostSymbols) {
  130.                // 绘制多数符号(两个圆弧+两条直线)
  131.                // 两个圆弧
  132.                const pt = this.position.clone().addvec(McGeVector3d.kYAxis.clone().mult(this.dimSize));
  133.                const basePt = new McGePoint3d(endX, pt.y);
  134.    
  135.                const radius = this.dimSize * (7 / 5);
  136.                const center1 = basePt.clone().addvec(McGeVector3d.kXAxis.clone().mult(this.dimSize * (7 / 5)));
  137.                const v1 = McGeVector3d.kXAxis.clone().mult(radius);
  138.                const cirlce1_pt1 = center1.clone().addvec(v1.clone().rotateBy(40 * (Math.PI / 180)));
  139.                const cirlce1_pt2 = center1.clone().addvec(v1.clone());
  140.                const cirlce1_pt3 = center1.clone().addvec(v1.clone().rotateBy(320 * (Math.PI / 180)));
  141.                drawArc([cirlce1_pt1, cirlce1_pt2, cirlce1_pt3]);
  142.    
  143.                const center2 = basePt.clone().addvec(McGeVector3d.kXAxis.clone().mult(this.dimSize * (12 / 5)));
  144.                const cirlce2_pt1 = center2.clone().addvec(v1.clone().rotateBy(140 * (Math.PI / 180)));
  145.                const cirlce2_pt2 = center2.clone().addvec(v1.clone().negate());
  146.                const cirlce2_pt3 = center2.clone().addvec(v1.clone().rotateBy(220 * (Math.PI / 180)));
  147.                drawArc([cirlce2_pt1, cirlce2_pt2, cirlce2_pt3]);
  148.    
  149.                // 绘制两条直线
  150.                const point = center1.clone().addvec(center2.sub(center1).mult(1 / 3)).addvec(McGeVector3d.kYAxis.clone().negate().mult(this.dimSize * (4 / 5)));
  151.                this.drawShape(2, point, this.dimSize * (4 / 5), false).forEach(ent => {
  152.                    entityArr.push(ent)
  153.                });
  154.            };
  155.    
  156.            this.getBox(entityArr);
  157.            const mat = new McGeMatrix3d();
  158.            const _height = this.maxPt.y - this.minPt.y;
  159.            if (this.dimHeight) {
  160.                const scale = this.dimHeight / _height;
  161.                mat.setToScaling(scale, this.position);
  162.            } else {
  163.                mat.setToScaling(1, this.position);
  164.            };
  165.            entityArr.forEach(ent => {
  166.                ent.transformBy(mat);
  167.            })
  168.            return entityArr
  169.        }
  170.        // 根据粗糙度type类型绘制粗糙度形状
  171.        private drawShape(markType, position, dimSize, flag): McDbEntity[] {
  172.            const entityArr: McDbEntity[] = [];
  173.            const v = McGeVector3d.kYAxis.clone().mult(dimSize);
  174.            const vec = McGeVector3d.kXAxis.clone().mult(dimSize * (3 / 5));
  175.            const midPt = position.clone().addvec(v);
  176.            const point1 = midPt.clone().addvec(vec);
  177.            const point2 = midPt.clone().addvec(vec.clone().negate());
  178.    
  179.            let len = dimSize * (2 / 5);
  180.            if (this.textDownStr.length > 2 && flag) len = dimSize * (1 / 2);
  181.            const point3 = position.clone().addvec(point1.sub(position).mult(len));
  182.            if (markType === 0) {
  183.                //  原始样式(倒三角)
  184.                const pl = new McDbPolyline();
  185.                pl.addVertexAt(point1);
  186.                pl.addVertexAt(point2);
  187.                pl.addVertexAt(position);
  188.                pl.addVertexAt(point3);
  189.                entityArr.push(pl)
  190.            } else {
  191.                // 不封口三角
  192.                const pl = new McDbPolyline();
  193.                pl.addVertexAt(point2);
  194.                pl.addVertexAt(position);
  195.                pl.addVertexAt(point3);
  196.                entityArr.push(pl)
  197.            }
  198.    
  199.            if (markType === 1) {
  200.                //  带圆:三角形内切圆
  201.                const a = position.distanceTo(point1);
  202.                const b = position.distanceTo(point2);
  203.                const c = point1.distanceTo(point2);
  204.                const s = (a + b + c) / 2;
  205.                const h = position.distanceTo(midPt);
  206.                const A = (c * h) / 2;
  207.                const circle = new McDbCircle();
  208.                circle.radius = A / s;
  209.                circle.center = midPt.clone().addvec(McGeVector3d.kYAxis.clone().negate().mult(circle.radius));
  210.                entityArr.push(circle)
  211.            }
  212.    
  213.            return entityArr
  214.        }
  215.        // 绘制实体
  216.        public worldDraw(draw: MxCADWorldDraw): void {
  217.            const entityArr = this.getAllEntity();
  218.            this.getBox(entityArr);
  219.            entityArr.forEach(item => {
  220.                const _clone = item.clone() as McDbEntity;
  221.                if (this.rotation) _clone.rotate(this.position, this.rotation);
  222.                draw.drawEntity(_clone);
  223.            });
  224.        }

6. 暴露获取、设置实体内部数据的属性或方法
  1.   // 获取或设置下标文本内容
  2.        public set textDownStr(val: string[]) {
  3.            this.textDownString = val;
  4.        }
  5.        public get textDownStr(): string[] {
  6.            return this.textDownString;
  7.        }
  8.        // 获取或设置上标文本内容
  9.        public set textUpStr(val: string[]) {
  10.            this.textUpString = val;
  11.        }
  12.        public get textUpStr(): string[] {
  13.            return this.textUpString;
  14.        }
  15.        // 获取或设置左边文本内容
  16.        public set textLeftStr(val: string) {
  17.            this.textLeftString = val;
  18.        }
  19.        public get textLeftStr(): string {
  20.            return this.textLeftString;
  21.        }
  22.        // 获取或设置角标类型
  23.        public set rougCornerType(val: string) {
  24.            this.CornerType = val;
  25.        }
  26.        public get rougCornerType(): string {
  27.            return this.CornerType;
  28.        }
  29.        // 获取或设置标注类型
  30.        public set rougMarkType(val: number) {
  31.            this.markType = val;
  32.        }
  33.        public get rougMarkType(): number {
  34.            return this.markType;
  35.        }
  36.        // 获取或设置相同要求
  37.        public set isRoungSameRequire(val: boolean) {
  38.            this.isSameRequire = val;
  39.            if (val) this.isAddLongLine = true;
  40.        }
  41.        public get isRoungSameRequire(): boolean {
  42.            return this.isSameRequire;
  43.        }
  44.        // 获取或设置加长
  45.        public set isAddRougLongLine(val: boolean) {
  46.            this.isAddLongLine = val;
  47.        }
  48.        public get isAddRougLongLine(): boolean {
  49.            return this.isAddLongLine;
  50.        }
  51.        // 获取或设置多数符号
  52.        public set isShowMostSymbols(val: boolean) {
  53.            this.isMostSymbols = val;
  54.        }
  55.        public get isShowMostSymbols(): boolean {
  56.            return this.isMostSymbols;
  57.        }
  58.        // 获取或设置粗糙度标注高度
  59.        public set rouDimHeight(val: number) {
  60.            this.dimHeight = val;
  61.        }
  62.        public get rouDimHeight(): number {
  63.            return this.dimHeight;
  64.        }
  65.        // 设置粗糙度标注位置
  66.        public setPos(pt: McGePoint3d) {
  67.            this.position = pt.clone();
  68.        }
  69.        // 获取粗糙度标注位置
  70.        public getPos() {
  71.            return this.position;
  72.        }
  73.        // 旋转角度
  74.        public setRotation(angle: number) {
  75.            this.rotation = angle
  76.        }
  77.        // 旋转角度
  78.        public getRotation(): number {
  79.            return this.rotation
  80.        }
  81.        // 获取包围盒
  82.        public getBoundingBox(): { minPt: McGePoint3d; maxPt: McGePoint3d; ret: boolean; } {
  83.            const entityArr = this.getAllEntity();
  84.            this.getBox(entityArr);
  85.            return { minPt: this.minPt, maxPt: this.maxPt, ret: true }
  86.        }

使用粗糙度标注
根据粗糙度标注于直线、圆弧或圆时标注将垂直于曲线的切线上的位置特点,我们可以通过识别标注点所在的实体类型获取该实体在标注点的切线方向和位置,并以此来确定标注的旋转角度和方向。
  1. // 粗糙度
  2. async function Mx_Roughness() {
  3.     const mxcad = MxCpp.getCurrentMxCAD();
  4.     let rotation = 0;
  5.     const roughness = new McDbTestRoughness();
  6.     roughness.rougMarkType = 0;
  7.     roughness.rougCornerType = '';
  8.     const getPos = new MxCADUiPrPoint();
  9.     getPos.setMessage(t('请设置定位点或直线或圆弧或圆'));
  10.     getPos.setUserDraw((pt, pw) => {
  11.         roughness.setPos(pt);
  12.         pw.drawMcDbEntity(roughness)
  13.     });
  14.     const pos = await getPos.go();
  15.     let filter = new MxCADResbuf([DxfCode.kEntityType, "LINE,ARC,CIRCLE,LWPOLYLINE"]);
  16.     let objId = MxCADUtility.findEntAtPoint(pos.x, pos.y, pos.z, -1, filter);
  17.     if (objId.isValid()) {
  18.         const ent = objId.getMcDbEntity();
  19.         // 拖动确定标注位置
  20.         const getDirect = new MxCADUiPrPoint();
  21.         getDirect.setMessage(t('拖动确定标注位置'));
  22.         getDirect.setUserDraw((pt, pw) => {
  23.             const line = ent.clone() as McDbLine;
  24.             const closePt = line.getClosestPointTo(pt, true).val;
  25.             const v = pt.sub(closePt);
  26.             rotation = v.angleTo2(McGeVector3d.kYAxis, McGeVector3d.kNegateZAxis);
  27.             roughness.setPos(closePt);
  28.             roughness.setRotation(rotation);
  29.             pw.drawMcDbEntity(roughness)
  30.         });
  31.         getDirect.setDisableDynInput(true);
  32.         getDirect.disableAllTrace(true);
  33.         const pt = await getDirect.go();
  34.         if (!pt) return;
  35.         mxcad.drawEntity(roughness)
  36.     } else {
  37.         roughness.setPos(pos);
  38.         // 指定旋转方向
  39.         const getAngle = new MxCADUiPrAngle();
  40.         getAngle.setBasePt(pos);
  41.         getAngle.setMessage(t('请指定或输入角度'));
  42.         getAngle.setUserDraw((pt, pw) => {
  43.             const line = new McDbLine(pt, pos);
  44.             pw.drawMcDbEntity(line);
  45.             const v = pt.sub(pos);
  46.             rotation = v.angleTo2(McGeVector3d.kXAxis, McGeVector3d.kNegateZAxis);
  47.             roughness.setRotation(rotation);
  48.             pw.drawMcDbEntity(roughness)
  49.         });
  50.         let val = await getAngle.go();
  51.         if (!val) return;
  52.         const angle = getAngle.value();
  53.         roughness.setRotation(angle);
  54.         mxcad.drawEntity(roughness);
  55.     }
  56. }
复制代码

效果演示
基础效果演示:
根据上述内容可做扩展开发,设置粗糙度弹框,其示例效果如下:

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2025-5-29 14:41 , Processed in 0.184823 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表