Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Custom.php 52KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Page;
  15. use think\Db;
  16. class Custom extends Base
  17. {
  18. // 模型标识
  19. public $nid = '';
  20. // 模型ID
  21. public $channeltype = 0;
  22. // 模型附加表
  23. public $table = '';
  24. /*
  25. * 初始化操作
  26. */
  27. public function _initialize()
  28. {
  29. parent::_initialize();
  30. $this->archives_db = Db::name('archives');
  31. $this->channeltype = input('param.channel/d', 0);
  32. $channeltypeRow = Db::name('channeltype')->field('nid,table')->where(['id'=>['eq',$this->channeltype]])->find();
  33. if (empty($this->channeltype) || empty($channeltypeRow)) {
  34. $this->error('自定义模型ID丢失,打开失败!');
  35. }
  36. $this->nid = $channeltypeRow['nid'];
  37. $this->table = $channeltypeRow['table'];
  38. $this->assign('nid', $this->nid);
  39. $this->assign('table', $this->table);
  40. $this->assign('channeltype', $this->channeltype);
  41. // 返回页面
  42. $paramTypeid = input('param.typeid/d', 0);
  43. $this->callback_url = url('Custom/index', ['lang' => $this->admin_lang, 'channel'=>$this->channeltype, 'typeid' => $paramTypeid]);
  44. $this->assign('callback_url', $this->callback_url);
  45. }
  46. //列表
  47. public function index()
  48. {
  49. $assign_data = $condition = [];
  50. // 获取到所有GET参数
  51. $param = input('param.');
  52. $typeid = input('typeid/d', 0);
  53. // 搜索、筛选查询条件处理
  54. foreach (['keywords', 'typeid', 'flag', 'is_release','province_id','city_id','area_id'] as $key) {
  55. if ($key == 'typeid' && empty($param['typeid'])) {
  56. $typeids = Db::name('arctype')->where('current_channel', $this->channeltype)->column('id');
  57. $condition['a.typeid'] = array('IN', $typeids);
  58. }
  59. if (isset($param[$key]) && $param[$key] !== '') {
  60. if ($key == 'keywords') {
  61. $keywords = $param[$key];
  62. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  63. } else if ($key == 'typeid') {
  64. $typeid = $param[$key];
  65. $hasRow = model('Arctype')->getHasChildren($typeid);
  66. $typeids = get_arr_column($hasRow, 'id');
  67. // 权限控制 by 小虎哥
  68. $admin_info = session('admin_info');
  69. if (0 < intval($admin_info['role_id'])) {
  70. $auth_role_info = $admin_info['auth_role_info'];
  71. if (!empty($typeid) && !empty($auth_role_info) && !empty($auth_role_info['permission']['arctype'])) {
  72. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  73. }
  74. }
  75. $condition['a.typeid'] = array('IN', $typeids);
  76. } else if ($key == 'flag') {
  77. if ('is_release' == $param[$key]) {
  78. $condition['a.users_id'] = array('gt', 0);
  79. } else {
  80. $FlagNew = $param[$key];
  81. $condition['a.'.$param[$key]] = array('eq', 1);
  82. }
  83. } else if (in_array($key, ['province_id','city_id','area_id'])) {
  84. if (!empty($param['area_id'])) {
  85. $condition['a.area_id'] = $param['area_id'];
  86. } else if (!empty($param['city_id'])) {
  87. $condition['a.city_id'] = $param['city_id'];
  88. } else if (!empty($param['province_id'])) {
  89. $condition['a.province_id'] = $param['province_id'];
  90. }
  91. } else {
  92. $condition['a.'.$key] = array('eq', $param[$key]);
  93. }
  94. }
  95. }
  96. // 权限控制 by 小虎哥
  97. $admin_info = session('admin_info');
  98. if (0 < intval($admin_info['role_id'])) {
  99. $auth_role_info = $admin_info['auth_role_info'];
  100. if (!empty($auth_role_info) && isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  101. $condition['a.admin_id'] = $admin_info['admin_id'];
  102. }
  103. }
  104. // 时间检索条件
  105. $begin = strtotime(input('add_time_begin'));
  106. $end = strtotime(input('add_time_end'));
  107. if ($begin > 0 && $end > 0) {
  108. $condition['a.add_time'] = array('between', "$begin, $end");
  109. } else if ($begin > 0) {
  110. $condition['a.add_time'] = array('egt', $begin);
  111. } else if ($end > 0) {
  112. $condition['a.add_time'] = array('elt', $end);
  113. }
  114. // 必要条件
  115. $condition['a.channel'] = array('eq', $this->channeltype);
  116. $condition['a.lang'] = array('eq', $this->admin_lang);
  117. $condition['a.is_del'] = array('eq', 0);
  118. $conditionNew = "(a.users_id = 0 OR (a.users_id > 0 AND a.arcrank >= 0))";
  119. // 自定义排序
  120. $orderby = input('param.orderby/s');
  121. $orderway = input('param.orderway/s');
  122. if (!empty($orderby) && !empty($orderway)) {
  123. $orderby = "a.{$orderby} {$orderway}, a.aid desc";
  124. } else {
  125. $orderby = "a.aid desc";
  126. }
  127. // 数据查询,搜索出主键ID的值
  128. $SqlQuery = $this->archives_db->alias('a')->where($condition)->where($conditionNew)->fetchSql()->count('aid');
  129. $count = Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result');
  130. $count = ($count < 0) ? 0 : $count;
  131. if (empty($count)) {
  132. $count = $this->archives_db->alias('a')->where($condition)->where($conditionNew)->count('aid');
  133. /*添加查询执行语句到mysql缓存表*/
  134. $SqlCacheTable = [
  135. 'sql_name' => '|' . $this->table . '|' . $this->channeltype . '|',
  136. 'sql_result' => $count,
  137. 'sql_md5' => md5($SqlQuery),
  138. 'sql_query' => $SqlQuery,
  139. 'add_time' => getTime(),
  140. 'update_time' => getTime(),
  141. ];
  142. if (!empty($FlagNew)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $FlagNew . '|';
  143. if (!empty($typeid)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $typeid . '|';
  144. if (!empty($keywords)) $SqlCacheTable['sql_name'] = '|custom|keywords|';
  145. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  146. /*END*/
  147. }
  148. $Page = new Page($count, config('paginate.list_rows'));
  149. $list = [];
  150. if (!empty($count)) {
  151. $limit = $count > config('paginate.list_rows') ? $Page->firstRow.','.$Page->listRows : $count;
  152. $list = $this->archives_db
  153. ->field("a.aid")
  154. ->alias('a')
  155. ->where($condition)
  156. ->where($conditionNew)
  157. ->order($orderby)
  158. ->limit($limit)
  159. ->getAllWithIndex('aid');
  160. if (!empty($list)) {
  161. $aids = array_keys($list);
  162. $fields = "b.*, a.*, a.aid as aid";
  163. $row = $this->archives_db
  164. ->field($fields)
  165. ->alias('a')
  166. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  167. ->where('a.aid', 'in', $aids)
  168. ->getAllWithIndex('aid');
  169. foreach ($list as $key => $val) {
  170. $row[$val['aid']]['arcurl'] = get_arcurl($row[$val['aid']]);
  171. $row[$val['aid']]['litpic'] = handle_subdir_pic($row[$val['aid']]['litpic']);
  172. $list[$key] = $row[$val['aid']];
  173. }
  174. }
  175. }
  176. $show = $Page->show();
  177. $assign_data['page'] = $show;
  178. $assign_data['list'] = $list;
  179. $assign_data['pager'] = $Page;
  180. $assign_data['typeid'] = $typeid;
  181. $assign_data['tab'] = input('param.tab/d', 3);// 选项卡
  182. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();// 文档属性
  183. $assign_data['arctype_info'] = $typeid > 0 ? Db::name('arctype')->field('typename')->find($typeid) : [];// 当前栏目信息
  184. $this->assign($assign_data);
  185. return $this->fetch();
  186. }
  187. /**
  188. * 添加
  189. */
  190. public function add()
  191. {
  192. $admin_info = session('admin_info');
  193. $auth_role_info = $admin_info['auth_role_info'];
  194. $this->assign('auth_role_info', $auth_role_info);
  195. $this->assign('admin_info', $admin_info);
  196. if (IS_POST) {
  197. $post = input('post.');
  198. model('Archives')->editor_auto_210607($post);
  199. /* 处理TAG标签 */
  200. if (!empty($post['tags_new'])) {
  201. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  202. unset($post['tags_new']);
  203. }
  204. $post['tags'] = explode(',', $post['tags']);
  205. $post['tags'] = array_unique($post['tags']);
  206. $post['tags'] = implode(',', $post['tags']);
  207. /* END */
  208. /*获取第一个html类型的内容,作为文档的内容来截取SEO描述*/
  209. $contentField = Db::name('channelfield')->where([
  210. 'channel_id' => $this->channeltype,
  211. 'dtype' => 'htmltext',
  212. ])->getField('name');
  213. $content = empty($post['addonFieldExt'][$contentField]) ? '' : htmlspecialchars_decode($post['addonFieldExt'][$contentField]);
  214. /*--end*/
  215. // 根据标题自动提取相关的关键字
  216. $seo_keywords = $post['seo_keywords'];
  217. if (!empty($seo_keywords)) {
  218. $seo_keywords = str_replace(',', ',', $seo_keywords);
  219. } else {
  220. // $seo_keywords = get_split_word($post['title'], $content);
  221. }
  222. // 自动获取内容第一张图片作为封面图
  223. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  224. $litpic = '';
  225. if ($is_remote == 1) {
  226. $litpic = $post['litpic_remote'];
  227. } else {
  228. $litpic = $post['litpic_local'];
  229. }
  230. if (empty($litpic)) {
  231. $litpic = get_html_first_imgurl($content);
  232. }
  233. $post['litpic'] = $litpic;
  234. /*是否有封面图*/
  235. if (empty($post['litpic'])) {
  236. $is_litpic = 0; // 无封面图
  237. } else {
  238. $is_litpic = 1; // 有封面图
  239. }
  240. // SEO描述
  241. $seo_description = '';
  242. if (empty($post['seo_description']) && !empty($content)) {
  243. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  244. } else {
  245. $seo_description = $post['seo_description'];
  246. }
  247. // 外部链接跳转
  248. $jumplinks = '';
  249. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  250. if (intval($is_jump) > 0) {
  251. $jumplinks = $post['jumplinks'];
  252. }
  253. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  254. if ($post['type_tempview'] == $post['tempview']) {
  255. unset($post['type_tempview']);
  256. unset($post['tempview']);
  257. }
  258. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  259. $htmlfilename = trim($post['htmlfilename']);
  260. if (!empty($htmlfilename)) {
  261. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  262. // $htmlfilename = strtolower($htmlfilename);
  263. //判断是否存在相同的自定义文件名
  264. $map = [
  265. 'htmlfilename' => $htmlfilename,
  266. 'lang' => $this->admin_lang,
  267. ];
  268. if (!empty($post['typeid'])) {
  269. $map['typeid'] = array('eq', $post['typeid']);
  270. }
  271. $filenameCount = Db::name('archives')->where($map)->count();
  272. if (!empty($filenameCount)) {
  273. $this->error("同栏目下,自定义文件名已存在!");
  274. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  275. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  276. }
  277. } else {
  278. // 处理外贸链接
  279. if (is_dir('./weapp/Waimao/')) {
  280. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  281. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'add', $this->globalConfig);
  282. }
  283. }
  284. $post['htmlfilename'] = $htmlfilename;
  285. //做自动通过审核判断
  286. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  287. $post['arcrank'] = -1;
  288. }
  289. // 副栏目
  290. if (isset($post['stypeid'])) {
  291. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  292. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  293. $post['stypeid'] = trim($post['stypeid'], ',');
  294. $post['stypeid'] = str_replace(",{$post['typeid']},", ',', ",{$post['stypeid']},");
  295. $post['stypeid'] = trim($post['stypeid'], ',');
  296. }
  297. //查询排序 等级
  298. $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
  299. //var_dump($post['addonFieldExt']);die;
  300. $ext = '';
  301. //获取文档文件后缀
  302. if(!empty($post['addonFieldExt']['down_eyou_remote'])){
  303. $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
  304. $ext = end($file);
  305. }else{
  306. //$ext = '';
  307. }
  308. if(!empty($post['addonFieldExt']['down_eyou_local'])){
  309. $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
  310. $ext = end($file);
  311. }else{
  312. //$ext = '';
  313. }
  314. // --存储数据
  315. $newData = array(
  316. 'typeid'=> empty($post['typeid']) ? 0 : $post['typeid'],
  317. 'channel' => $this->channeltype,
  318. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  319. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  320. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  321. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  322. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  323. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  324. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  325. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  326. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  327. 'is_jump' => $is_jump,
  328. 'is_litpic' => $is_litpic,
  329. 'jumplinks' => $jumplinks,
  330. 'origin' => empty($post['origin']) ? '网络' : $post['origin'],
  331. 'seo_keywords' => $seo_keywords,
  332. 'seo_description' => $seo_description,
  333. 'admin_id' => session('admin_info.admin_id'),
  334. 'lang' => $this->admin_lang,
  335. 'sort_order' => 100,
  336. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  337. 'add_time' => strtotime($post['add_time']),
  338. 'update_time' => strtotime($post['add_time']),
  339. 'product_id' => (int)$post['product_id'], //增加
  340. 'lunwen_id' => (int)$post['lunwen_id'], //增加
  341. 'level_group_id' => (int)$post['level_group_id'],
  342. 'level_id' => (int)$post['level_group_name'],
  343. 'level' => (int)$sort_order,
  344. 'product_tag_id' => (int)$post['product_tag_id'],
  345. 'area_tag_id' => (int)$post['area_tag_id'],
  346. 'ext' => $ext
  347. );
  348. $data = array_merge($post, $newData);
  349. $aid = $this->archives_db->insertGetId($data);
  350. $_POST['aid'] = $aid;
  351. if ($aid) {
  352. // ---------后置操作
  353. model('Custom')->afterSave($aid, $data, 'add', $this->table);
  354. // 添加查询执行语句到mysql缓存表
  355. model('SqlCacheTable')->InsertSqlCacheTable();
  356. // ---------end
  357. adminLog('新增数据:'.$data['title']);
  358. //新增序列号 (论文期刊和论文模板)
  359. //只考虑新增场景 其他的用api修复
  360. if((int)$newData['typeid'] === 116 || (int)$newData['typeid'] === 123 || (int)$newData['typeid'] === 127 || (int)$newData['typeid'] === 128){
  361. $last = Db::name('seo_number')->where([
  362. "type" => 4,
  363. "tid" => (int)$post['typeid'],
  364. 'topid' => 0,
  365. 'parentid' => 0,
  366. 'area_id' => 0,
  367. ])->order('number desc')->find();
  368. if(empty($last['number'])){
  369. $num = 1;
  370. }else{
  371. $num = (int)$last['number'] + 1;
  372. }
  373. $in_data = [
  374. "type" => 4, //产品类型
  375. "aid" => $aid, //实际的ID
  376. "tid" => (int)$post['typeid'], //属于哪个栏目的
  377. 'is_del' => 0,
  378. 'is_kan' => 0, // 0正常 1审核
  379. 'status' => 1,
  380. 'area_id' => 0,
  381. 'topid' => 0,
  382. 'parentid' => 0,
  383. 'number' => $num
  384. ];
  385. Db::name('seo_number')->insert($in_data);
  386. }else if((int)$newData['typeid'] === 371){
  387. $last = Db::name('seo_number')->where([
  388. "type" => 10,
  389. "tid" => (int)$post['typeid'],
  390. 'topid' => 0,
  391. 'parentid' => 0,
  392. 'area_id' => 0,
  393. ])->order('number desc')->find();
  394. if(empty($last['number'])){
  395. $num = 1;
  396. }else{
  397. $num = (int)$last['number'] + 1;
  398. }
  399. $in_data = [
  400. "type" => 10, //产品类型
  401. "aid" => $aid, //实际的ID
  402. "tid" => (int)$post['typeid'], //属于哪个栏目的
  403. 'is_del' => 0,
  404. 'is_kan' => 0, // 0正常 1审核
  405. 'status' => 1,
  406. 'area_id' => 0,
  407. 'topid' => 0,
  408. 'parentid' => 0,
  409. 'number' => $num
  410. ];
  411. Db::name('seo_number')->insert($in_data);
  412. //更新主记录 冗余
  413. Db::name('archives')
  414. ->where(['aid'=>$aid])
  415. ->update(['number'=>$num]);
  416. }else if((int)$newData['typeid'] === 126 || (int)$newData['typeid'] === 825 || (int)$newData['typeid'] === 826){
  417. //资料文档
  418. $last = Db::name('seo_number')->where([
  419. "type" => 5,
  420. "tid" => (int)$post['typeid'],
  421. 'topid' => 0,
  422. 'parentid' => 0,
  423. 'area_id' => (int)$post['province_id'], //如果是0的话 后续也不能改
  424. ])->order('number desc')->find();
  425. if(empty($last['number'])){
  426. $num = 1;
  427. }else{
  428. $num = (int)$last['number'] + 1;
  429. }
  430. $in_data = [
  431. "type" => 5, //产品类型
  432. "aid" => $aid, //实际的ID
  433. "tid" => (int)$post['typeid'], //属于哪个栏目的
  434. 'is_del' => 0,
  435. 'is_kan' => 0, // 0正常 1审核
  436. 'status' => 1,
  437. 'area_id' => (int)$post['province_id'],
  438. 'topid' => 0,
  439. 'parentid' => 0,
  440. 'number' => $num
  441. ];
  442. Db::name('seo_number')->insert($in_data);
  443. }else if((int)$newData['typeid'] === 120 || (int)$newData['typeid'] === 118 || (int)$newData['typeid'] === 122 || (int)$newData['typeid'] === 11100000 || (int)$newData['typeid'] === 133 || (int)$newData['typeid'] === 132 || (int)$newData['typeid'] === 131 || (int)$newData['typeid'] === 306){
  444. //案例 申报 职称相关问题 常见问题汇总 历年真题题库 答辩问题汇总 防骗指南 职称补贴
  445. $last = Db::name('seo_number')->where([
  446. "type" => 2,
  447. "tid" => (int)$post['typeid'],
  448. 'topid' => 0,
  449. 'parentid' => 0,
  450. 'area_id' => 0,
  451. ])->order('number desc')->find();
  452. if(empty($last['number'])){
  453. $num = 1;
  454. }else{
  455. $num = (int)$last['number'] + 1;
  456. }
  457. $in_data = [
  458. "type" => 2, //文章类型
  459. "aid" => $aid, //实际的ID
  460. "tid" => (int)$post['typeid'], //属于哪个栏目的
  461. 'is_del' => 0,
  462. 'is_kan' => 0, // 0正常 1审核
  463. 'status' => 1,
  464. 'area_id' => 0,
  465. 'topid' => 0,
  466. 'parentid' => 0,
  467. 'number' => $num
  468. ];
  469. Db::name('seo_number')->insert($in_data);
  470. }else if((int)$newData['typeid'] === 115 || (int)$newData['typeid'] === 117 || (int)$newData['typeid'] === 111){
  471. //政策资讯 //评审攻略 //常见问题
  472. $where6 = [
  473. "type" => 2,
  474. "tid" => (int)$post['typeid'],
  475. 'topid' => 0,
  476. 'parentid' => 0,
  477. 'area_id' => (int)$post['province_id'], //如果是0的话 后续也不能改
  478. 'city_id' => (int)$post['city_id'], //如果是0的话 后续也不能改
  479. ];
  480. /*if((int)$post['city_id'] > 0){
  481. $where6['city_id'] = (int)$post['city_id'];
  482. }*/
  483. //攻略和政策资讯
  484. $last = Db::name('seo_number')->where($where6)->order('number desc')->find();
  485. if(empty($last['number'])){
  486. $num = 1;
  487. }else{
  488. $num = (int)$last['number'] + 1;
  489. }
  490. $in_data = [
  491. "type" => 2, //产品类型
  492. "aid" => $aid, //实际的ID
  493. "tid" => (int)$post['typeid'], //属于哪个栏目的
  494. 'is_del' => 0,
  495. 'is_kan' => 0, // 0正常 1审核
  496. 'status' => 1,
  497. 'area_id' => (int)$post['province_id'],
  498. 'city_id' => (int)$post['city_id'],
  499. 'topid' => 0,
  500. 'parentid' => 0,
  501. 'number' => $num
  502. ];
  503. Db::name('seo_number')->insert($in_data);
  504. }else if((int)$newData['typeid'] === 1231 || (int)$newData['typeid'] === 1233 || (int)$newData['typeid'] === 1234){
  505. //新闻资讯 //业绩材料 //一键测评
  506. $where6 = [
  507. "type" => 2,
  508. "tid" => (int)$post['typeid'],
  509. 'topid' => 0,
  510. 'parentid' => 0,
  511. 'area_id' => 0, //(int)$post['province_id'] //如果是0的话 后续也不能改
  512. 'city_id' => 0, //(int)$post['city_id'] //如果是0的话 后续也不能改
  513. ];
  514. /*if((int)$post['city_id'] > 0){
  515. $where6['city_id'] = (int)$post['city_id'];
  516. }*/
  517. //攻略和政策资讯
  518. $last = Db::name('seo_number')->where($where6)->order('number desc')->find();
  519. if(empty($last['number'])){
  520. $num = 1;
  521. }else{
  522. $num = (int)$last['number'] + 1;
  523. }
  524. $in_data = [
  525. "type" => 2, //产品类型
  526. "aid" => $aid, //实际的ID
  527. "tid" => (int)$post['typeid'], //属于哪个栏目的
  528. 'is_del' => 0,
  529. 'is_kan' => 0, // 0正常 1审核
  530. 'status' => 1,
  531. 'area_id' => 0, //(int)$post['province_id']
  532. 'city_id' => 0, //(int)$post['city_id']
  533. 'topid' => 0,
  534. 'parentid' => 0,
  535. 'number' => $num
  536. ];
  537. Db::name('seo_number')->insert($in_data);
  538. }else if((int)$newData['typeid'] === 1232){
  539. //评审政策
  540. //按区域
  541. $where6 = [
  542. "type" => 2,
  543. "tid" => (int)$post['typeid'],
  544. 'topid' => 0,
  545. 'parentid' => 0,
  546. 'area_id' => (int)$post['area_tag_id'], //(int)$post['province_id'] //如果是0的话 后续也不能改
  547. 'city_id' => 0, //(int)$post['city_id'] //如果是0的话 后续也不能改
  548. ];
  549. /*if((int)$post['city_id'] > 0){
  550. $where6['city_id'] = (int)$post['city_id'];
  551. }*/
  552. //攻略和政策资讯
  553. $last = Db::name('seo_number')->where($where6)->order('number desc')->find();
  554. if(empty($last['number'])){
  555. $num = 1;
  556. }else{
  557. $num = (int)$last['number'] + 1;
  558. }
  559. $in_data = [
  560. "type" => 2, //产品类型
  561. "aid" => $aid, //实际的ID
  562. "tid" => (int)$post['typeid'], //属于哪个栏目的
  563. 'is_del' => 0,
  564. 'is_kan' => 0, // 0正常 1审核
  565. 'status' => 1,
  566. 'area_id' => (int)$post['area_tag_id'], //(int)$post['province_id']
  567. 'city_id' => 0, //(int)$post['city_id']
  568. 'topid' => 0,
  569. 'parentid' => 0,
  570. 'number' => $num
  571. ];
  572. Db::name('seo_number')->insert($in_data);
  573. }else{
  574. //其他
  575. }
  576. // 生成静态页面代码
  577. $successData = [
  578. 'aid' => $aid,
  579. 'tid' => $post['typeid'],
  580. ];
  581. $this->success("操作成功!", null, $successData);
  582. }
  583. $this->error("操作失败!");
  584. }
  585. $typeid = input('param.typeid/d', 0);
  586. $assign_data['typeid'] = $typeid; // 栏目ID
  587. //列出产品
  588. $list = Db::name('arctype_cat')
  589. ->where('parent_id','=',$typeid)
  590. ->where('type','=','产品')
  591. ->where('is_del','=',0)
  592. ->order('id asc')
  593. ->select();
  594. //var_dump($list);
  595. $this->assign('pro_list',$list);
  596. //列出职称级别
  597. $level_group_list = Db::name('arctype')
  598. ->field('id,parent_id,typename')
  599. ->where('parent_id','=',53)
  600. ->where('is_del','=',0)
  601. ->order('id asc')
  602. ->select();
  603. //var_dump($list);
  604. $this->assign('level_group_list',$level_group_list);
  605. //列出
  606. $level_group_name = Db::name('archives')
  607. ->field('aid,typeid,title')
  608. ->where('typeid','=',$level_group_list[0]['id'])
  609. ->where('is_del','=',0)
  610. ->order('sort_order asc,aid asc')
  611. ->select();
  612. $this->assign('level_group_name',$level_group_name);
  613. $product_id = input('param.product_id/d', 0);
  614. //var_dump($product_id);
  615. $assign_data['product_id'] = $product_id; //关联产品ID 默认都是0
  616. //var_dump($typeid);
  617. if((int)$typeid === 126 || (int)$typeid === 825 || (int)$typeid === 826){
  618. //列出职称标签
  619. $product_tag = Db::name('archives')
  620. ->field('aid,typeid,title')
  621. ->where('typeid','=',58)
  622. ->where('is_del','=',0)
  623. ->order('sort_order asc,aid asc')
  624. ->select();
  625. }else{
  626. //列出职称标签
  627. $cat = Db::name('arctype')->where(['parent_id'=>369,'article_id'=>$typeid])->find();
  628. if(empty($cat)){
  629. $cat_id = 371;
  630. }else{
  631. $cat_id = $cat['id'];
  632. }
  633. $product_tag = Db::name('archives')
  634. ->field('aid,typeid,title')
  635. ->where('typeid','=',$cat_id)
  636. ->where('is_del','=',0)
  637. ->order('sort_order asc,aid asc')
  638. ->select();
  639. }
  640. $this->assign('product_tag',$product_tag);
  641. //调用区域信息
  642. $product_area = Db::name('citysite')->where(['level'=>1])->select();
  643. $this->assign('product_area_data',$product_area);
  644. // 栏目信息
  645. $arctypeInfo = Db::name('arctype')->find($typeid);
  646. $topid = $arctypeInfo['topid'];
  647. $assign_data['topid'] = $topid;
  648. //查询区域id
  649. $catid = $arctypeInfo['area_id'];
  650. if((int)$catid === 0){
  651. $catid = input('param.catid/d', 0);
  652. }
  653. $assign_data['catid'] = $catid;
  654. //var_dump($catid);
  655. /*允许发布文档列表的栏目*/ //加入区域
  656. $arctype_html = allow_release_arctype($typeid, array($this->channeltype),true,[],false,$catid);
  657. $assign_data['arctype_html'] = $arctype_html;
  658. /*--end*/
  659. // 阅读权限
  660. $arcrank_list = get_arcrank_list();
  661. $assign_data['arcrank_list'] = $arcrank_list;
  662. /*获取可显示的系统字段*/
  663. $condition['ifcontrol'] = 0;
  664. $condition['channel_id'] = $this->channeltype;
  665. $channelfield_row = Db::name('channelfield')->where($condition)->field('name,ifeditable')->getAllWithIndex('name');
  666. $assign_data['channelfield_row'] = $channelfield_row;
  667. /*--end*/
  668. /*模板列表*/
  669. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  670. $templateList = $archivesLogic->getTemplateList($this->nid);
  671. $this->assign('templateList', $templateList);
  672. /*--end*/
  673. /*默认模板文件*/
  674. $tempview = 'view_'.$this->nid.'.'.config('template.view_suffix');
  675. !empty($arctypeInfo['tempview']) && $tempview = $arctypeInfo['tempview'];
  676. $this->assign('tempview', $tempview);
  677. /*--end*/
  678. // 文档默认浏览量
  679. $globalConfig = tpCache('global');
  680. if (isset($globalConfig['other_arcclick']) && 0 <= $globalConfig['other_arcclick']) {
  681. $arcclick_arr = explode("|", $globalConfig['other_arcclick']);
  682. if (count($arcclick_arr) > 1) {
  683. $assign_data['rand_arcclick'] = mt_rand($arcclick_arr[0], $arcclick_arr[1]);
  684. } else {
  685. $assign_data['rand_arcclick'] = intval($arcclick_arr[0]);
  686. }
  687. }else{
  688. $arcclick_config['other_arcclick'] = '500|1000';
  689. tpCache('other', $arcclick_config);
  690. $assign_data['rand_arcclick'] = mt_rand(500, 1000);
  691. }
  692. // URL模式
  693. $tpcache = config('tpcache');
  694. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  695. /*文档属性*/
  696. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  697. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  698. $assign_data['channelRow'] = $channelRow;
  699. // 来源列表
  700. $system_originlist = tpSetting('system.system_originlist');
  701. $system_originlist = json_decode($system_originlist, true);
  702. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  703. $assign_data['system_originlist_0'] = !empty($system_originlist) ? $system_originlist[0] : "";
  704. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  705. // 多站点,当用站点域名访问后台,发布文档自动选择当前所属区域
  706. model('Citysite')->auto_location_select($assign_data);
  707. $this->assign($assign_data);
  708. return $this->fetch();
  709. }
  710. /**
  711. * 编辑
  712. */
  713. public function edit()
  714. {
  715. $admin_info = session('admin_info');
  716. $auth_role_info = $admin_info['auth_role_info'];
  717. $this->assign('auth_role_info', $auth_role_info);
  718. $this->assign('admin_info', $admin_info);
  719. if (IS_POST) {
  720. $post = input('post.');
  721. model('Archives')->editor_auto_210607($post);
  722. $post['aid'] = intval($post['aid']);
  723. $typeid = input('post.typeid/d', 0);
  724. /* 处理TAG标签 */
  725. if (!empty($post['tags_new'])) {
  726. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  727. unset($post['tags_new']);
  728. }
  729. $post['tags'] = explode(',', $post['tags']);
  730. $post['tags'] = array_unique($post['tags']);
  731. $post['tags'] = implode(',', $post['tags']);
  732. /* END */
  733. /*获取第一个html类型的内容,作为文档的内容来截取SEO描述*/
  734. $contentField = Db::name('channelfield')->where([
  735. 'channel_id' => $this->channeltype,
  736. 'dtype' => 'htmltext',
  737. ])->getField('name');
  738. $content = empty($post['addonFieldExt'][$contentField]) ? '' : htmlspecialchars_decode($post['addonFieldExt'][$contentField]);
  739. /*--end*/
  740. // 根据标题自动提取相关的关键字
  741. $seo_keywords = $post['seo_keywords'];
  742. if (!empty($seo_keywords)) {
  743. $seo_keywords = str_replace(',', ',', $seo_keywords);
  744. } else {
  745. // $seo_keywords = get_split_word($post['title'], $content);
  746. }
  747. // 自动获取内容第一张图片作为封面图
  748. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  749. $litpic = '';
  750. if ($is_remote == 1) {
  751. $litpic = $post['litpic_remote'];
  752. } else {
  753. $litpic = $post['litpic_local'];
  754. }
  755. if (empty($litpic)) {
  756. $litpic = get_html_first_imgurl($content);
  757. }
  758. $post['litpic'] = $litpic;
  759. /*是否有封面图*/
  760. if (empty($post['litpic'])) {
  761. $is_litpic = 0; // 无封面图
  762. } else {
  763. $is_litpic = !empty($post['is_litpic']) ? $post['is_litpic'] : 0; // 有封面图
  764. }
  765. // 勾选后SEO描述将随正文内容更新
  766. $basic_update_seo_description = empty($post['basic_update_seo_description']) ? 0 : 1;
  767. if (is_language()) {
  768. $langRow = \think\Db::name('language')->order('id asc')
  769. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  770. ->select();
  771. foreach ($langRow as $key => $val) {
  772. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description], $val['mark']);
  773. }
  774. } else {
  775. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description]);
  776. }
  777. /*--end*/
  778. // SEO描述
  779. $seo_description = '';
  780. if (!empty($basic_update_seo_description) || empty($post['seo_description'])) {
  781. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  782. } else {
  783. $seo_description = $post['seo_description'];
  784. }
  785. // --外部链接
  786. $jumplinks = '';
  787. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  788. if (intval($is_jump) > 0) {
  789. $jumplinks = $post['jumplinks'];
  790. }
  791. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  792. if ($post['type_tempview'] == $post['tempview']) {
  793. unset($post['type_tempview']);
  794. unset($post['tempview']);
  795. }
  796. // 同步栏目切换模型之后的文档模型
  797. $channel = Db::name('arctype')->where(['id'=>$typeid])->getField('current_channel');
  798. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  799. $htmlfilename = trim($post['htmlfilename']);
  800. if (!empty($htmlfilename)) {
  801. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  802. // $htmlfilename = strtolower($htmlfilename);
  803. //判断是否存在相同的自定义文件名
  804. $map = [
  805. 'aid' => ['NEQ', $post['aid']],
  806. 'htmlfilename' => $htmlfilename,
  807. 'lang' => $this->admin_lang,
  808. ];
  809. if (!empty($post['typeid'])) {
  810. $map['typeid'] = array('eq', $post['typeid']);
  811. }
  812. $filenameCount = Db::name('archives')->where($map)->count();
  813. if (!empty($filenameCount)) {
  814. $this->error("同栏目下,自定义文件名已存在!");
  815. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  816. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  817. }
  818. } else {
  819. // 处理外贸链接
  820. if (is_dir('./weapp/Waimao/')) {
  821. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  822. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'edit', $this->globalConfig);
  823. }
  824. }
  825. $post['htmlfilename'] = $htmlfilename;
  826. //做未通过审核文档不允许修改文档状态操作
  827. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  828. $old_archives_arcrank = Db::name('archives')->where(['aid' => $post['aid']])->getField("arcrank");
  829. if ($old_archives_arcrank < 0) {
  830. unset($post['arcrank']);
  831. }
  832. }
  833. // 副栏目
  834. if (isset($post['stypeid'])) {
  835. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  836. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  837. $post['stypeid'] = trim($post['stypeid'], ',');
  838. $post['stypeid'] = str_replace(",{$typeid},", ',', ",{$post['stypeid']},");
  839. $post['stypeid'] = trim($post['stypeid'], ',');
  840. }
  841. //查询排序 等级
  842. $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
  843. $ext = '';
  844. //获取文档文件后缀
  845. if(!empty($post['addonFieldExt']['down_eyou_remote'])){
  846. $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
  847. $ext = end($file);
  848. }else{
  849. //$ext = '';
  850. }
  851. if(!empty($post['addonFieldExt']['down_eyou_local'])){
  852. $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
  853. $ext = end($file);
  854. }else{
  855. //$ext = '';
  856. }
  857. //var_dump($post['addonFieldExt']);
  858. //var_dump($ext);die;
  859. // --存储数据
  860. $newData = array(
  861. 'typeid'=> $typeid,
  862. 'channel' => $channel,
  863. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  864. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  865. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  866. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  867. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  868. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  869. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  870. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  871. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  872. 'is_jump' => $is_jump,
  873. 'is_litpic' => $is_litpic,
  874. 'jumplinks' => $jumplinks,
  875. 'seo_keywords' => $seo_keywords,
  876. 'seo_description' => $seo_description,
  877. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  878. 'add_time' => strtotime($post['add_time']),
  879. 'update_time' => getTime(),
  880. 'product_id' => (int)$post['product_id'], //增加
  881. 'lunwen_id' => (int)$post['lunwen_id'], //增加
  882. 'level_group_id' => (int)$post['level_group_id'],
  883. 'level_id' => (int)$post['level_group_name'],
  884. 'level' => (int)$sort_order,
  885. 'product_tag_id' => (int)$post['product_tag_id'],
  886. 'area_tag_id' => (int)$post['area_tag_id'],
  887. 'ext' => $ext
  888. );
  889. $data = array_merge($post, $newData);
  890. if((int)$typeid === 126 || (int)$typeid === 825 || (int)$typeid === 826){
  891. //资料文档的时候
  892. //不更新 区域信息
  893. unset($data['province_id']);
  894. unset($data['city_id']);
  895. unset($data['area_id']);
  896. }
  897. if((int)$typeid === 117 || (int)$typeid === 115 || (int)$typeid === 111){
  898. //评审攻略和政策资讯 增加常见问题
  899. //不更新 区域信息
  900. unset($data['province_id']);
  901. unset($data['city_id']);
  902. unset($data['area_id']);
  903. }
  904. $arctype_par = Db::name('arctype')->field('id,parent_id')->where('id','=',$typeid)->find();
  905. if((int)$arctype_par['parent_id'] === 369){
  906. //文章标签
  907. //不更新 区域信息
  908. unset($data['province_id']);
  909. unset($data['city_id']);
  910. unset($data['area_id']);
  911. }
  912. //var_dump($post['addonFieldExt']);die;
  913. $r = Db::name('archives')->where([
  914. 'aid' => $data['aid'],
  915. 'lang' => $this->admin_lang,
  916. ])->update($data);
  917. if ($r) {
  918. // ---------后置操作
  919. model('Custom')->afterSave($data['aid'], $data, 'edit', $this->table);
  920. // ---------end
  921. adminLog('编辑文章:'.$data['title']);
  922. $numinfo = [
  923. //'is_del' => $data['is_del'],
  924. 'is_kan' => $data['arcrank'],
  925. //'status' => $data['status'],
  926. ];
  927. //文档aid 对应 序列号aid
  928. Db::name('seo_number')->where('aid','=',$data['aid'])->update($numinfo);
  929. // 生成静态页面代码
  930. $successData = [
  931. 'aid' => $data['aid'],
  932. 'tid' => $typeid,
  933. ];
  934. $this->success("操作成功!", null, $successData);
  935. }
  936. $this->error("操作失败!");
  937. }
  938. $assign_data = array();
  939. $id = input('id/d');
  940. $info = model('Custom')->getInfo($id, null, false);
  941. if (empty($info)) {
  942. $this->error('数据不存在,请联系管理员!');
  943. exit;
  944. }
  945. /*兼容采集没有归属栏目的文档*/
  946. if (empty($info['channel'])) {
  947. $channelRow = Db::name('channeltype')->field('id as channel')
  948. ->where('id',$this->channeltype)
  949. ->find();
  950. $info = array_merge($info, $channelRow);
  951. }
  952. /*--end*/
  953. $typeid = $info['typeid'];
  954. $assign_data['typeid'] = $typeid;
  955. //查找产品
  956. $list = Db::name('arctype_cat')
  957. ->where('parent_id','=',$typeid)
  958. ->where('type','=','产品')
  959. ->where('is_del','=',0)
  960. ->order('id asc')
  961. ->select();
  962. //var_dump($list);
  963. $this->assign('pro_list',$list);
  964. //列出职称级别
  965. $level_group_list = Db::name('arctype')
  966. ->field('id,parent_id,typename')
  967. ->where('parent_id','=',53)
  968. ->where('is_del','=',0)
  969. ->order('id asc')
  970. ->select();
  971. //var_dump($list);
  972. $this->assign('level_group_list',$level_group_list);
  973. //列出
  974. if((int)$info['level_group_id'] === 0){
  975. $level_group_id = $level_group_list[0]['id'];
  976. }else{
  977. $level_group_id = (int)$info['level_group_id'];
  978. }
  979. $level_group_name = Db::name('archives')
  980. ->field('aid,typeid,title')
  981. ->where('typeid','=',$level_group_id)
  982. ->where('is_del','=',0)
  983. ->order('sort_order asc,aid asc')
  984. ->select();
  985. $this->assign('level_group_name',$level_group_name);
  986. if((int)$typeid === 126 || (int)$typeid === 825 || (int)$typeid === 826){
  987. //列出职称标签
  988. $product_tag = Db::name('archives')
  989. ->field('aid,typeid,title')
  990. ->where('typeid','=',58)
  991. ->where('is_del','=',0)
  992. ->order('sort_order asc,aid asc')
  993. ->select();
  994. }else{
  995. //列出职称标签
  996. $cat = Db::name('arctype')->where(['parent_id'=>369,'article_id'=>$typeid])->find();
  997. if(empty($cat)){
  998. $cat_id = 371;
  999. }else{
  1000. $cat_id = $cat['id'];
  1001. }
  1002. $product_tag = Db::name('archives')
  1003. ->field('aid,typeid,title')
  1004. ->where('typeid','=',$cat_id)
  1005. ->where('is_del','=',0)
  1006. ->order('sort_order asc,aid asc')
  1007. ->select();
  1008. }
  1009. $this->assign('product_tag',$product_tag);
  1010. //调用区域信息
  1011. $product_area = Db::name('citysite')->where(['level'=>1])->select();
  1012. $this->assign('product_area_data',$product_area);
  1013. // 副栏目
  1014. $stypeid_arr = [];
  1015. if (!empty($info['stypeid'])) {
  1016. $info['stypeid'] = trim($info['stypeid'], ',');
  1017. $stypeid_arr = Db::name('arctype')->field('id,typename')->where(['id'=>['IN', $info['stypeid']],'is_del'=>0])->select();
  1018. }
  1019. $assign_data['stypeid_arr'] = $stypeid_arr;
  1020. // 栏目信息
  1021. $arctypeInfo = Db::name('arctype')->find($typeid);
  1022. $topid = $arctypeInfo['topid'];
  1023. $assign_data['topid'] = $topid;
  1024. $info['channel'] = $arctypeInfo['current_channel'];
  1025. if (is_http_url($info['litpic'])) {
  1026. $info['is_remote'] = 1;
  1027. $info['litpic_remote'] = handle_subdir_pic($info['litpic']);
  1028. } else {
  1029. $info['is_remote'] = 0;
  1030. $info['litpic_local'] = handle_subdir_pic($info['litpic']);
  1031. }
  1032. // SEO描述
  1033. // if (!empty($info['seo_description'])) {
  1034. // $info['seo_description'] = @msubstr(checkStrHtml($info['seo_description']), 0, config('global.arc_seo_description_length'), false);
  1035. // }
  1036. $assign_data['field'] = $info;
  1037. /*允许发布文档列表的栏目,文档所在模型以栏目所在模型为主,兼容切换模型之后的数据编辑*/
  1038. $arctype_html = allow_release_arctype($typeid, array($info['channel']));
  1039. $assign_data['arctype_html'] = $arctype_html;
  1040. /*--end*/
  1041. /*获取可显示的系统字段*/
  1042. $condition['ifcontrol'] = 0;
  1043. $condition['channel_id'] = $this->channeltype;
  1044. $channelfield_row = Db::name('channelfield')->where($condition)->field('name,ifeditable')->getAllWithIndex('name');
  1045. $assign_data['channelfield_row'] = $channelfield_row;
  1046. /*--end*/
  1047. // 阅读权限
  1048. $arcrank_list = get_arcrank_list();
  1049. $assign_data['arcrank_list'] = $arcrank_list;
  1050. /*模板列表*/
  1051. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  1052. $templateList = $archivesLogic->getTemplateList($this->nid);
  1053. $this->assign('templateList', $templateList);
  1054. /*--end*/
  1055. /*默认模板文件*/
  1056. $tempview = $info['tempview'];
  1057. empty($tempview) && $tempview = $arctypeInfo['tempview'];
  1058. $this->assign('tempview', $tempview);
  1059. /*--end*/
  1060. // URL模式
  1061. $tpcache = config('tpcache');
  1062. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  1063. /*文档属性*/
  1064. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  1065. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  1066. $assign_data['channelRow'] = $channelRow;
  1067. // 来源列表
  1068. $system_originlist = tpSetting('system.system_originlist');
  1069. $system_originlist = json_decode($system_originlist, true);
  1070. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  1071. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  1072. $this->assign($assign_data);
  1073. return $this->fetch();
  1074. }
  1075. /**
  1076. * 删除
  1077. */
  1078. public function del()
  1079. {
  1080. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  1081. $archivesLogic->del([], 0, 'custom');
  1082. }
  1083. //帮助
  1084. public function help()
  1085. {
  1086. $system_originlist = tpSetting('system.system_originlist');
  1087. $system_originlist = json_decode($system_originlist, true);
  1088. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  1089. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  1090. $this->channeltype = input('param.channel/d', 0);
  1091. $assign_data['channel'] = $this->channeltype ;
  1092. $this->assign($assign_data);
  1093. return $this->fetch();
  1094. }
  1095. }