chuweiqiang 1 year ago
parent
commit
38785360c6

+ 2 - 1
app/admin/controller/TeachingKnowledge.php

@@ -48,8 +48,9 @@ class TeachingKnowledge extends Controller
             })
             ->like('title')
             ->with(['user'])
-            ->where('type',1)
+//            ->where('type',1)
             ->where('is_del',1)
+            ->where('audit',2)
             ->order('id','desc')
             ->layTable();
     }

+ 1 - 0
app/admin/controller/TeachingKnowledgeAuth.php

@@ -48,6 +48,7 @@ class TeachingKnowledgeAuth extends Controller
             ->with(['user'])
             ->where('type',2)
             ->where('is_del',1)
+            ->where('audit',1)
             ->order('id','desc')
             ->layTable();
     }

+ 3 - 0
app/admin/view/teaching_knowledge/index.html

@@ -32,6 +32,9 @@
                 {field: 'id', title: 'ID', align: 'center'},
                 {field: 'title', title: '标题', align: 'center'},
                // {field: 'imgs', title: '图片', width: '8%', align: 'center', templet: '#imgs'},
+                {field: 'user', title: '申请用户', align: 'center',templet(d){
+                        return d.user?d.user.nickname:''
+                    }},
                 {field: 'imgs', title: '图片',  align: 'center', templet:function (d) {
                        if (d.imgs.length<1){
                            return '无图片'

+ 4 - 3
public/nginx.htaccess

@@ -1,4 +1,5 @@
-if (!-e $request_filename){  
-    rewrite ^/index.php(.*)$ /index.php?s=$1 last; 
-    rewrite ^/(.*)$ /index.php?s=$1 last;  
+location / {
+   if (!-e $request_filename) {
+        rewrite  ^(.*)$  /index.php?s=/$1  last;
+    }
 }