明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1773|回复: 2

[提问] 求LISP高手看看下面程序为何运行错误,帮忙改正下,谢谢!!!

[复制链接]
发表于 2013-5-14 10:08:19 | 显示全部楼层 |阅读模式
  1. ;;;   ****************************************程序说明*************************************************
  2. ;;;   *                                                                                               *
  3. ;;;   *         *
  4. ;;;   *                                           *
  5. ;;;   *                              *
  6. ;;;   *                                   *
  7. ;;;   *                                                                                               *
  8. ;;;   *************************************************************************************************
  9.       (defun on_dlg1 ()
  10.            (setq biaohang (atoi (get_tile "cl_bl2"))
  11.                     gjzhj (get_tile "cl_gch1")
  12.                     dgchd (get_tile "cl_gch2")
  13.                     gjgsh (get_tile "cl_gch3")
  14.                   stscale (atoi (get_tile "cl_bl1"))
  15.                    b_biao (get_tile "cl_file")
  16.                    f_name (get_tile "cl_fname")
  17.                      hzdm (get_tile "cl_hzdm")
  18.                    gjzhj1 gjzhj
  19.                    gjgsh1 gjgsh
  20.                    dgchd1 dgchd
  21.            )
  22.            (if (equal b_biao "1")
  23.                (progn (setq fil (findfile f_name))
  24.                       (if fil (setq f_name fil)
  25.                               (progn (princ (strcat "\n 找不到数据文件" f_name "。请用对话框寻找!"))
  26.                                      (setq f_name (getfiled "目录表" "" "" 2))
  27.                               )
  28.                       )
  29.                )
  30.            )
  31.            (gc)
  32.     )
  33.     (defun huitu(p1 p2)
  34.            (setq topleft (list (- (car p1) 4.5) (- (cadr p1) 6.0))
  35.                  topright (list (+ (car p2) 1.0) (- (cadr p1) 6.0))
  36.                  pt1 topleft
  37.                  pt2 topright
  38.                  nn 0
  39.            )
  40.            (command "layer" "set" "表格" "")
  41.            (command "rectang" "w" 0.05 (list (car topleft) (- (cadr topleft) 11.0)) topright)
  42.            (repeat 7 (setq dts (nth nn '(1.5 1.0 1.0 1.5 1.5 1.5 1.5)))
  43.                      (setq pt1 (list (car pt1) (- (cadr pt1) dts))
  44.                            pt2 (list (car pt2) (- (cadr pt2) dts))
  45.                            nn (+ nn 1)
  46.                      )
  47.                      (command "line" pt1 pt2 "")
  48.            )
  49.            (command "line" (list (car p1) (- (cadr p1) 6.0)) (list (car p1) (- (cadr p1) 17.0)) "")
  50.            (command "line" topleft (list (car p1) (- (cadr topleft) 1.5)) "")
  51.            (setq wth '("坡度(%)" "坡长(M)" "填    土" "挖    土"
  52.                        "路面设计高程" "路基设计高程" "地面高程" "桩     号" "平 曲 线")
  53.                  nn 0
  54.                  pt1 (list (- (car p1) 1.0) (- (cadr p1) 6.5))
  55.                  dth '(1.0 1.25 1.5 1.5 1.5 1.5 0)
  56.            )
  57.            (repeat 9 (setq wtt (nth nn wth))
  58.                      (if (< nn 2) (xiezhi pt1 "st" 0.4 0 (nth nn wth))
  59.                                   (xiezhi pt1 "st" 0.5 0 (nth nn wth))
  60.                      )
  61.                      (if (< nn 2) (if (= nn 0) (setq pt1 (list (- (car p1) 3.5) (- (cadr p1) 7.0)))
  62.                                                (setq pt1 (list (- (car p1) 2.25) (- (cadr p1) 8.0)))
  63.                                   )
  64.                                   (setq pt1 (list (car pt1) (- (cadr pt1) (nth (- nn 2) dth))))
  65.                      )
  66.                      (setq nn (+ nn 1))
  67.            )
  68.            (setq bchmax (+ (fix (cadr p2)) 3)
  69.                  bchmin (- (fix (cadr p1)) 3)
  70.                  anv  (+ (- bchmax bchmin) 1)
  71.                  anh  (- (fix (car p2)) (fix (car p1)))
  72.            )
  73.            (command "line" (list (car p1) bchmax)
  74.                            (list (car p1) bchmin)
  75.                            "@-0.2,0"
  76.                            (list (- (car p1) 0.2) bchmax) "c"
  77.            )
  78.            (command "layer" "set" "虚线" "")
  79.            (command "line" (list (+ (fix (car p1)) 1) bchmin)
  80.                            (list (+ (fix (car p1)) 1) bchmax) ""
  81.            )
  82.            (setq temp1 (cdar (entget (entlast))))
  83.            (command "array" temp1 "" "r" 1 anh 1)
  84.            (command "line" (list (+ (fix (car p1)) 1) bchmax)
  85.                            (list (fix (car p2)) bchmax) ""
  86.            )
  87.            (setq temp1 (cdar (entget (entlast))))
  88.            (command "array" temp1 "" "r" anv 1 -1)
  89.            (command "layer" "set" "表格" "")
  90.            (setq ptem1 (list (- (car p1) 0.1) bchmax)
  91.                  ptem2 (list (car p1) bchmax)
  92.                  ptem3 (list (- (car p1) 0.1) (- bchmax 1))
  93.                  ptem4 (list (car p1) (- bchmax 1))
  94.                   lo 1
  95.            )
  96.            (while (<= bchmin (cadr ptem4))
  97.                   (command "solid" ptem1 ptem2 ptem3 ptem4 "")
  98.                   (setq ptem5 (list (- (car p1) 1.3) (cadr ptem1))
  99.                           wth (rtos (cadr ptem1) 2 0)
  100.                   )
  101.                   (command "text" "s" "txt" ptem5 0.3 0 wth)
  102.                   (if (= bchmin (cadr ptem4))
  103.                       (progn (setq ptem5 (list (- (car p1) 1.3) (cadr ptem4))
  104.                                      wth (rtos (cadr ptem4) 2 0)
  105.                              )
  106.                              (command "text" "s" "txt" ptem5 0.3 0 wth)
  107.                       )
  108.                   )
  109.                   (if (= lo 1) (setq ptem1 (list (- (car ptem1) 0.1) (- (cadr ptem1) 1.0))
  110.                                      ptem2 (list (- (car ptem2) 0.1) (- (cadr ptem2) 1.0))
  111.                                      ptem3 (list (- (car ptem3) 0.1) (- (cadr ptem3) 1.0))
  112.                                      ptem4 (list (- (car ptem4) 0.1) (- (cadr ptem4) 1.0))
  113.                                         lo 0
  114.                                )
  115.                                (setq ptem1 (list (+ (car ptem1) 0.1) (- (cadr ptem1) 1.0))
  116.                                      ptem2 (list (+ (car ptem2) 0.1) (- (cadr ptem2) 1.0))
  117.                                      ptem3 (list (+ (car ptem3) 0.1) (- (cadr ptem3) 1.0))
  118.                                      ptem4 (list (+ (car ptem4) 0.1) (- (cadr ptem4) 1.0))
  119.                                         lo 1
  120.                                )
  121.                   )
  122.            )
  123.            (gc)                                          
  124.     )
  125.     (defun c:dhk()
  126.            (setvar "cmdecho" 0)
  127.            (setq dcl_id (load_dialog "duan.dcl"))
  128.            (if (not (new_dialog "cl_box1" dcl_id)) (exit))
  129.            (set_tile "cl_bl2" "100")
  130.            (set_tile "cl_bl1" "1000")
  131.            (set_tile "cl_file" "1")
  132.            (if (/= nil gjzhj1) (progn (set_tile "cl_gch1" gjzhj1)
  133.                                       (set_tile "cl_gch2" dgchd1)
  134.                                       (set_tile "cl_gch3" gjgsh1)
  135.                                )
  136.            )
  137.            (mode_tile "cl_gch1" 1)
  138.            (mode_tile "cl_gch2" 1)
  139.            (mode_tile "cl_gch3" 1)
  140.            (action_tile "cl_file" "(mode_tile \"cl_gch1\" 1)
  141.                                        (mode_tile \"cl_fname\" 0)
  142.                                        (mode_tile \"cl_gch2\" 1)
  143.                                        (mode_tile \"cl_gch3\" 1)")
  144.            (action_tile "cl_screen" "(mode_tile \"cl_gch1\" 0)
  145.                                       (mode_tile \"cl_gch2\" 0)
  146.                                        (mode_tile \"cl_fname\" 1)
  147.                                       (mode_tile \"cl_gch3\" 0)")
  148.            (action_tile "cancel" "(done_dialog 0)")
  149.            (action_tile "accept" "(on_dlg1)(done_dialog 1)")
  150.            (setq w_1 (start_dialog))
  151.            (bzht)
  152.            (if (= w_1 1) (if (equal b_biao "1") (if (equal hzdm "1") (zdmshuru)
  153.                                                                      (hdmshuru)
  154.                                                 )
  155.                                                 (prompt " ")
  156.                          )
  157.                          (print " ")
  158.            )
  159.            (unload_dialog dcl_id)
  160.            (setvar "cmdecho" 1)
  161.     )
  162.     (defun xiezhi (wp ss h r wtxt)
  163.            (command "text" "s" ss "m" wp h r wtxt)
  164.     )
  165.     (defun zdmshuru()
  166.            (setq rf (open f_name "r")
  167.                  aa 1
  168.                  bb 1
  169.                  xmax -100.00
  170.                  xmin 10000.00
  171.                  ymax -100.00
  172.                  ymin 10000.00
  173.                  temp1 0.0
  174.                  ltemp nil
  175.                  lwstr nil
  176.            )
  177.            (command "layer" "set" "地面线" "")
  178.            (while (boundp 'aa)
  179.                   (setq aa (read-line rf)
  180.                         nn 1
  181.                        tst "no"
  182.                     stemp1 nil
  183.                   )
  184.                   (if (boundp 'aa)
  185.                       (progn (setq slen (strlen aa) zhz1 nil zhz2 nil zhz3 nil zhz4 nil str1 nil)
  186.                              (if (> bb 5)
  187.                                  (progn (while (<= nn slen)
  188.                                                (setq stemp2 (substr aa nn 1))
  189.                                                (if (and (not (equal stemp2 " "))
  190.                                                         (or (equal stemp1 " ") (equal stemp1 nil))
  191.                                                    )
  192.                                                    (if (= zhz1 nil) (setq zhz1 nn)
  193.                                                                     (if (= zhz3 nil) (setq zhz3 nn))
  194.                                                    )
  195.                                                )
  196.                                                (if (and (equal stemp2 " ")
  197.                                                         (not (equal stemp1 " "))
  198.                                                         (not (equal stemp1 nil))
  199.                                                    )
  200.                                                    (if (= zhz2 nil) (setq zhz2 (1- nn))
  201.                                                                     (if (= zhz4 nil) (setq zhz4 (1- nn)))
  202.                                                    )
  203.                                                )
  204.                                                (if (equal stemp2 "%")
  205.                                                    (setq tst "yes"
  206.                                                          nn1 nn
  207.                                                    )
  208.                                                )
  209.                                                (setq     nn (1+ nn)
  210.                                                      stemp1 stemp2
  211.                                                )
  212.                                         )
  213.                                         (if (= zhz4 nil) (setq zhz4 slen))
  214.                                         (setq py    (atof (substr aa zhz3 (1+ (- zhz4 zhz3))))
  215.                                               str1  (substr aa zhz1 (1+ (- zhz2 zhz1)))
  216.                                               slen1 (strlen str1)
  217.                                               qq    1
  218.                                         )
  219.                                         (while (< qq slen1)
  220.                                                (setq tem1 (substr str1 qq 1))
  221.                                                (if (equal tem1 "+")
  222.                                                    (progn (if (> qq 3)
  223.                                                               (setq temp1 (atof (substr str1 (- qq 3) 3)))
  224.                                                               (if (> qq 2)
  225.                                                                   (setq temp1 (atof (substr str1 (- qq 2) 2)))
  226.                                                                   (if (> qq 1)
  227.                                                                       (setq temp1 (atof (substr str1 (- qq 1) 1)))
  228.                                                                   )
  229.                                                               )
  230.                                                           )
  231.                                                           (setq temp2 (atof (substr str1 (1+ qq) (- slen1 qq))))
  232.                                                    )
  233.                                                )
  234.                                                (setq qq (1+ qq))
  235.                                         )
  236.                                         (setq px (/ (+ (* temp1 100) temp2) 10))
  237.                                         (if (equal tst "yes")
  238.                                             (setq wstr (substr aa (1+ nn1) (- slen nn1))
  239.                                                   lwstr (append lwstr (list wstr px py))
  240.                                             )
  241.                                         )
  242.                                  )
  243.                              )
  244.                       )
  245.                   )
  246.                   (setq ptemp (list px py))
  247.                   (if (and (boundp 'px) (boundp 'py))
  248.                       (progn (if (< px xmin) (setq xmin px))
  249.                              (if (> px xmax) (setq xmax px))
  250.                              (if (< py ymin) (setq ymin py))
  251.                              (if (> py ymax) (setq ymax py))
  252.                              (if (or (= temp2 00.0000) (= temp2 20.0000) (= temp2 40.0000)
  253.                                      (= temp2 60.0000) (= temp2 80.0000))
  254.                                  (setq str2 (rtos py 2 2)
  255.                                        ltemp (append ltemp (list str1 str2 px))
  256.                                  )
  257.                              )
  258.                       )
  259.                   )
  260.                   (if (> bb 5) (if(= bb 6)(command "line" ptemp)(command ptemp)))
  261.                   (setq bb (1+ bb))
  262.            )
  263.            (command "")
  264.            (setq ptemp1 (list (- xmin 1) ymin)
  265.                  ptemp2 (list (+ xmax 1) ymax)
  266.            )
  267.            (gc)
  268.            (huitu ptemp1 ptemp2)
  269.            (close rf)
  270.            (setq aa 1
  271.                  bb 1
  272.            )
  273.            (command "layer" "set" "文本" "")
  274.            (while (/= px nil)
  275.                   (setq temp1 (nth (1- bb) ltemp)
  276.                         temp2 (nth bb ltemp)
  277.                         px (nth (1+ bb) ltemp)
  278.                         ptmp1 (list px (- (cadr ptemp1) 15.5))
  279.                         ptmp2 (list px (- (cadr ptemp1) 14.0))
  280.                   )
  281.                   (if (/= px nil) (progn (command "text" "s" "txt" ptmp1 0.22 90 temp1)
  282.                                          (command "text" "s" "txt" ptmp2 0.22 90 temp2)
  283.                                          (setq bb (+ bb 3))
  284.                                   )
  285.                   )
  286.            )
  287.            (setq bb 1
  288.                  px 1
  289.            )
  290.            (while (/= px nil)
  291.                   (setq px (nth bb lwstr))
  292.                   (if (/= nil px) (progn (setq wstr (strcat "%%u" (nth (1- bb) lwstr) "%%u" )
  293.                                                  py (nth (1+ bb) lwstr)
  294.                                                wgch (rtos py 2 3)
  295.                                               ptmp1 (list px (- (cadr ptemp2) 4.0))
  296.                                               ptmp2 (list px (- (cadr ptemp1) 15.5))
  297.                                               ptmp3 (list px (- (cadr ptemp1) 14.0))
  298.                                          )
  299.                                          (if (= (fix px) px) (setq wzhh nil wgch nil)
  300.                                                              (progn (while (> px 0) (setq px (- px 10)))
  301.                                                                     (setq zhh (rtos (* (+ px 10) 10) 2 2)
  302.                                                                          wzhh (strcat "+" zhh)
  303.                                                                     )
  304.                                                              )
  305.                                          )
  306.                                          (command "text" "s" "st" ptmp1 0.3 90 wstr )
  307.                                          (command "text" "s" "txt" ptmp2 0.22 90 wzhh )
  308.                                          (command "text" "s" "txt" ptmp3 0.22 90 wgch )
  309.                                          (setq bb (+ bb 3))
  310.                                   )
  311.                   )
  312.            )
  313.            (print " ")        
  314.     )
  315.     (defun hdmht(p1 ldd wstr)
  316.            (setq nn 0
  317.                slen (length ldd)
  318.                lddn nil
  319.            )
  320.            (while (< nn slen)
  321.                   (setq xmin 1000.0
  322.                         bb 0
  323.                   )
  324.                   (while (< bb  slen) (setq temp1 (- (car (nth bb ldd)) xmin))
  325.                                       (if (and (< temp1 0) (numberp (cdr (nth bb ldd))))
  326.                                           (setq xmin (car (nth bb ldd)))
  327.                                       )
  328.                                       (setq bb (1+ bb))
  329.                   )
  330.                   (if (numberp (cdr (assoc xmin ldd)))
  331.                       (setq  lddn (append lddn (list (assoc xmin ldd)))
  332.                              oldd (assoc xmin ldd)
  333.                              newd (list xmin "yes")
  334.                               ldd (subst newd oldd ldd)
  335.                       )
  336.                   )
  337.                   (setq nn (1+ nn))
  338.            )
  339.            (setq temp3 (cdr (assoc 0.000 lddn))
  340.                     nn 0
  341.                     p2 (list (car p1) (- (cadr p1) 0.5))
  342.                     p3 (list (- (car p1) 1.0) (- (cadr p1) 1.8))
  343.                     p4 (list (- (car p1) 0.05) (+ (cadr p1) 0.3))
  344.            )
  345.            (command "layer" "set" "地面线" "")
  346.            (repeat slen (setq ptemp (list (+ (car p1) (car (nth nn lddn)))
  347.                                           (+ (cadr p1) (- (cdr (nth nn lddn)) temp3))
  348.                                     )
  349.                                  nn (1+ nn)
  350.                         )
  351.                         (if(= nn 1)(command "line" ptemp)(command ptemp))
  352.            )
  353.            (command "")
  354.            (command "layer" "set" "文本" "")
  355.            (command "line" p2 "@0,1" "")
  356.            (command "line" p1 "@0.25,0.25" "@-0.5,0" "c")
  357.            (command "text" "s" "txt" p3 0.3 0 wstr)
  358.            (command "text" "s" "txt" p4 0.3 0 (rtos (cdr (assoc 0.00 lddn)) 2 2))
  359.            (gc)           
  360.      )  
  361.     (defun hdmshuru()
  362.             (setq rf (open f_name "r")
  363.                  aa 1
  364.                  bb 1
  365.                lzhh nil
  366.                lgch nil
  367.            )
  368.            (command "style" "txt" "romand" 0 1.0 0 "" "" "")
  369.            (command "style" "st" "c:\\windows\\fonts\\simsun.ttf" 0 1.0 0 "" "")
  370.            (setq pt (getpoint "\n please pick a base point to draw:"))
  371.            (while (boundp 'aa)
  372.                   (setq aa (read-line rf)
  373.                         nn 1
  374.                         tst nil
  375.                      stemp1 nil
  376.                   )
  377.                   (if (boundp 'aa)
  378.                       (progn (setq slen (strlen aa) zhz1 nil zhz2 nil zhz3 nil zhz4 nil tst "no")
  379.                              (if (> bb 5)
  380.                                  (progn (while (<= nn slen)
  381.                                                (setq stemp2 (substr aa nn 1))
  382.                                                (if (equal stemp2 "+")
  383.                                                    (setq tst "yes")
  384.                                                )
  385.                                                (if (and (or (equal stemp1 " ") (equal stemp1 nil))
  386.                                                         (not (equal stemp2 " "))
  387.                                                    )
  388.                                                    (if (= zhz1 nil) (setq zhz1 nn)
  389.                                                                     (if (= zhz3 nil) (setq zhz3 nn))
  390.                                                    )
  391.                                                )
  392.                                                (if (and (equal stemp2 " ")
  393.                                                         (not (equal stemp1 " "))
  394.                                                         (not (equal stemp1 nil))
  395.                                                    )
  396.                                                    (if (= zhz2 nil) (setq zhz2 (1- nn))
  397.                                                                     (if (= zhz4 nil) (setq zhz4 (1- nn)))
  398.                                                    )
  399.                                                )
  400.                                                (setq stemp1 stemp2
  401.                                                      nn (1+ nn)
  402.                                                )
  403.                                         )
  404.                                         (if (= zhz4 nil) (setq zhz4 slen))
  405.                                         (if (equal tst "yes")
  406.                                             (setq lzhh (append lzhh (list (substr aa zhz1 (1+ (- zhz2 zhz1)))))
  407.                                                   lgch (append lgch (list (cons 0.000
  408.                                                                                 (atof (substr aa zhz3 (1+ (- zhz4 zhz3))))
  409.                                                                            )
  410.                                                                     )
  411.                                                        )
  412.                                             )
  413.                                             (setq lgch (append lgch (list (cons (atof (substr aa zhz1 (1+ (- zhz2 zhz1))))
  414.                                                                                 (atof (substr aa zhz3 (1+ (- zhz4 zhz3))))
  415.                                                                           )
  416.                                                                     )
  417.                                                        )
  418.                                             )
  419.                                         )
  420.                                  )
  421.                              )
  422.                       )
  423.                   )
  424.                   (setq bb (1+ bb))
  425.            )
  426.            (close rf)
  427.            (gc)
  428.            (setq    bbc 0
  429.                     aac 0
  430.                     nnc 0
  431.                  temp1 1
  432.                    pt1 pt
  433.                 ltemp nil
  434.                 slen1 (length lgch)
  435.                 no_1 0
  436.            )
  437.            (repeat slen1 (setq temp (car (nth nnc lgch))
  438.                                 nnc (1+ nnc)
  439.                         )
  440.                         (if (= 0.00 temp) (setq no_1 (1+ no_1)))
  441.            )
  442.            (while (<= bbc slen1)                     
  443.                   (setq temp1 (car (nth bbc lgch))
  444.                         temp2 (cdr (nth bbc lgch))
  445.                   )
  446.                   (if (boundp 'temp1)
  447.                       (if (and (equal temp1 0.00) (/= bbc 0))
  448.                           (progn (setq stemp1 (nth aac lzhh)
  449.                                       pt1 (list (car pt1) (+ (cadr pt1) 9.0))
  450.                                       pst (strcat "   " stemp1 "   " (rtos (1+ aac)) "of" (rtos no_1))
  451.                                  )
  452.                                  (print pst)
  453.                                  (gc)
  454.                                  (hdmht pt1 ltemp stemp1)
  455.                                  (setq  ltemp (list (cons 0.00 temp2))
  456.                                              aac (1+ aac)
  457.                                  )
  458.                           )
  459.                           (setq ltemp (append ltemp (list (nth bbc lgch))))
  460.                       )
  461.                       (progn (setq stemp1 (nth aac lzhh)
  462.                                       pt1 (list (car pt1) (+ (cadr pt1) 9.0))
  463.                                       pst (strcat "   " stemp1 "   " (rtos (1+ aac)) "of" (rtos no_1))
  464.                              )
  465.                              (print pst)
  466.                              (hdmht pt1 ltemp stemp1)
  467.                       )
  468.                   )
  469.                   (setq bbc (1+ bbc))
  470.            )
  471.            (print " ")
  472.     )
  473. (prompt "\n   ")
  474. (prompt "\n   ")
  475. (prompt "\n   ")
  476.     (defun bzht()
  477.            (command "style" "txt" "romand" 0 1.0 0 "" "" "")
  478.            (command "style" "st" "c:\\windows\\fonts\\simsun.ttf" 0 1.0 0 "" "")
  479.            (command "linetype" "load" "dot" "acad" "")
  480.            (command)
  481.            (command "layer" "new" "虚线" "C" "9" "虚线" "L" "dot" "虚线"
  482.                             "new" "地面线" "C" "red" "地面线" "L" "continuous" "地面线"
  483.                             "new" "文本" "C" "green" "文本" "L" "continuous" "文本"
  484.                             "new" "表格" "C" "cyan" "表格" "L" "continuous" "表格" "")
  485.     )

本帖子中包含更多资源

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

x
发表于 2013-5-14 12:02:34 | 显示全部楼层
这么长的代码看的好晕,没数据格式文件和duan.dcl文件........
发表于 2013-5-14 13:26:40 | 显示全部楼层
是楼主自己写的吗?
建议吧相关的文件附上,然后写个程序说明,至少让别人知道你这个程序是做什么用的,别人也好调试
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-5-30 06:32 , Processed in 0.179813 second(s), 27 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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