chuweiqiang 1 năm trước cách đây
mục cha
commit
3275469ffa
2 tập tin đã thay đổi với 12 bổ sung1 xóa
  1. 9 0
      app/admin/view/recruitment/form.html
  2. 3 1
      app/data/model/DataXw.php

+ 9 - 0
app/admin/view/recruitment/form.html

@@ -156,6 +156,15 @@
 
 </form>
 <script>
+    var vo  = {:json_encode($vo)};
+    var salary_end = vo['salary_end'];
+    var salary_start = vo['salary_start'];
+    if(salary_end.charAt(salary_end.length - 1) === 'K'){
+        console.log(salary_end.charAt(salary_end.length - 1));
+    };
+
+</script>
+<script>
     require(['pcasunzips'], function () {
         (function (prov, city, area, refresh) {
             new PCAS("province", "city", "area", prov, city, area);

+ 3 - 1
app/data/model/DataXw.php

@@ -22,6 +22,7 @@ class DataXw extends Model
     ];
     public static function onBeforeWrite(self $model)
     {
+        return true;
         $model['has_video']=Str::contains($model['content'],'</video>');
         if($model['has_video']){
             $html=HtmlDomParser::str_get_html($model['content']);
@@ -34,6 +35,7 @@ class DataXw extends Model
                     'ffmpeg.binaries' => root_path() . 'extend/bin/ffmpeg',
                     'ffprobe.binaries' => root_path() . 'extend/bin/ffprobe'
                 ]);
+
                 $video = $pro->open($src);
                 $dir = public_path();
                 $filename = 'upload/v-c/' . session_create_id() . '.png';
@@ -93,4 +95,4 @@ class DataXw extends Model
             return '取消成功';
         }
     }
-}
+}