Переглянути джерело

fix:查询题库时加了sort字段

sky 5 роки тому
батько
коміт
08529e75ee
2 змінених файлів з 10 додано та 38 видалено
  1. 8 37
      knowledge_labeling_ui.conf
  2. 2 1
      src/views/Home.vue

+ 8 - 37
knowledge_labeling_ui.conf

@@ -1,10 +1,8 @@
 server {
-  listen       80;
-  server_name  knowledge_labeling.seec.seecoder.cn;
-
-  #charset koi8-r;
-
-  #access_log  logs/host.access.log  main;
+  listen 80 default_server;
+  listen [::]:80 default_server;
+# server_name  knowledge_labeling.seec.seecoder.cn;
+  root /var/www/html/dist;
 
   # 匹配 api 路由的反向代理到API服务
   location ^~/bok {
@@ -16,7 +14,6 @@ server {
 
   #根据路由设置,避免出现404
   location / {
-    root /var/www/html/dist;
     try_files $uri $uri/ @router;
     index index.html;
   }
@@ -24,35 +21,9 @@ server {
     rewrite ^.*$ /index.html last;
   }
 
-  #error_page  404              /404.html;
-
-  # redirect server error pages to the static page /50x.html
-  #
-  error_page   500 502 503 504  /50x.html;
-  location = /50x.html {
-    root   html;
-  }
-
-  # proxy the PHP scripts to Apache listening on 127.0.0.1:80
-  #
-  #location ~ \.php$ {
-  #    proxy_pass   http://127.0.0.1;
-  #}
-
-  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
-  #
-  #location ~ \.php$ {
-  #    root           html;
-  #    fastcgi_pass   127.0.0.1:9000;
-  #    fastcgi_index  index.php;
-  #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
-  #    include        fastcgi_params;
-  #}
+#  error_page   500 502 503 504  /50x.html;
+#  location = /50x.html {
+#    root   html;
+#  }
 
-  # deny access to .htaccess files, if Apache's document root
-  # concurs with nginx's one
-  #
-  #location ~ /\.ht {
-  #    deny  all;
-  #}
 }

+ 2 - 1
src/views/Home.vue

@@ -56,7 +56,8 @@
                 return this.$axios.get("bok/api/question",{
                     params: {
                         size,
-                        page
+                        page,
+                        sort: "id"
                     }
                 });
             },