初步修改部分文件
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
use \think\facade\Db;
|
||||
// 应用公共文件
|
||||
|
||||
if (!function_exists('system_config_more'))
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -521,6 +521,28 @@ function tpl_get_friend_link($type,$row){
|
|||
return $flinkListTemp;
|
||||
}
|
||||
|
||||
if (!function_exists('web_config'))
|
||||
{
|
||||
/**
|
||||
* 获取系统配置值
|
||||
* @param string $formName
|
||||
* @return string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author 李玉坤
|
||||
* @date 2021-02-14 22:41
|
||||
*/
|
||||
function web_config(string $formName): string
|
||||
{
|
||||
$webConfig = cache('webConfig');
|
||||
if (empty($webConfig)){
|
||||
$webConfig = Db::name('system_config')->where("status",1)->fetchSql(true)->column('value', 'form_name');
|
||||
cache('webConfig',$webConfig);
|
||||
}
|
||||
return $webConfig[$formName]??'';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 模板-文章标签
|
||||
|
|
@ -642,7 +664,7 @@ function IsActiveNav($curr_cid=false,$cid=false)
|
|||
}
|
||||
|
||||
//判断是否在同一栏目树下。
|
||||
$parent_id=cache('CURR_CATEGORY_PATENT_ID');
|
||||
$parent_id=cache('curr_category_patent_id');
|
||||
|
||||
$parent_id=explode(',',$parent_id);
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
namespace app\index\controller;
|
||||
use think\facade\Db;
|
||||
use think\facade\Log;
|
||||
|
||||
/**
|
||||
* 应用入口
|
||||
|
|
@ -24,7 +25,6 @@ class Article extends Base
|
|||
$id=input('id/d');
|
||||
//栏目分类标识
|
||||
$name=input('name');
|
||||
// isActiveNav($id);
|
||||
|
||||
if($id){
|
||||
//获取分类信息
|
||||
|
|
@ -34,7 +34,6 @@ class Article extends Base
|
|||
//接收name字段,当name不为空的时候,通过name查询分类,一般name会用于伪静态
|
||||
$dc=get_document_category_by_name($name);
|
||||
}
|
||||
|
||||
if(!$dc){
|
||||
$this->error('栏目不存在或已删除!');
|
||||
}
|
||||
|
|
@ -43,9 +42,8 @@ class Article extends Base
|
|||
|
||||
//栏目存在 增加访问量
|
||||
Db::name('document_category')->where('id',$id)->inc('view')->update();
|
||||
|
||||
//判断后台统计配置是否开启 1 开启
|
||||
if(cache('DB_CONFIG_DATA_INDEX')["WEB_TONGJI"]==1){
|
||||
if($this->systemConfig["web_statistics"] ==1){
|
||||
//统计url
|
||||
$this->urlrecord($dc['title']);
|
||||
}
|
||||
|
|
@ -81,10 +79,9 @@ class Article extends Base
|
|||
$this->assign('id',$id);
|
||||
//当前页面所属分类id
|
||||
$this->assign('cid',$id);
|
||||
|
||||
//缓存当前页面栏目分类树ids
|
||||
cache('CURR_CATEGORY_PATENT_ID',$dc['parent_id']?$dc['parent_id'].','.$id:$id);
|
||||
return $this->fetch(TPL.$listTmp);
|
||||
cache('curr_category_patent_id',$dc['parent_id']?$dc['parent_id'].','.$id:$id);
|
||||
return $this->fetch($listTmp);
|
||||
}
|
||||
|
||||
public function detail()
|
||||
|
|
@ -94,7 +91,6 @@ class Article extends Base
|
|||
if(!$id){
|
||||
$this->error('参数错误!');
|
||||
}
|
||||
|
||||
//获取该文章
|
||||
$article=Db::name('document')->where('status',1)->where('id',$id)->find();
|
||||
if(!$article){
|
||||
|
|
@ -135,18 +131,17 @@ class Article extends Base
|
|||
$this->assign('cid',$article['category_id']);
|
||||
|
||||
//缓存当前页面栏目分类树ids
|
||||
cache('CURR_CATEGORY_PATENT_ID',$dc['parent_id']?$dc['parent_id'].','.$article['category_id']:$article['category_id']);
|
||||
cache('curr_category_patent_id',$dc['parent_id']?$dc['parent_id'].','.$article['category_id']:$article['category_id']);
|
||||
|
||||
|
||||
//设置文章的url
|
||||
$article['link_str']=aurl($article);
|
||||
//判断后台统计配置是否开启 1 开启
|
||||
if(cache('DB_CONFIG_DATA_INDEX')["WEB_TONGJI"]==1){
|
||||
if($this->systemConfig["web_statistics"] ==1){
|
||||
//统计url
|
||||
$this->urlrecord($article['title']);
|
||||
}
|
||||
|
||||
trace('详情页模板路径:'.TPL.$detailTmp,'debug');
|
||||
Log::info('详情页模板路径:'.TPL.$detailTmp);
|
||||
return $this->fetch(TPL.$detailTmp);
|
||||
}
|
||||
|
||||
|
|
@ -159,18 +154,15 @@ class Article extends Base
|
|||
if(!isset($zzField['tpl'])){
|
||||
$this->error('没有指定模板文件!');
|
||||
}
|
||||
|
||||
//将参数传递到模板页面
|
||||
$this->assign('zzField',$zzField);
|
||||
|
||||
//模板兼容性标签
|
||||
$this->assign('id',false);
|
||||
$this->assign('cid',false);
|
||||
//读取模板配置,获得模板后缀名
|
||||
$view_suffix=config('view.view_suffix');
|
||||
trace('详情页模板路径:'.TPL.'content_'.$zzField['tpl'].'.'.$view_suffix,'debug');
|
||||
|
||||
cache('CURR_CATEGORY_PATENT_ID',false);
|
||||
$view_suffix=config('view.view_suffix');
|
||||
Log::info('详情页模板路径:'.TPL.'content_'.$zzField['tpl'].'.'.$view_suffix);
|
||||
cache('curr_category_patent_id',false);
|
||||
return $this->fetch(TPL.'content_'.$zzField['tpl'].'.'.$view_suffix);
|
||||
}
|
||||
|
||||
|
|
@ -184,24 +176,21 @@ class Article extends Base
|
|||
if(!mb_check_encoding($tag,'utf-8')){
|
||||
$tag=iconv('gbk', 'utf-8', $tag);
|
||||
}
|
||||
|
||||
$zzField['id']='0';
|
||||
$zzField['title']=$tag;
|
||||
$zzField['meta_title']=$tag;
|
||||
$zzField['keywords']=cache('DB_CONFIG_DATA_INDEX')['WEB_SITE_KEYWORD'];
|
||||
$zzField['description']=cache('DB_CONFIG_DATA_INDEX')['WEB_SITE_DESCRIPTION'];
|
||||
$zzField['position']='<a href="/">首页</a> > <a>'.$tag.'</a>';
|
||||
$zzField['title'] = $tag;
|
||||
$zzField['meta_title'] = $tag;
|
||||
$zzField['keywords'] = $this->systemConfig['keywords'];
|
||||
$zzField['description'] = $this->systemConfig['description'];
|
||||
$zzField['position'] ='<a href="/">首页</a> > <a>'.$tag.'</a>';
|
||||
$this->assign('zzField',$zzField);
|
||||
$this->assign('tag',$tag);
|
||||
|
||||
//清除可能存在的栏目分类树id
|
||||
cache('CURR_CATEGORY_PATENT_ID',false);
|
||||
|
||||
cache('curr_category_patent_id',false);
|
||||
//模板兼容性标签
|
||||
$this->assign('id',false);
|
||||
$this->assign('cid',false);
|
||||
$view_suffix=config('view.view_suffix');
|
||||
return $this->fetch(TPL.'tag.'.$view_suffix);
|
||||
return $this->fetch();
|
||||
}
|
||||
|
||||
//搜索页面
|
||||
|
|
@ -214,23 +203,19 @@ class Article extends Base
|
|||
if(!mb_check_encoding($kw,'utf-8')){
|
||||
$kw=iconv('gbk', 'utf-8', $kw);
|
||||
}
|
||||
|
||||
$zzField['id']='0';
|
||||
$zzField['title']='搜索';
|
||||
$zzField['meta_title']='搜索';
|
||||
$zzField['keywords']=cache('DB_CONFIG_DATA_INDEX')['WEB_SITE_KEYWORD'];
|
||||
$zzField['description']=cache('DB_CONFIG_DATA_INDEX')['WEB_SITE_DESCRIPTION'];
|
||||
$zzField['position']='<a href="/">首页</a> > <a>搜索</a>';
|
||||
$zzField['id'] = '0';
|
||||
$zzField['title'] = '搜索';
|
||||
$zzField['meta_title'] = '搜索';
|
||||
$zzField['keywords'] = $this->systemConfig['keywords'];
|
||||
$zzField['description'] = $this->systemConfig['description'];
|
||||
$zzField['position'] = '<a href="/">首页</a> > <a>搜索</a>';
|
||||
$this->assign('zzField',$zzField);
|
||||
$this->assign('kw',$kw);
|
||||
|
||||
//清除可能存在的栏目分类树id
|
||||
cache('CURR_CATEGORY_PATENT_ID',false);
|
||||
|
||||
cache('curr_category_patent_id',false);
|
||||
//模板兼容性标签
|
||||
$this->assign('id',false);
|
||||
$this->assign('cid',false);
|
||||
$view_suffix=config('view.view_suffix');
|
||||
return $this->fetch(TPL.'search.'.$view_suffix);
|
||||
return $this->fetch();
|
||||
}
|
||||
}
|
||||
|
|
@ -18,6 +18,8 @@ class Base extends BaseController
|
|||
* @var array
|
||||
*/
|
||||
protected $middleware = [];
|
||||
//系统配置
|
||||
protected $systemConfig = [];
|
||||
|
||||
// 初始化
|
||||
protected function initialize(){
|
||||
|
|
@ -28,11 +30,13 @@ class Base extends BaseController
|
|||
$systemConfig = SystemConfig::getSystemConfigValues();
|
||||
cache('systemConfig',$systemConfig);
|
||||
}
|
||||
$this->systemConfig = $systemConfig;
|
||||
//系统模板目录,兼容模板标签 include
|
||||
$templatePath = public_path('template'.$systemConfig['web_template'].'/');
|
||||
$templatePath = public_path(config('view.view_path'));
|
||||
if (!file_exists($templatePath)){
|
||||
//检查主题目录是否存在,不存在则更新为默认目录
|
||||
$templatePath = public_path('template/default/');
|
||||
config(['view_path'=>'./template/default/'],'view');
|
||||
}
|
||||
define('TPL',$templatePath);
|
||||
//判断是否关闭站点。
|
||||
|
|
@ -85,7 +89,6 @@ class Base extends BaseController
|
|||
} else {
|
||||
$this->request->setRoot('/index.php');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//统计url
|
||||
|
|
|
|||
|
|
@ -22,17 +22,15 @@ class Index extends Base
|
|||
public function index()
|
||||
{
|
||||
//判断后台统计配置是否开启 1 开启
|
||||
if( cache('DB_CONFIG_DATA_INDEX')["WEB_TONGJI"]==1){
|
||||
if($this->systemConfig["web_statistics"] ==1){
|
||||
//统计url
|
||||
$this->urlrecord('网站首页');
|
||||
}
|
||||
//清除可能存在的栏目分类树id
|
||||
cache('CURR_CATEGORY_PATENT_ID',false);
|
||||
cache('curr_category_patent_id',false);
|
||||
//模板兼容性标签
|
||||
$this->assign('id',false);
|
||||
$this->assign('cid',false);
|
||||
//读取模板配置,获得模板后缀名
|
||||
$view_suffix=config('view.view_suffix');
|
||||
return $this->fetch(TPL.'index.'.$view_suffix);
|
||||
return $this->fetch();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,724 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<title>行业字典管理 - {:web_config("title")}</title>
|
||||
<title>轻烟随风的博客blog</title>
|
||||
<meta name="keywords" content="轻烟随风,blog,博客,oracle,pl/sql,erp,数据库,sql server,EBS,ERP系统,甲骨文,R12">
|
||||
<meta name="description" content="oracle EBS等ERP系统上线,实施,维护过程中的心得,常见的开发工具的使用">
|
||||
|
||||
{include file="public/head" /}
|
||||
<link rel="stylesheet" href="/template/default/lib/nprogress/nprogress.min.css">
|
||||
<script src="/template/default/lib/nprogress/nprogress.min.js"></script>
|
||||
<script src="/template/default/js/tools.js"></script>
|
||||
<style>
|
||||
.post-content-post img {
|
||||
border-radius: 10px;
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
post-content-content img {
|
||||
box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
|
||||
}
|
||||
</style>
|
||||
<script src="/template/default//js/qrcode.min.js"></script>
|
||||
<script src="/template/default//js/clipboard.min.js"></script>
|
||||
<link rel="stylesheet" href="/template/default//css/comment-module.css">
|
||||
<link rel="stylesheet" href="/template/default//css/post-content.css">
|
||||
<link rel="stylesheet" href="/template/default//lib/fancybox/jquery.fancybox.min.css">
|
||||
<script src="/template/default//lib/fancybox/jquery.fancybox.min.js"></script>
|
||||
<script src="/template/default//lib/fancybox/init.js"></script>
|
||||
<script src="/template/default//lib/highlight/highlight.min.js"></script>
|
||||
<link rel="stylesheet" href="/template/default//lib/highlight/style/corepress-dark.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>NProgress.start();</script>
|
||||
<div id="app">
|
||||
{include file="public/header" /}
|
||||
<div class="top-divider"></div>
|
||||
<main class="container">
|
||||
<div class="html-main">
|
||||
<div class="post-main">
|
||||
<div class="post-content-body">
|
||||
<div class="crumbs-plane-body">
|
||||
<div class="crumbs-plane">
|
||||
<span class="corepress-crumbs-ul"><li><a href="../index.html"><i class="fas fa-home"></i> 主页</a></li><li><a
|
||||
href="../category/oracle-finance/index.html"
|
||||
rel="category tag">Oracle-Finance-财务</a></li></span></div>
|
||||
</div>
|
||||
|
||||
<div class="post-content">
|
||||
<h1 class="post-title">
|
||||
oracle-EBS-AP应付采购单匹配付款经历主要表(多图) </h1>
|
||||
<div class="post-info">
|
||||
<div class="post-info-left">
|
||||
<a class="nickname url fn j-user-card" data-user="1"
|
||||
href="../author/james/index.html"><i class="fa fa-user" aria-hidden="true"></i>轻烟随风
|
||||
</a>
|
||||
<span class="dot">•</span>
|
||||
<time class="entry-date published" datetime="2020-12-29T16:31:24+08:00>" pubdate=""><i
|
||||
class="far fa-clock"></i>
|
||||
2020年12月29日 pm4:31
|
||||
</time>
|
||||
<span class="dot">•</span><i class="fas fa-folder"></i>
|
||||
<a href="../category/oracle-finance/index.html" rel="category tag">Oracle-Finance-财务</a>
|
||||
<span class="dot">•</span>
|
||||
<span><i class="fa fa-eye" aria-hidden="true"></i>103 阅读</span>
|
||||
</div>
|
||||
<div class="post-info-right">
|
||||
<span title="关闭或显示侧边栏" class="post-info-switch-sidebar post-info-switch-sidebar-show"><i
|
||||
class="fas fa-toggle-on"></i></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post-content-post">
|
||||
<div class="post-content-content">
|
||||
<h1>oracle-EBS-AP应付采购单匹配付款经历主要表(多图)</h1>
|
||||
<p>本章接着之前的一篇采购订单:</p>
|
||||
<p> </p>
|
||||
<p>一、创建AP发票</p>
|
||||
<div id="attachment_335" style="width: 826px" class="wp-caption alignnone"><img
|
||||
aria-describedby="caption-attachment-335" loading="lazy"
|
||||
src="../wp-content/uploads/2020/12/oracle-ap-001-e1609251106356.png"
|
||||
alt="oracle-ap-EBS 发票" width="816" height="430" class=" wp-image-335">
|
||||
<p id="caption-attachment-335" class="wp-caption-text">oracle-ap-EBS 发票</p></div>
|
||||
<p><strong>AP_BATCHES_ALL</strong> <br>--批名表 select * from AP_BATCHES_ALL where
|
||||
batch_id=160183<br><strong>ap_invoices_all</strong> <br>--发票主表 select * from
|
||||
ap_invoices_all where INVOICE_NUM ='28-12-2020'<br>--batch_id = AP_BATCHES_ALL
|
||||
.batch_id<br><br></p>
|
||||
<p>二、匹配采购订单</p>
|
||||
<p><img loading="lazy" src="../wp-content/uploads/2020/12/oracle-ap-002.png" alt=""
|
||||
width="1006" height="602" class="alignnone size-full wp-image-354"></p>
|
||||
<div id="attachment_358" style="width: 998px" class="wp-caption alignnone"><img
|
||||
aria-describedby="caption-attachment-358" loading="lazy"
|
||||
src="../wp-content/uploads/2020/12/oracle-ap-003.png" alt="oracle-ap"
|
||||
width="988" height="562" class="size-full wp-image-358">
|
||||
<p id="caption-attachment-358" class="wp-caption-text">oracle-ap</p></div>
|
||||
<p>
|
||||
<strong>ap_invoice_lines_all <br></strong>--发票明细行<strong><br></strong><strong></strong><strong></strong>--select
|
||||
* from ap_invoice_lines_all where invoice_id in (5361405)<br>--invoice_id =
|
||||
<strong>ap_invoices_all</strong> .invoice_id <br><strong>ap_invoice_distributions_all</strong>
|
||||
<br>--发票分配<br>--select * from ap_invoice_distributions_all AID where
|
||||
AID.invoice_id in ( 5361405)<br>--MATCH_STATUS_FLAG:A Validated (it used to be
|
||||
called Approved) N or NULL - Never validated T - Tested but not validated</p>
|
||||
<p>三、付款</p>
|
||||
<div id="attachment_362" style="width: 1002px" class="wp-caption alignnone"><img
|
||||
aria-describedby="caption-attachment-362" loading="lazy"
|
||||
src="../wp-content/uploads/2020/12/oracle-ap-004.png" alt="oracle-ap ebs"
|
||||
width="992" height="657" class="size-full wp-image-362">
|
||||
<p id="caption-attachment-362" class="wp-caption-text">oracle-ap ebs 发票付款</p></div>
|
||||
<p><strong>AP_PAYMENT_SCHEDULES_ALL </strong><br>---付款排程主档<br>-- select * from
|
||||
AP_PAYMENT_SCHEDULES_ALL where INVOICE_ID in (5361405) <br>--invoice_id=<strong>ap_invoices_all</strong>
|
||||
.invoice_id<br>----该表一张AP
|
||||
应付发票对应一条或多条记录(根据付款条件而定,一次到期对应一条记录),记录了剩余金额amount_remaining、发票原始金额gross_amount、付款状态payment_status_flag(N从未付款、Y全部付款、P部分付款)<br><strong>AP_INVOICE_PAYMENTS_ALL</strong>
|
||||
<br>--付款冲发票明细,对应多个invoice,<br>--select * from AP_INVOICE_PAYMENTS_ALL where
|
||||
INVOICE_ID in (5361405)<br>--CHECK_ID =AP_CHECKS_ALL.CHECK_ID <br>--INVOICE_ID=AP_INVOICES_ALL.INVOICE_ID<br><strong>AP_CHECKS_ALL</strong>
|
||||
<br>--付款文件头<br>--CHECK_ID =<strong>AP_INVOICE_PAYMENTS_ALL</strong> .CHECK_ID <br>--select
|
||||
* from AP_CHECKS_ALL where CHECK_ID =2993939</p>
|
||||
</div>
|
||||
|
||||
<div class="post-end-tools">
|
||||
<div class="post-copyright">
|
||||
----欢迎转载----
|
||||
</div>
|
||||
<div class="post-end-dividing">
|
||||
THE END
|
||||
</div>
|
||||
<div class="post-tags">
|
||||
<span class="post-tags-icon"><i class="fas fa-tags"></i></span><a
|
||||
href="../tag/ebs/index.html" rel="tag">EBS</a><a href="../tag/oracle/index.html"
|
||||
rel="tag">oracle</a></div>
|
||||
|
||||
<div class="post-end-tool-btns">
|
||||
<div class="post-share-btn post-end-tool-btn-item"
|
||||
onclick="showplane('.post-share-btn','#share-plane',event)">
|
||||
<svg class="icon" viewbox="0 0 1024 1024">
|
||||
<path d="M793.472 102.208c-70.592 0-128 57.408-128 128 0 7.744 0.96 15.232 2.304 22.656L273.6 422.976C250.368 399.04 217.92 384 181.952 384c-70.592 0-128 57.408-128 128 0 70.592 57.408 128 128 128 22.912 0 44.096-6.592 62.72-17.152l289.088 180.992c-4.672 13.312-7.744 27.392-7.744 42.24 0 70.592 57.408 128 128 128s128-57.408 128-128-57.408-128-128-128c-32.512 0-61.888 12.544-84.48 32.64L291.712 576.832C302.976 557.696 309.952 535.744 309.952 512c0-11.456-1.984-22.336-4.8-32.896l389.76-168.32c23.488 28.672 58.752 47.36 98.624 47.36 70.592 0 128-57.408 128-128S864.064 102.208 793.472 102.208zM117.952 512c0-35.264 28.736-64 64-64s64 28.736 64 64-28.736 64-64 64S117.952 547.264 117.952 512zM654.016 782.144c35.328 0 64 28.672 64 64s-28.672 64-64 64-64-28.672-64-64S618.688 782.144 654.016 782.144zM793.472 294.208c-35.328 0-64-28.736-64-64s28.672-64 64-64 64 28.736 64 64S828.8 294.208 793.472 294.208z"></path>
|
||||
</svg>
|
||||
分享
|
||||
</div>
|
||||
<div class="post-qrcode-btn post-end-tool-btn-item"
|
||||
onclick="showplane('.post-qrcode-btn','#qrcode-plane',event)">
|
||||
<svg t="1599190411371" class="icon" viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="2306" width="200" height="200">
|
||||
<path d="M742.8 121.5c-2.3 0.3-4.7 0.1-7 0.1-38 0-76-0.1-114 0.1-11 0-21.9 1.4-32.4 5.1-18.6 6.5-29.8 19.5-34.4 38.4-1.7 7-2.4 14.1-2.4 21.3 0 67.2-0.1 134.3 0.1 201.5 0 13.8 0.9 27.6 6.2 40.8 6.9 17.1 19.7 27.2 37.3 31.7 6.3 1.6 12.8 2.2 19.3 2.2h218c8.3 0 16.6-0.7 24.8-2.3 24.4-4.5 40.4-20.7 44.9-45 0.4-2.2-0.4-5.2 2.9-6.2v-232c-0.4-0.4-0.5-0.9-0.5-1.5-1.5-4.8-1.7-9.8-3.3-14.7-7.1-21-21.7-33.4-42.8-38.8-6.4-1.6-12.8-2.4-19.5-2.1-1.3 0.1-3 1-3.9-0.9h-89c-0.4 2.6-2.7 2.1-4.3 2.3z m98.7 40.7c4 0 8.1 0.9 11.9 2.1 6.9 2.2 10.7 7.6 10.7 15.1 0 74.8 0.1 149.6-0.1 224.4 0 11.2-8.6 18-21.1 18.1-38.2 0.3-76.3 0.1-114.5 0.1h-113c-4.5 0-8.6-1.3-12.7-2.7-8.5-3.1-9.6-10.5-9.7-17.9-0.2-37.5-0.1-75-0.1-112.5V183.4c0-6.5 1.5-12.5 6.9-17 4.6-3.8 10.3-4.3 15.6-4.3 75.4-0.1 150.8 0 226.1 0.1z"
|
||||
p-id="2307"></path>
|
||||
<path d="M742 120c-39.5 0.1-79 0.1-118.4 0.1-9.4 0-18.6 1-27.7 3.1-11.6 2.7-22.1 7.7-30 16.7-10.6 12.1-14.8 26.9-14.8 42.6-0.2 69.6-0.2 139.3 0 208.9 0 9.1 0.7 18.3 2.8 27.2 2.8 11.7 7.6 22.5 16.7 30.5 11.7 10.3 25.9 15 41.5 15 74.1 0.1 148.3 0.1 222.4 0 9.3 0 18.7-0.5 27.7-3 19-5.4 33.6-15.9 40-35.8 1.7-5.3 1.8-10.9 3.8-16.1-3.2 1-2.5 4-2.9 6.2-4.5 24.4-20.5 40.5-44.9 45-8.2 1.5-16.5 2.3-24.8 2.3h-218c-6.5 0-13-0.6-19.3-2.2-17.5-4.5-30.4-14.6-37.3-31.7-5.3-13.1-6.2-27-6.2-40.8-0.2-67.2-0.1-134.3-0.1-201.5 0-7.2 0.7-14.3 2.4-21.3 4.6-18.9 15.8-31.9 34.4-38.4 10.5-3.7 21.4-5 32.4-5.1 38-0.2 76-0.1 114-0.1 2.3 0 4.7 0.2 7-0.1 1.7-0.2 3.9 0.2 4.2-2.4-1.2 2.1-3.2 0.9-4.9 0.9zM120.6 410.3c2 12.5 5.5 24.4 14.3 34 11.5 12.7 26.5 18 43 18.1 75.1 0.3 150.2 0.3 225.4 0 9.4 0 18.9-1 28.1-3.9 24.5-7.7 39.1-27.3 39.1-53.1 0-74 0-147.9 0.1-221.9 0-6.4-0.8-12.6-2.4-18.8-5.8-22.4-24.5-39.1-47.5-42.3-4.1-0.6-8.2-1.1-12.4-1.1-2 0-4.5 0.6-5.2-2.4h-89c-1.3 2.1-3.3 0.9-4.9 0.9-41.1 0.1-82.2-0.2-123.3 0.2-14.8 0.1-29.2 2.6-42.2 10.7-12.5 7.8-19.8 19.1-23.7 33-0.8 2.7-0.2 5.7-1.9 8.2v233c2.9 0.9 2.2 3.5 2.5 5.4z m39.5-231c0-8.1 6.2-14.6 14.5-16.3 4.4-0.9 8.8-1 13.2-1h219c4.3 0 8.4 0.8 12.4 2 7.5 2.4 10.8 6.9 10.8 14.6v225.5c0 8.2-3.8 13.3-11.6 15.9-4 1.3-8.1 2.1-12.4 2-37.2-0.1-74.3-0.1-111.5-0.1-37.7 0-75.3 0.1-113-0.1-6.3 0-12.6-0.9-17.3-6.1-2.7-3-4.1-6.3-4.1-10.1-0.1-75.3-0.1-150.8 0-226.3z"
|
||||
p-id="2308"></path>
|
||||
<path d="M119 407.5c0.1 8.9 2.6 17.3 6.4 25.1 10.4 21.4 28.9 31 51.6 31.2 74.5 0.6 149 0.2 223.4 0.2 9.3 0 18.6-0.8 27.7-3 27.1-6.7 43.6-26.4 43.8-54.4 0.5-73.8 0.2-147.6 0.2-221.4 0-4.9 0-9.8-0.9-14.7-3-16.2-10.7-29.4-24.2-39-11-7.8-23.5-11-36.9-11.4-2.3-0.1-4.9 1.2-6.9-0.9 0.7 3 3.3 2.4 5.2 2.4 4.2 0 8.3 0.6 12.4 1.1 23 3.2 41.7 19.9 47.5 42.3 1.6 6.2 2.4 12.4 2.4 18.8-0.1 74 0 147.9-0.1 221.9 0 25.7-14.6 45.3-39.1 53.1-9.2 2.9-18.7 3.9-28.1 3.9-75.1 0.2-150.2 0.3-225.4 0-16.5-0.1-31.4-5.4-43-18.1-8.8-9.7-12.3-21.5-14.3-34-0.3-1.9 0.4-4.6-2.6-5.2 1.3 0.1 0.9 1.3 0.9 2.1zM191.8 882.7c2.1-0.3 4.3-0.1 6.5-0.1h206c8.4 0 16.6-1 24.7-3.1 25.5-6.6 41.4-26.9 41.5-53.2 0.1-25.3 0-50.7 0-76v-148c0-32.3-21.4-56.2-53.6-59.7-11.4-1.2-22.9-1.7-34.4-2-34.5-0.7-69 0.5-103.4 1.3-33 0.8-66 0.2-98.9 0.7-11.5 0.2-22.6 2.7-32.7 8.1-13.6 7.2-21.9 18.5-25.7 33.4-0.7 2.8-0.1 6.5-3.7 8v234c2 5.5 2.2 11.4 3.9 17.1 5.9 20.7 19.4 33.3 39.8 38.9 6.5 1.8 13.2 2.3 19.9 2.1 1.4 0 3.3-1.1 4.4 0.9h2c0.2-2.3 2.1-2.2 3.7-2.4z m-11.4-40.6c-12.2 0-20.7-6.6-20.6-20.5 0.4-73.3 0.2-146.6 0.1-220 0-11.8 7-18.1 18.3-18.5 74.6-2.4 149.1-0.5 223.7-0.8 6.4 0 13.4-0.4 19.6 3 5.4 3 8.5 7.2 8.5 13.7-0.1 37.5 0 75 0 112.5 0 37.2-0.2 74.3 0.1 111.5 0.1 12.1-7.8 17.6-18.7 19.3-8.6 1.3-17 0-25.5-0.1-68.5-0.2-137-0.1-205.5-0.1z"
|
||||
p-id="2309"></path>
|
||||
<path d="M193.5 884.2c67.8-0.1 135.7-0.1 203.5 0 9.4 0 18.7-0.2 28-2.1 12.5-2.5 23.8-7.8 32.5-17.1 9.7-10.4 14.5-23.4 14.5-37.6 0.2-74.3 0.1-148.7 0.1-223 0-6.3-0.4-12.4-2-18.5-5.3-19.9-17.3-33.7-36.7-41.3-13.3-5.2-27.3-5-41-5.3-23.1-0.5-46.2-0.9-69.3 0.5-19 1.2-38.2 0.3-57.3 1-27.6 0.9-55.3 0.3-83 0.2-6.4 0-12.7 0.6-19 2-18.4 4.2-32.5 13.8-40.6 31.3-2.6 5.7-2.8 12-5.2 17.7 3.7-1.5 3-5.2 3.7-8 3.8-14.9 12.2-26.2 25.7-33.4 10.2-5.4 21.2-7.9 32.7-8.1 33-0.5 65.9 0.1 98.9-0.7 34.5-0.8 68.9-2 103.4-1.3 11.5 0.2 23 0.7 34.4 2 32.2 3.5 53.5 27.4 53.6 59.7v148c0 25.3 0.1 50.7 0 76-0.2 26.4-16 46.6-41.5 53.2-8.1 2.1-16.3 3.1-24.7 3.1h-206c-2.2 0-4.3-0.1-6.5 0.1-1.6 0.2-3.5 0-3.7 2.4 1.5-1.9 3.7-0.8 5.5-0.8z"
|
||||
p-id="2310"></path>
|
||||
<path d="M143.6 130.9c13-8 27.4-10.6 42.2-10.7 41.1-0.4 82.2-0.1 123.3-0.2 1.6 0 3.6 1.2 4.9-0.9-1.7 1-3.6 0.5-5.4 0.5-44.8 0.3-89.6-0.8-134.4 0.6-18.9 0.6-34.9 8.1-46.5 23.6-6.3 8.4-9.1 18-9.7 28.3 1.8-2.4 1.2-5.4 1.9-8.2 4-13.9 11.2-25.2 23.7-33zM840 120c6.6-0.3 13.1 0.5 19.5 2.1 21 5.4 35.7 17.8 42.8 38.8 1.6 4.8 1.8 9.9 3.3 14.7v-0.4c0.4-28.1-24.4-53.2-52.7-55.3-5.6-0.4-11.2 0.5-16.8-0.9 0.8 2.1 2.6 1.1 3.9 1zM181.6 884.2c-6.7 0.2-13.4-0.3-19.9-2.1-20.4-5.6-33.9-18.2-39.8-38.9-1.6-5.7-1.8-11.6-3.9-17.1 1.1 5.3 0.8 10.8 2.1 16.1 5.5 22.8 25.5 40.6 48.6 42 5.8 0.4 11.6-0.6 17.3 0.8-1.1-1.9-3-0.9-4.4-0.8z"
|
||||
p-id="2311"></path>
|
||||
<path d="M608.4 667.2c-12.3 0.2-20.4 8.3-20.4 20V859c0 12.3 8.5 20.1 20.8 19.9 12.9-0.2 21-6.9 21.1-19.7 0.2-57.4 0.1-114.9 0-172.3 0-12-8.4-19.9-21.5-19.7zM861.4 667.4c-9.9-1.8-23.3 4.9-23.3 18.2-0.2 29.2 0 58.3 0 87.5v87c0 1.6-0.1 3.4 0.4 4.9 3.3 9.4 14.4 16.2 23.5 14 11.4-2.7 17.9-7.2 18-21.4 0.2-55.5 0.1-111 0.1-166.5-0.1-14.4-4.6-21.1-18.7-23.7zM768.7 727.3c-2.6-9.4-13-16.8-22.1-15.1-12.4 2.4-19.4 6.6-19.5 20.9-0.3 41.1-0.1 82.3-0.1 123.4 0 13.8 5.7 20 17.5 22.2 11.1 2.1 24.4-4.5 24.5-19.1v-63.5-64.5c0-1.3 0-2.9-0.3-4.3zM741 544.8c-8.7 1.9-14 10.2-14 19.8V653c0 13.1 4 21 18.1 23.7 10.3 1.9 24-5.2 23.9-18.5-0.1-15.8 0-31.6 0-47.5 0-15.3-0.2-30.6 0-46 0.3-19-14.6-22.8-28-19.9zM622 547.4c-4.9-3.4-10.1-3.3-15.4-3.3-10.5 0-18.5 7.9-18.5 18.3v26c0 9-0.1 18 0 27 0.1 4.6 1.3 8.7 4.9 12.3 5.2 5.2 11.2 6.7 18.2 6.5 9.9-0.3 18.8-8.9 18.8-18.7 0.1-17.7 0.2-35.3-0.1-53 0-6.1-2.4-11.3-7.9-15.1zM878.3 555.9c-2.2-6.2-9.8-11.8-17.9-12-14.3-0.5-23.6 7.9-22.5 22.8 0.5 7 0.1 14 0.1 21v25c0 1.5 0 3 0.4 4.4 3.2 10.3 12.9 15.5 23.9 14 11-1.6 17.4-8.4 17.6-19.7 0.3-15.8 0.1-31.7 0.1-47.5 0-2.9-0.8-5.5-1.7-8zM352 257.8c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.1-2-0.2-4-0.7-6zM785.5 250.1c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.2-2-0.2-4.1-0.7-6zM351.4 676.6c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.1-2-0.2-4-0.7-6z"
|
||||
p-id="2312"></path>
|
||||
</svg>
|
||||
二维码
|
||||
</div>
|
||||
|
||||
<div id="share-plane" class="post-pop-plane">
|
||||
<div class="post-share-list">
|
||||
<a href="javascript:;" target="_blank">
|
||||
<svg t="1599120943195" name="share-qq" class="share-icon"
|
||||
viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="3139" width="200"
|
||||
height="200">
|
||||
<path d="M511.09761 957.257c-80.159 0-153.737-25.019-201.11-62.386-24.057 6.702-54.831 17.489-74.252 30.864-16.617 11.439-14.546 23.106-11.55 27.816 13.15 20.689 225.583 13.211 286.912 6.767v-3.061z"
|
||||
fill="#FAAD08" p-id="3140"></path>
|
||||
<path d="M496.65061 957.257c80.157 0 153.737-25.019 201.11-62.386 24.057 6.702 54.83 17.489 74.253 30.864 16.616 11.439 14.543 23.106 11.55 27.816-13.15 20.689-225.584 13.211-286.914 6.767v-3.061z"
|
||||
fill="#FAAD08" p-id="3141"></path>
|
||||
<path d="M497.12861 474.524c131.934-0.876 237.669-25.783 273.497-35.34 8.541-2.28 13.11-6.364 13.11-6.364 0.03-1.172 0.542-20.952 0.542-31.155C784.27761 229.833 701.12561 57.173 496.64061 57.162 292.15661 57.173 209.00061 229.832 209.00061 401.665c0 10.203 0.516 29.983 0.547 31.155 0 0 3.717 3.821 10.529 5.67 33.078 8.98 140.803 35.139 276.08 36.034h0.972z"
|
||||
fill="#000000" p-id="3142"></path>
|
||||
<path d="M860.28261 619.782c-8.12-26.086-19.204-56.506-30.427-85.72 0 0-6.456-0.795-9.718 0.148-100.71 29.205-222.773 47.818-315.792 46.695h-0.962C410.88561 582.017 289.65061 563.617 189.27961 534.698 185.44461 533.595 177.87261 534.063 177.87261 534.063 166.64961 563.276 155.56661 593.696 147.44761 619.782 108.72961 744.168 121.27261 795.644 130.82461 796.798c20.496 2.474 79.78-93.637 79.78-93.637 0 97.66 88.324 247.617 290.576 248.996a718.01 718.01 0 0 1 5.367 0C708.80161 950.778 797.12261 800.822 797.12261 703.162c0 0 59.284 96.111 79.783 93.637 9.55-1.154 22.093-52.63-16.623-177.017"
|
||||
fill="#000000" p-id="3143"></path>
|
||||
<path d="M434.38261 316.917c-27.9 1.24-51.745-30.106-53.24-69.956-1.518-39.877 19.858-73.207 47.764-74.454 27.875-1.224 51.703 30.109 53.218 69.974 1.527 39.877-19.853 73.2-47.742 74.436m206.67-69.956c-1.494 39.85-25.34 71.194-53.24 69.956-27.888-1.238-49.269-34.559-47.742-74.435 1.513-39.868 25.341-71.201 53.216-69.974 27.909 1.247 49.285 34.576 47.767 74.453"
|
||||
fill="#FFFFFF" p-id="3144"></path>
|
||||
<path d="M683.94261 368.627c-7.323-17.609-81.062-37.227-172.353-37.227h-0.98c-91.29 0-165.031 19.618-172.352 37.227a6.244 6.244 0 0 0-0.535 2.505c0 1.269 0.393 2.414 1.006 3.386 6.168 9.765 88.054 58.018 171.882 58.018h0.98c83.827 0 165.71-48.25 171.881-58.016a6.352 6.352 0 0 0 1.002-3.395c0-0.897-0.2-1.736-0.531-2.498"
|
||||
fill="#FAAD08" p-id="3145"></path>
|
||||
<path d="M467.63161 256.377c1.26 15.886-7.377 30-19.266 31.542-11.907 1.544-22.569-10.083-23.836-25.978-1.243-15.895 7.381-30.008 19.25-31.538 11.927-1.549 22.607 10.088 23.852 25.974m73.097 7.935c2.533-4.118 19.827-25.77 55.62-17.886 9.401 2.07 13.75 5.116 14.668 6.316 1.355 1.77 1.726 4.29 0.352 7.684-2.722 6.725-8.338 6.542-11.454 5.226-2.01-0.85-26.94-15.889-49.905 6.553-1.579 1.545-4.405 2.074-7.085 0.242-2.678-1.834-3.786-5.553-2.196-8.135"
|
||||
fill="#000000" p-id="3146"></path>
|
||||
<path d="M504.33261 584.495h-0.967c-63.568 0.752-140.646-7.504-215.286-21.92-6.391 36.262-10.25 81.838-6.936 136.196 8.37 137.384 91.62 223.736 220.118 224.996H506.48461c128.498-1.26 211.748-87.612 220.12-224.996 3.314-54.362-0.547-99.938-6.94-136.203-74.654 14.423-151.745 22.684-215.332 21.927"
|
||||
fill="#FFFFFF" p-id="3147"></path>
|
||||
<path d="M323.27461 577.016v137.468s64.957 12.705 130.031 3.91V591.59c-41.225-2.262-85.688-7.304-130.031-14.574"
|
||||
fill="#EB1C26" p-id="3148"></path>
|
||||
<path d="M788.09761 432.536s-121.98 40.387-283.743 41.539h-0.962c-161.497-1.147-283.328-41.401-283.744-41.539l-40.854 106.952c102.186 32.31 228.837 53.135 324.598 51.926l0.96-0.002c95.768 1.216 222.4-19.61 324.6-51.924l-40.855-106.952z"
|
||||
fill="#EB1C26" p-id="3149"></path>
|
||||
</svg>
|
||||
</a>
|
||||
<a href="javascript:;" target="_blank">
|
||||
<svg t="1599121101983" name="share-qzone" class="share-icon"
|
||||
viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="7781" width="200"
|
||||
height="200">
|
||||
<path d="M504.768 24.224c-5.216 2.144-19.872 17.728-19.872 21.28 0 1.184-22.944 49.888-51.072 108.064S381.568 262.56 380.16 266.592c-1.184 3.776-3.328 8.288-4.256 9.696-1.184 1.408-7.808 14.176-14.88 28.384-7.552 15.616-15.616 28.608-20.096 32.16-10.88 9.216-3.552 8.288-221.312 32.64C21.248 380.576 10.368 382.24 4.48 387.68c-4.256 3.776-5.92 17.504-2.848 25.536 0.96 2.112 43.264 42.336 94.112 89.376 160.768 148.48 150.368 138.08 150.368 149.184 0 5.44-3.296 25.056-7.104 43.968-4.032 18.912-12.992 66.208-20.32 105.216s-15.84 83.712-18.912 99.296c-16.32 83.232-16.544 85.6-8.032 94.592 8.032 8.512 17.248 7.552 41.6-4.736 22.688-11.584 24.832-12.768 69.504-39.008 16.32-9.472 37.6-21.76 47.296-27.2s27.648-16.064 39.712-23.392 22.464-13.248 23.168-13.248c0.48 0 7.808-4.256 16.064-9.472s15.84-9.44 16.8-9.44c0.96 0 9.472-4.736 18.912-10.624 22.464-13.952 41.856-21.056 52.96-18.912 4.736 0.96 16.064 5.44 25.056 10.4 23.648 12.544 172.608 98.368 218.944 126.016 39.488 23.648 51.072 28.128 64.544 24.576 8.992-2.144 11.584-15.136 8.512-40.896-1.408-11.584-3.552-24.608-4.736-29.088-1.888-7.552-9.696-49.408-28.608-154.4-8.736-49.888-8.736-50.848 10.88-58.176 27.2-10.176 39.968-19.136 35.008-24.128-1.664-1.664-16.8 0.256-48.224 5.92-58.4 10.624-70.464 12.288-132.16 17.984-70.208 6.624-135.008 8.032-221.568 4.96-67.616-2.368-148-8.288-152.512-11.104-3.552-2.368-1.888-9.696 3.552-14.432 2.848-2.592 38.784-28.384 79.68-57.44 128.16-90.784 211.392-150.848 218.24-157.248 11.808-11.104 10.88-11.584-38.304-17.984-77.792-9.92-98.112-11.584-224.864-17.504-42.336-1.888-80.64-4.256-85.12-4.96-46.336-7.808 189.856-29.088 289.632-26.016 65.504 1.888 142.592 7.328 187.968 13.248 42.336 5.664 44.928 6.144 44.928 10.88 0 3.776-4.48 7.104-104.032 75.648-40.896 28.384-84.416 58.4-96.704 66.912-12.064 8.512-24.576 17.248-27.424 19.136-13.248 8.992-57.696 39.968-69.984 48.928-7.808 5.664-13.952 11.808-13.952 13.728 0 4.48 11.584 7.328 47.296 11.584 94.816 11.104 271.2 17.248 279.008 9.472 1.664-1.664 1.408-6.848-1.184-17.728-1.888-8.288-3.552-16.096-3.552-17.248 0-3.328 40.192-43.52 95.744-95.52 146.816-137.6 150.144-140.928 150.144-151.808 0-9.472-7.808-17.984-19.392-20.8-5.664-1.408-39.488-5.216-75.2-8.736-35.712-3.328-75.2-7.104-87.488-8.288-12.288-1.408-38.304-4.032-57.92-6.144-74.944-7.552-97.888-10.4-103.328-12.992-10.4-4.736-20.096-24.128-91.744-185.376C537.824 44.8 533.344 35.584 526.24 29.216c-5.888-5.44-15.104-7.552-21.504-4.96z"
|
||||
fill="#FFCE00" p-id="7782"></path>
|
||||
</svg>
|
||||
</a>
|
||||
<a href="javascript:;" target="_blank">
|
||||
<svg t="1599121004264" name="share-weibo" class="share-icon"
|
||||
viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="4523" width="200"
|
||||
height="200">
|
||||
<path d="M851.4 590.193c-22.196-66.233-90.385-90.422-105.912-91.863-15.523-1.442-29.593-9.94-19.295-27.505 10.302-17.566 29.304-68.684-7.248-104.681-36.564-36.14-116.512-22.462-173.094 0.866-56.434 23.327-53.39 7.055-51.65-8.925 1.89-16.848 32.355-111.02-60.791-122.395C311.395 220.86 154.85 370.754 99.572 457.15 16 587.607 29.208 675.873 29.208 675.873h0.58c10.009 121.819 190.787 218.869 412.328 218.869 190.5 0 350.961-71.853 398.402-169.478 0 0 0.143-0.433 0.575-1.156 4.938-10.506 8.71-21.168 11.035-32.254 6.668-26.205 11.755-64.215-0.728-101.66z m-436.7 251.27c-157.71 0-285.674-84.095-285.674-187.768 0-103.671 127.82-187.76 285.674-187.76 157.705 0 285.673 84.089 285.673 187.76 0 103.815-127.968 187.768-285.673 187.768z"
|
||||
fill="#E71F19" p-id="4524"></path>
|
||||
<path d="M803.096 425.327c2.896 1.298 5.945 1.869 8.994 1.869 8.993 0 17.7-5.328 21.323-14.112 5.95-13.964 8.993-28.793 8.993-44.205 0-62.488-51.208-113.321-114.181-113.321-15.379 0-30.32 3.022-44.396 8.926-11.755 4.896-17.263 18.432-12.335 30.24 4.933 11.662 18.572 17.134 30.465 12.238 8.419-3.46 17.268-5.33 26.41-5.33 37.431 0 67.752 30.241 67.752 67.247 0 9.068-1.735 17.857-5.369 26.202a22.832 22.832 0 0 0 12.335 30.236l0.01 0.01z"
|
||||
fill="#F5AA15" p-id="4525"></path>
|
||||
<path d="M726.922 114.157c-25.969 0-51.65 3.744-76.315 10.942-18.423 5.472-28.868 24.622-23.5 42.91 5.509 18.29 24.804 28.657 43.237 23.329a201.888 201.888 0 0 1 56.578-8.064c109.253 0 198.189 88.271 198.189 196.696 0 19.436-2.905 38.729-8.419 57.16-5.508 18.289 4.79 37.588 23.212 43.053 3.342 1.014 6.817 1.442 10.159 1.442 14.943 0 28.725-9.648 33.37-24.48 7.547-24.906 11.462-50.826 11.462-77.175-0.143-146.588-120.278-265.813-267.973-265.813z"
|
||||
fill="#F5AA15" p-id="4526"></path>
|
||||
<path d="M388.294 534.47c-84.151 0-152.34 59.178-152.34 132.334 0 73.141 68.189 132.328 152.34 132.328 84.148 0 152.337-59.182 152.337-132.328 0-73.15-68.19-132.334-152.337-132.334zM338.53 752.763c-29.454 0-53.39-23.755-53.39-52.987 0-29.228 23.941-52.989 53.39-52.989 29.453 0 53.39 23.76 53.39 52.989 0 29.227-23.937 52.987-53.39 52.987z m99.82-95.465c-6.382 11.086-19.296 15.696-28.726 10.219-9.43-5.323-11.75-18.717-5.37-29.803 6.386-11.09 19.297-15.7 28.725-10.224 9.43 5.472 11.755 18.864 5.37 29.808z"
|
||||
fill="#040000" p-id="4527"></path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="qrcode-plane" class="post-pop-plane">
|
||||
<div id="qrcode-img"></div>
|
||||
</div>
|
||||
<div id="reward-plane" class="post-pop-plane">
|
||||
<img src="" alt="">
|
||||
<img src="" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="post-turn-page-plane">
|
||||
<div class="post-turn-page post-turn-page-previous" style="background-image:url()">
|
||||
<div class="post-turn-page-main">
|
||||
<div>
|
||||
<a href="../oracle-ebs-pur-inventory-table/index1.html">oracle-EBS-采购单创建接收检验入库经历主要表(多图)</a>
|
||||
</div>
|
||||
<div class="post-turn-page-link-pre">
|
||||
<a href="../oracle-ebs-pur-inventory-table/index1.html"><
|
||||
<上一篇></上一篇>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post-turn-page post-turn-page-next"
|
||||
style="background-image:url(../wp-content/uploads/2020/12/oracleAP_Payments_GL_Voucher.png)">
|
||||
<div class="post-turn-page-main">
|
||||
<div>
|
||||
<a href="javascript:;">oracle-EBS-PL/sql AP GL总账付款凭证</a>
|
||||
</div>
|
||||
<div class="post-turn-page-link-next">
|
||||
<a href="javascript:;">下一篇>></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
$(document).click(function (e) {
|
||||
$('.post-pop-plane').removeClass("post-pop-plane-show");
|
||||
e.stopPropagation();
|
||||
});
|
||||
$('.post-info-switch-sidebar').click(function () {
|
||||
$('.sidebar').toggleClass('sidebar-display');
|
||||
$('.post-main').toggleClass('post-main-full');
|
||||
$(this).toggleClass('post-info-switch-sidebar-show');
|
||||
})
|
||||
$('.clickshow').click(function () {
|
||||
$('#share-plane').removeClass("share-plane-show");
|
||||
$('#qrcode-plane').removeClass("share-plane-show");
|
||||
$(this).toggleClass('clickshow-show');
|
||||
});
|
||||
|
||||
function showplane(btn_name, plane_name, e) {
|
||||
$('.post-pop-plane').removeClass("post-pop-plane-show");
|
||||
$(plane_name).addClass("post-pop-plane-show");
|
||||
var btn_left = $(btn_name).position().left;
|
||||
var plane_width = $(plane_name).outerWidth();
|
||||
var btn_width = $(btn_name).outerWidth();
|
||||
var btn_hight = $(btn_name).outerHeight();
|
||||
$(plane_name).css('left', btn_left - plane_width / 2 + btn_width / 2 + 'px');
|
||||
$(plane_name).css('bottom', btn_hight + 10 + 'px');
|
||||
e.stopPropagation();
|
||||
}
|
||||
|
||||
$('.post-qrcode-btn').click((e) => {
|
||||
$('#qrcode-plane').addClass("share-plane-show");
|
||||
e.stopPropagation();
|
||||
});
|
||||
$(document).ready(function () {
|
||||
new QRCode($('#qrcode-img')[0], window.location.href);
|
||||
});
|
||||
$(this).next().animate({height: '100%'}, 500);
|
||||
$('.zd-plane-title').click(function (e) {
|
||||
if (!$(this).hasClass('zd-plane-title-zk')) {
|
||||
$(this).addClass('zd-plane-title-zk');
|
||||
$(this).next().slideDown();
|
||||
} else {
|
||||
$(this).removeClass('zd-plane-title-zk')
|
||||
$(this).next().slideUp();
|
||||
}
|
||||
})
|
||||
var clipboard = new ClipboardJS('.code-bar-btn-copy-fonticon', {
|
||||
text: function (trigger) {
|
||||
copynotmsg = 1;
|
||||
return $(trigger).parent().prev().text();
|
||||
}
|
||||
});
|
||||
|
||||
var copy_pwd = new ClipboardJS('.btn-copy-pwd', {
|
||||
text: function (trigger) {
|
||||
copynotmsg = 1;
|
||||
return $(trigger).parent().find('.c-downbtn-pwd-key').text();
|
||||
}
|
||||
});
|
||||
copy_pwd.on('success', function (e) {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
setTimeout(function () {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
}, 2000);
|
||||
});
|
||||
|
||||
|
||||
clipboard.on('success', function (e) {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
setTimeout(function () {
|
||||
//$(e.trigger).text('复制')
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
}, 2000);
|
||||
});
|
||||
clipboard.on('error', function (e) {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal times')
|
||||
setTimeout(function () {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal times')
|
||||
}, 2000);
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
<div class="post-tool-plane">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="relevant-plane">
|
||||
<div class="plane-title">
|
||||
相关内容
|
||||
</div>
|
||||
<div>
|
||||
<ul class="relevant-list">
|
||||
<li><a href="../oracle-ebs-pl-sql-ar-receipt-detail/index.html">oracle-EBS-PL/sql AR
|
||||
收款的核销明细</a></li>
|
||||
<li><a href="../oracle-ebs-pl-sql-ap-aging/index.html">oracle-EBS-PL/sql AP 供应商的未清余额明细AP
|
||||
AGING</a></li>
|
||||
<li><a href="../oracle-ebs-pl-sql-ap-podetial/index.html">oracle-EBS-PL/sql AP
|
||||
发票中匹配的po明细按发票</a></li>
|
||||
<li><a href="../oracle-ebs-pl-sql-ap-pomatchdetails/index.html">oracle-EBS-PL/sql AP
|
||||
发票中匹配的po明细</a></li>
|
||||
<li><a href="">oracle-EBS-AP应付采购单匹配付款经历主要表(多图)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="comments" class="responsesWrapper">
|
||||
<div class="reply-title">
|
||||
发表评论
|
||||
</div>
|
||||
<div id="respond" class="comment-respond">
|
||||
<h3 id="reply-title" class="comment-reply-title"><small><a rel="nofollow"
|
||||
id="cancel-comment-reply-link"
|
||||
href="#respond"
|
||||
style="display:none;">取消回复</a></small>
|
||||
</h3>
|
||||
<form action="https://www.zyxpp.com/wp-comments-post.php" method="post" id="form_comment"
|
||||
class="comment-form">
|
||||
<div class="comment-user-plane">
|
||||
<div class="logged-in-as"><img class="comment-user-avatar" width="48" height="auto"
|
||||
src="../wp-content/plugins/wp-user-avatar/images/wpua-96x96.png"
|
||||
alt=""></div>
|
||||
<div class="comment_form_textarea_box"><textarea class="comment_form_textarea"
|
||||
name="comment" id="comment"
|
||||
placeholder="发表你的看法"
|
||||
rows="5"></textarea>
|
||||
<div id="comment_addplane">
|
||||
<button class="popover-btn popover-btn-face" type="button"><i
|
||||
class="far fa-smile-wink"></i> 添加表情
|
||||
</button>
|
||||
<div class="conment-face-plane">
|
||||
<img class="img-pace"
|
||||
src="/template/default//img/face/yun.gif" width="30"
|
||||
facename="yun"><img class="img-pace"
|
||||
src="/template/default//img/face/youling.gif"
|
||||
width="30" facename="youling"><img class="img-pace"
|
||||
src="/template/default//img/face/yiwen.gif"
|
||||
width="30"
|
||||
facename="yiwen"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/yinxian.gif"
|
||||
width="30" facename="yinxian"><img class="img-pace"
|
||||
src="/template/default//img/face/xigua.gif"
|
||||
width="30" facename="xigua"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/xieyanxiao.gif"
|
||||
width="30" facename="xieyanxiao"><img class="img-pace"
|
||||
src="/template/default//img/face/xiaoku.gif"
|
||||
width="30" facename="xiaoku"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/xiaojiujie.gif"
|
||||
width="30" facename="xiaojiujie"><img class="img-pace"
|
||||
src="/template/default//img/face/wunai.gif"
|
||||
width="30" facename="wunai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/wozuimei.gif"
|
||||
width="30" facename="wozuimei"><img class="img-pace"
|
||||
src="/template/default//img/face/woshou.gif"
|
||||
width="30" facename="woshou"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/weiqu.gif"
|
||||
width="30" facename="weiqu"><img class="img-pace"
|
||||
src="/template/default//img/face/tuosai.gif"
|
||||
width="30" facename="tuosai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/touxiao.gif"
|
||||
width="30" facename="touxiao"><img class="img-pace"
|
||||
src="/template/default//img/face/tiaopi.gif"
|
||||
width="30" facename="tiaopi"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/shuai.gif"
|
||||
width="30" facename="shuai"><img class="img-pace"
|
||||
src="/template/default//img/face/shengli.gif"
|
||||
width="30" facename="shengli"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/se.gif" width="30"
|
||||
facename="se"><img class="img-pace"
|
||||
src="/template/default//img/face/quantou.gif"
|
||||
width="30" facename="quantou"><img class="img-pace"
|
||||
src="/template/default//img/face/qinqin.gif"
|
||||
width="30"
|
||||
facename="qinqin"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/qiang.gif"
|
||||
width="30" facename="qiang"><img class="img-pace"
|
||||
src="/template/default//img/face/piezui.gif"
|
||||
width="30" facename="piezui"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/penxue.gif"
|
||||
width="30" facename="penxue"><img class="img-pace"
|
||||
src="/template/default//img/face/nanguo.gif"
|
||||
width="30" facename="nanguo"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/liuhan.gif"
|
||||
width="30" facename="liuhan"><img class="img-pace"
|
||||
src="/template/default//img/face/lenghan.gif"
|
||||
width="30" facename="lenghan"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/leiben.gif"
|
||||
width="30" facename="leiben"><img class="img-pace"
|
||||
src="/template/default//img/face/ku.gif"
|
||||
width="30" facename="ku"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/koubi.gif"
|
||||
width="30" facename="koubi"><img class="img-pace"
|
||||
src="/template/default//img/face/keai.gif"
|
||||
width="30" facename="keai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/jingkong.gif"
|
||||
width="30" facename="jingkong"><img class="img-pace"
|
||||
src="/template/default//img/face/jie.gif"
|
||||
width="30" facename="jie"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/huaixiao.gif"
|
||||
width="30" facename="huaixiao"><img class="img-pace"
|
||||
src="/template/default//img/face/hanxiao.gif"
|
||||
width="30" facename="hanxiao"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/haixiu.gif"
|
||||
width="30" facename="haixiu"><img class="img-pace"
|
||||
src="/template/default//img/face/guzhang.gif"
|
||||
width="30" facename="guzhang"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/ganga.gif"
|
||||
width="30" facename="ganga"><img class="img-pace"
|
||||
src="/template/default//img/face/fadai.gif"
|
||||
width="30" facename="fadai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/doge.gif" width="30"
|
||||
facename="doge"><img class="img-pace"
|
||||
src="/template/default//img/face/dabing.gif"
|
||||
width="30" facename="dabing"><img class="img-pace"
|
||||
src="/template/default//img/face/ciya.gif"
|
||||
width="30"
|
||||
facename="ciya"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/caidao.gif"
|
||||
width="30" facename="caidao"><img class="img-pace"
|
||||
src="/template/default//img/face/cahan.gif"
|
||||
width="30" facename="cahan"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/bizui.gif"
|
||||
width="30" facename="bizui"><img class="img-pace"
|
||||
src="/template/default//img/face/baoquan.gif"
|
||||
width="30" facename="baoquan"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/aoman.gif"
|
||||
width="30" facename="aoman"><img class="img-pace"
|
||||
src="/template/default//img/face/aixin.gif"
|
||||
width="30" facename="aixin"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/OK.gif" width="30"
|
||||
facename="OK">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="comment_userinput">
|
||||
<div class="comment-form-author"><input id="author" name="author" placeholder="昵称(*)"
|
||||
type="text" value="" size="30"></div>
|
||||
<div class="comment-form-email"><input id="email" name="email" type="text"
|
||||
placeholder="邮箱(*)" value=""></div>
|
||||
<div class="comment-form-url"><input id="url" placeholder="网址" name="url" type="text"
|
||||
value="" size="30"></div>
|
||||
</div>
|
||||
<div class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent"
|
||||
name="wp-comment-cookies-consent"
|
||||
type="checkbox" value="yes"> 记住用户信息
|
||||
</div>
|
||||
<div class="form-submit">
|
||||
<div style="text-align: right">
|
||||
<input name="submit" type="submit" id="submit" class="button primary-btn"
|
||||
value="发表评论"></div>
|
||||
<input type='hidden' name='comment_post_ID' value='322' id='comment_post_ID'>
|
||||
<input type='hidden' name='comment_parent' id='comment_parent' value='0'>
|
||||
</div>
|
||||
</form>
|
||||
</div><!-- #respond -->
|
||||
|
||||
<meta content="UserComments:0" itemprop="interactionCount">
|
||||
<h3 class="comments-title">共有 <span class="commentCount">0</span> 条评论</h3>
|
||||
|
||||
<div class="comment-sofa">
|
||||
<i class="fas fa-couch"></i> 沙发空余
|
||||
</div>
|
||||
|
||||
<script type='text/javascript' src='../wp-includes/js/comment-reply.min.js'></script>
|
||||
<script type='text/javascript'>
|
||||
|
||||
$('body').on('click', '.comment-reply-link', function (e) {
|
||||
addComment.moveForm("li-comment-" + $(this).attr('data-commentid'), $(this).attr('data-commentid'), "respond", $(this).attr('data-postid'));
|
||||
console.log("li-comment-" + $(this).attr('data-commentid'), $(this).attr('data-commentid'), "respond", $(this).attr('data-postid'));
|
||||
e.stopPropagation();
|
||||
return false;
|
||||
});
|
||||
$(document).click(function (e) {
|
||||
$('.conment-face-plane').css("opacity", "0");
|
||||
$('.conment-face-plane').css("visibility", "hidden");
|
||||
e.stopPropagation();
|
||||
});
|
||||
$('body').on('click', '.img-pace', function (e) {
|
||||
$('.comment_form_textarea').val($('.comment_form_textarea').val() + '[f=' + $(this).attr('facename') + ']')
|
||||
});
|
||||
$('body').on('click', '.popover-btn-face', function (e) {
|
||||
if ($('.conment-face-plane').css("visibility") == 'visible') {
|
||||
$('.conment-face-plane').css("opacity", "0");
|
||||
$('.conment-face-plane').css("visibility", "hidden");
|
||||
} else {
|
||||
$('.conment-face-plane').css("opacity", "1");
|
||||
$('.conment-face-plane').css("visibility", "visible");
|
||||
}
|
||||
e.stopPropagation();
|
||||
});
|
||||
</script>
|
||||
<nav class="comment-navigation pages">
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar">
|
||||
<div class="sidebar-box-list">
|
||||
<div class="aside-box"><h2 class="widget-title">热门文章</h2>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
1 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-om-order-table/index1.html"> oracle-EBS甲骨文销售订单下单发放挑库发运(销售到出货全过程)主要相关表(多图)</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-09
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-om/index.html"> Oracle-OM-销售物流</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
2 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../decoration-erp/index.html"> 某家装公司项目管理软件系统的设计思路</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2021-03-24
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/talk/index.html"> 学习笔记</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
3 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oaworkflowapprove/index1.html"> 常见企业OA办公审批流、工作流实现层级审批、层层签核的方式</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2021-02-28
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/sql-server/index.html"> sql-server</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
4 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-pur-inventory-table/index1.html"> oracle-EBS-采购单创建接收检验入库经历主要表(多图)</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-13
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-pur-prod/index.html"> Oracle-PROD-采购生产</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
5 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-pl-sql-ap-podetial/index.html"> oracle-EBS-PL/sql AP 发票中匹配的po明细按发票</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2021-03-07
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-finance/index.html"> Oracle-Finance-财务</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
6 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-pl-sql-price-list/index.html"> oracle EBS PL/sql 查看销售订单的价目表Price List</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-13
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-pl-sql/index.html"> Oracle-PL/SQL</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
7 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-om-confirm-transferto-ar/index.html"> oracle-EBS-PL/sql查看销售订单已经确认出货,和过账到AR应收的订单行明细,查看物流操作时间</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-04
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-pl-sql/index.html"> Oracle-PL/SQL</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
8 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../sql-server-max-lineconverttocolumn/index.html"> SQL Server- 行列转换 行转列,多行转多列 – max 函数用法</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-07
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/sql-server/index.html"> sql-server</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
{include file="public/footer"/}
|
||||
<script src="/template/default//lib/highlight/init.js"></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1 @@
|
|||
#comment_addface{position:relative}.conment-face-plane{position:absolute;transition:.15s;box-shadow:0 5px 10px rgba(0,0,0,.2);border:1px solid rgba(0,0,0,.2);border-radius:6px;top:100%;padding:10px;background:#fff;max-width:300px;z-index:9999;opacity:1;visibility:hidden}.popover-btn-face{margin-top:10px}.popover-btn{border-radius:4px;display:inline-block;transition:.15s;vertical-align:middle;padding:.3em .5em;text-align:center;line-height:1.44;border:0;outline:0}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
/**
|
||||
移动适配
|
||||
*/.mobile-menu-btn,.mobile-search-btn{display:none;padding:10px}@media screen and (max-width:1040px){body .user-menu-pc-search{display:none}body .header-menu{display:none!important}body .header-logo img{height:40px}body .mobile-search-btn{display:block}body .mobile-menu-btn,.mobile-search-btn{display:block}.menu-header-list>.menu-item-has-children:after,.user-menu:after{display:none}body .menu-header-list>.menu-item>a:before{display:none!important}body .menu-header-list>.menu-item{padding:0}header .current-menu-item:before{display:none!important}body .ad-plane-post{padding:10px;margin-top:-10px}body .menu-header-list{flex-direction:column}body .sub-menu{width:100%}body .user-sub-menu{width:100%;left:unset}.m-dropdown{display:block;position:absolute;right:3px;top:0;width:50px;text-align:center;line-height:62px;transition:all .3s ease-out 0s}body .sub-menu-show{visibility:visible;opacity:1}body .sub-menu-hide{visibility:hidden!important;opacity:0!important;top:60px!important}body .sub-menu .sub-menu{left:0;top:100%}}@media screen and (max-width:800px){body .slide-title{font-size:20px}body .post-item-sticky{padding:2px 4px}::-webkit-scrollbar{width:4px!important;height:4px!important}body .post-item-meta-author{display:none}body .index-top-postcard-item{margin-bottom:10px}body .carousel{margin-bottom:10px}body .index-top-postcard-item{flex-basis:49%}body .post-qrcode-btn{display:none}body .post-content{padding:15px}body .post-info{margin-bottom:10px}body .post-info-right{display:none}body .post-item-thumbnail{flex:35%;flex-shrink:0}body .post-item h2{font-size:18px}body .mobile-menu-btn,.mobile-search-btn{display:block}body .sidebar,.footer-container{display:none}body .header-main{justify-content:space-between}body .go-top-plane{display:none}body .post-main{margin:0;margin-bottom:10px;flex-basis:95%!important}body .header-logo img{height:40px}body .html-main{justify-content:center}.footer-container .footer-left{flex:100%;flex-shrink:0}.footer-container .footer-right,.footer-container .footer-aside-box,.footer-container .menu-footer-plane{display:none}.frinds-links{display:none}body .c-downbtn-item{width:100%}body .usercenter-plane{display:block}body .usercenter-menu{margin-bottom:10px}body .usercenter-right{margin-left:0}body .header-zhanwei{min-height:50px!important}}@media screen and (max-width:500px){body .cat-item{font-size:12px}body .post-item-tags{display:none}body .index-top-postcard-item{flex-basis:48%}body .post-item h2{font-size:16px}body .pageobj-item{display:none}body .commentlist{padding:0 20px}body .commentlist>.comment>.children{padding-left:30px}body .comment-pub-time{font-size:12px}body .commentlist>.comment>.children>.comment{padding:0 10px}body .comment-metadata{margin-left:10px}body .comment-btn-reply{opacity:1;visibility:visible}body .comment-reply-link{font-size:12px}body .top-divider{min-height:60px}body .c-downbtn-item{display:block}body .c-downbtn-describe{margin-bottom:10px}body .post-turn-page-plane,body .post-info-left{display:none}body .post-title{margin-bottom:0}body #reward-plane img{max-width:150px}body .post-pop-plane{padding:10px}}@media screen and (max-width:1384px){#post-catalog{visibility:hidden!important}}@media screen and (max-width:500px){body .post-content{padding:10px}.post-item-content{display:none}body .logged-in-as{display:none}body .post-item-info-type1{display:none}}@media screen and (max-width:360px){body .theme-copyright{display:none}}.drawer-menu-plane-show{visibility:visible!important;left:0!important;opacity:1!important}.drawer-menu-plane{opacity:0;display:flex;visibility:hidden;position:fixed;top:0;left:-100px;right:0;bottom:0;overflow:hidden;z-index:9999;transition:all .3s ease-out 0s}.drawer-menu-list{position:relative;flex:70%;max-width:400px;background:#fff}.drawer-menu-write{flex:30%;background:#000;opacity:.4}.mobile-menu-header-list .menu-item{padding:10px}.dialog-search-plane-show{visibility:visible!important}.dialog-search-plane-show .dialog-plane{opacity:1!important;top:0!important}.dialog-search-plane{display:flex;visibility:hidden;position:fixed;top:0;left:0;right:0;bottom:0;overflow:hidden;z-index:9999;justify-content:center;align-items:center}.dialog-mask{position:absolute;top:0;left:0;right:0;bottom:0;opacity:.4;background:#000}.dialog-plane{padding:10px;top:-100px;transition:all .3s ease-out 0s;opacity:0;position:relative;flex:70%;max-width:400px;background:#fff;z-index:99999;height:150px;border-radius:4px;text-align:center}.dialog-plane h2{font-size:20px;font-weight:500;padding:6px 10px}.dialog-plane .search-form{padding:20px}
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 8.9 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 7.4 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1610794200367" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11672" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M778.24 163.84c-76.8-40.96-165.888-61.44-269.312-61.44s-192.512 20.48-269.312 61.44h-133.12l23.552 337.92c8.192 113.664 67.584 217.088 162.816 280.576l215.04 144.384 215.04-144.384c96.256-63.488 155.648-166.912 163.84-280.576l23.552-337.92H778.24z m47.104 333.824c-7.168 94.208-56.32 181.248-135.168 233.472L508.928 851.968 327.68 731.136c-78.848-53.248-129.024-139.264-135.168-233.472L173.056 225.28h136.192v-26.624c58.368-23.552 124.928-34.816 199.68-34.816s141.312 12.288 199.68 34.816v26.624H844.8l-19.456 272.384z" fill="#2468F2" p-id="11673"></path><path d="M685.056 328.704v-46.08H455.68c2.048-4.096 6.144-9.216 11.264-15.36 5.12-7.168 9.216-12.288 11.264-15.36L419.84 240.64c-31.744 46.08-75.776 87.04-133.12 123.904 4.096 4.096 10.24 11.264 18.432 21.504l17.408 17.408c23.552-15.36 45.056-31.744 63.488-50.176 26.624 25.6 49.152 43.008 67.584 51.2-46.08 15.36-104.448 27.648-175.104 35.84 2.048 5.12 6.144 13.312 9.216 24.576 4.096 11.264 6.144 19.456 7.168 24.576l39.936-7.168v218.112h54.272V680.96h238.592v19.456h54.272V481.28H348.16c60.416-12.288 114.688-27.648 163.84-46.08 49.152 19.456 118.784 34.816 210.944 46.08 5.12-17.408 10.24-34.816 17.408-51.2-62.464-4.096-116.736-12.288-161.792-24.576 38.912-20.48 74.752-46.08 106.496-76.8z m-150.528 194.56h94.208v41.984h-94.208v-41.984z m0 78.848h94.208v41.984h-94.208v-41.984z m-144.384-78.848h94.208v41.984h-94.208v-41.984z m0 78.848h94.208v41.984h-94.208v-41.984z m34.816-275.456h182.272c-26.624 22.528-57.344 41.984-94.208 57.344-31.744-15.36-61.44-34.816-88.064-57.344z" fill="#2468F2" p-id="11674"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
|
@ -0,0 +1,2 @@
|
|||
/*! This file is auto-generated */
|
||||
window.addComment=function(v){var I,C,h,E=v.document,b={commentReplyClass:"comment-reply-link",commentReplyTitleId:"reply-title",cancelReplyId:"cancel-comment-reply-link",commentFormId:"commentform",temporaryFormId:"wp-temp-form-div",parentIdFieldId:"comment_parent",postIdFieldId:"comment_post_ID"},e=v.MutationObserver||v.WebKitMutationObserver||v.MozMutationObserver,r="querySelector"in E&&"addEventListener"in v,n=!!E.documentElement.dataset;function t(){d(),e&&new e(o).observe(E.body,{childList:!0,subtree:!0})}function d(e){if(r&&(I=g(b.cancelReplyId),C=g(b.commentFormId),I)){I.addEventListener("touchstart",l),I.addEventListener("click",l);var t=function(e){if((e.metaKey||e.ctrlKey)&&13===e.keyCode)return C.removeEventListener("keydown",t),e.preventDefault(),C.submit.click(),!1};C&&C.addEventListener("keydown",t);for(var n,d=function(e){var t=b.commentReplyClass;e&&e.childNodes||(e=E);t=E.getElementsByClassName?e.getElementsByClassName(t):e.querySelectorAll("."+t);return t}(e),o=0,i=d.length;o<i;o++)(n=d[o]).addEventListener("touchstart",a),n.addEventListener("click",a)}}function l(e){var t,n,d=g(b.temporaryFormId);d&&h&&(g(b.parentIdFieldId).value="0",t=d.textContent,d.parentNode.replaceChild(h,d),this.style.display="none",n=(d=(n=g(b.commentReplyTitleId))&&n.firstChild)&&d.nextSibling,d&&d.nodeType===Node.TEXT_NODE&&t&&(n&&"A"===n.nodeName&&n.id!==b.cancelReplyId&&(n.style.display=""),d.textContent=t),e.preventDefault())}function a(e){var t=g(b.commentReplyTitleId),n=t&&t.firstChild.textContent,d=this,o=m(d,"belowelement"),i=m(d,"commentid"),r=m(d,"respondelement"),t=m(d,"postid"),n=m(d,"replyto")||n;o&&i&&r&&t&&!1===v.addComment.moveForm(o,i,r,t,n)&&e.preventDefault()}function o(e){for(var t=e.length;t--;)if(e[t].addedNodes.length)return void d()}function m(e,t){return n?e.dataset[t]:e.getAttribute("data-"+t)}function g(e){return E.getElementById(e)}return r&&"loading"!==E.readyState?t():r&&v.addEventListener("DOMContentLoaded",t,!1),{init:d,moveForm:function(e,t,n,d,o){var i=g(e);h=g(n);var r,l,a,m,c=g(b.parentIdFieldId),s=g(b.postIdFieldId),y=g(b.commentReplyTitleId),p=y&&y.firstChild,u=p&&p.nextSibling;if(i&&h&&c){void 0===o&&(o=p&&p.textContent),m=h,e=b.temporaryFormId,n=g(e),y=(y=g(b.commentReplyTitleId))?y.firstChild.textContent:"",n||((n=E.createElement("div")).id=e,n.style.display="none",n.textContent=y,m.parentNode.insertBefore(n,m)),d&&s&&(s.value=d),c.value=t,I.style.display="",i.parentNode.insertBefore(h,i.nextSibling),p&&p.nodeType===Node.TEXT_NODE&&(u&&"A"===u.nodeName&&u.id!==b.cancelReplyId&&(u.style.display="none"),p.textContent=o),I.onclick=function(){return!1};try{for(var f=0;f<C.elements.length;f++)if(r=C.elements[f],l=!1,"getComputedStyle"in v?a=v.getComputedStyle(r):E.documentElement.currentStyle&&(a=r.currentStyle),(r.offsetWidth<=0&&r.offsetHeight<=0||"hidden"===a.visibility)&&(l=!0),"hidden"!==r.type&&!r.disabled&&!l){r.focus();break}}catch(e){}return!1}}}}(window);
|
||||
|
|
@ -0,0 +1 @@
|
|||
function getQueryVariable(a){for(var b=window.location.search.substring(1).split("\x26"),c=0;c<b.length;c++){var d=b[c].split("\x3d");if(d[0]==a)return d[1]}return!1}function htmlEncodeByRegExp(a){return $("\x3cdiv/\x3e").text(a).html()}function htmlDecodeByRegExp(a){$("\x3cdiv/\x3e").html(a).text()}function isElementInViewport(a){a=a.getBoundingClientRect();return 0<=a.top&&0<=a.left&&a.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&a.right<=(window.innerWidth||document.documentElement.clientWidth)}function replaceTag(a){return a.replace("\x26amp;","")}function addarelt(a,b){var c='\x3ci class\x3d"fas fa-info-circle" style\x3d"color: #515a6e"\x3e\x3c/i\x3e';"succ"==b?c='\x3ci class\x3d"fas fa-check-circle" style\x3d"color:#19be6b;"\x3e\x3c/i\x3e':"erro"==b&&(c='\x3ci class\x3d"fas fa-times-circle" style\x3d"color:#ed4014;"\x3e\x3c/i\x3e');$("body").append('\x3cdiv class\x3d"corepress-alert"\x3e\x3cdiv class\x3d"corepress-alert-main"\x3e'+c+a+"\x3c/div\x3e\x3c/div\x3e");setTimeout(function(){$(".corepress-alert-main").addClass("corepress-alert-main-show")},20);setTimeout(function(){$(".corepress-alert-main:first").removeClass("corepress-alert-main-show")},3E3);setTimeout(function(){$(".corepress-alert:first").remove()},3500)}function JScopyText(a){copynotmsg=1;$("body").append('\x3cdiv id\x3d"tem-copy" style\x3d"visibility: hidden"\x3e\x3c/div\x3e');var b=new ClipboardJS("#tem-copy",{text:function(){return a}});$("#tem-copy").trigger("click");b.destroy();$("#tem-copy").remove()}function isChinese(a){return/.*[\u4e00-\u9fa5]+.*$/.test(a)?!0:!1}function haveNumandLetter(a){var b=/[a-z]/i;return/[0-9]/.test(a)&&b.test(a)?!0:!1}function isEmail(a){return 1!=/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(a)?!1:!0};
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
/*! This file is auto-generated */
|
||||
!function(c,d){"use strict";var e=!1,n=!1;if(d.querySelector)if(c.addEventListener)e=!0;if(c.wp=c.wp||{},!c.wp.receiveEmbedMessage)if(c.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,a,i,s=d.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=d.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=0;o<n.length;o++)n[o].style.display="none";for(o=0;o<s.length;o++)if(r=s[o],e.source===r.contentWindow){if(r.removeAttribute("style"),"height"===t.message){if(1e3<(i=parseInt(t.value,10)))i=1e3;else if(~~i<200)i=200;r.height=i}if("link"===t.message)if(a=d.createElement("a"),i=d.createElement("a"),a.href=r.getAttribute("src"),i.href=t.value,i.host===a.host)if(d.activeElement===r)c.top.location.href=t.value}}},e)c.addEventListener("message",c.wp.receiveEmbedMessage,!1),d.addEventListener("DOMContentLoaded",t,!1),c.addEventListener("load",t,!1);function t(){if(!n){n=!0;for(var e,t,r=-1!==navigator.appVersion.indexOf("MSIE 10"),a=!!navigator.userAgent.match(/Trident.*rv:11\./),i=d.querySelectorAll("iframe.wp-embedded-content"),s=0;s<i.length;s++){if(!(e=i[s]).getAttribute("data-secret"))t=Math.random().toString(36).substr(2,10),e.src+="#?secret="+t,e.setAttribute("data-secret",t);if(r||a)(t=e.cloneNode(!0)).removeAttribute("security"),e.parentNode.replaceChild(t,e)}}}}(window,document);
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
/*
|
||||
jQuery(function ($) {
|
||||
$('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".bmp"]').fancybox({
|
||||
});
|
||||
});*/
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
document.addEventListener('DOMContentLoaded', (event) => {
|
||||
document.querySelectorAll('.corepress-code-pre code').forEach((block) => {
|
||||
hljs.highlightBlock(block);
|
||||
});
|
||||
|
||||
});
|
||||
$('.corepress-code-pre').append('<div class="code-bar"><i class="fal fa-clone code-bar-btn-copy-fonticon" title="复制"></i></div>')
|
||||
$(".corepress-code-pre code").each(function () {
|
||||
$(this).html("<ul class='hijs-line-number'><li>" + $(this).html().replace(/\n/g, "\n</li><li>") + "\n</li></ul>");
|
||||
});
|
||||
|
|
@ -0,0 +1,133 @@
|
|||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
/* Tomorrow Red */
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-tag,
|
||||
.hljs-name,
|
||||
.hljs-selector-id,
|
||||
.hljs-selector-class,
|
||||
.hljs-regexp,
|
||||
.hljs-deletion {
|
||||
color: #ff8383;
|
||||
}
|
||||
|
||||
/* Tomorrow Orange */
|
||||
.hljs-number,
|
||||
.hljs-built_in,
|
||||
.hljs-builtin-name,
|
||||
.hljs-literal,
|
||||
.hljs-type,
|
||||
.hljs-params,
|
||||
.hljs-meta,
|
||||
.hljs-link {
|
||||
color: #de935f;
|
||||
}
|
||||
|
||||
/* Tomorrow Yellow */
|
||||
.hljs-attribute {
|
||||
color: #e9d27e;
|
||||
}
|
||||
|
||||
/* Tomorrow Green */
|
||||
.hljs-string,
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-addition {
|
||||
color: #b5f4a5;
|
||||
}
|
||||
|
||||
/* Tomorrow Blue */
|
||||
.hljs-title,
|
||||
.hljs-section {
|
||||
color: #93ddfd;
|
||||
}
|
||||
/* Tomorrow Purple */
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag {
|
||||
color: #d9a9ff;
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
background: #2d3748;
|
||||
color: #c5c8c6;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
pre.corepress-code-pre code {
|
||||
position: relative;
|
||||
border-radius: 5px;
|
||||
max-height: 500px;
|
||||
overflow: auto;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.corepress-code-pre:hover .code-bar {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.code-bar {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
padding: 5px 10px;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transition: .3s;
|
||||
}
|
||||
|
||||
.code-bar-btn-copy {
|
||||
border: none;
|
||||
background: #fff;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.05);
|
||||
padding: 2px 5px;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.code-bar-btn-copy-fonticon {
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
pre[class='corepress-code-pre'] {
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
border-radius: 4px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
max-height: unset;
|
||||
overflow: unset;
|
||||
}
|
||||
|
||||
|
||||
.hljs ul {
|
||||
list-style: decimal;
|
||||
margin: 0px 0px 0 20px !important;
|
||||
padding: 0px;
|
||||
}
|
||||
.hljs ul li {
|
||||
list-style: decimal-leading-zero;
|
||||
border-left: 1px solid #ddd !important;
|
||||
padding: 5px!important;
|
||||
margin: 0 !important;
|
||||
line-height: 14px;
|
||||
word-break: break-all;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.hijs-line-number {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translate(0,-4px);-ms-transform:rotate(3deg) translate(0,-4px);transform:rotate(3deg) translate(0,-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:2px solid transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner 400ms linear infinite;animation:nprogress-spinner 400ms linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes nprogress-spinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
|
||||
|
|
@ -0,0 +1 @@
|
|||
!function(n,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():n.NProgress=e()}(this,function(){function n(n,e,t){return e>n?e:n>t?t:n}function e(n){return 100*(-1+n)}function t(n,t,r){var i;return i="translate3d"===c.positionUsing?{transform:"translate3d("+e(n)+"%,0,0)"}:"translate"===c.positionUsing?{transform:"translate("+e(n)+"%,0)"}:{"margin-left":e(n)+"%"},i.transition="all "+t+"ms "+r,i}function r(n,e){var t="string"==typeof n?n:o(n);return t.indexOf(" "+e+" ")>=0}function i(n,e){var t=o(n),i=t+e;r(t,e)||(n.className=i.substring(1))}function s(n,e){var t,i=o(n);r(n,e)&&(t=i.replace(" "+e+" "," "),n.className=t.substring(1,t.length-1))}function o(n){return(" "+(n.className||"")+" ").replace(/\s+/gi," ")}function a(n){n&&n.parentNode&&n.parentNode.removeChild(n)}var u={};u.version="0.2.0";var c=u.settings={minimum:.08,easing:"ease",positionUsing:"",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,showSpinner:!0,barSelector:'[role="bar"]',spinnerSelector:'[role="spinner"]',parent:"body",template:'<div class="bar" role="bar"><div class="peg"></div></div><div class="spinner" role="spinner"><div class="spinner-icon"></div></div>'};u.configure=function(n){var e,t;for(e in n)t=n[e],void 0!==t&&n.hasOwnProperty(e)&&(c[e]=t);return this},u.status=null,u.set=function(e){var r=u.isStarted();e=n(e,c.minimum,1),u.status=1===e?null:e;var i=u.render(!r),s=i.querySelector(c.barSelector),o=c.speed,a=c.easing;return i.offsetWidth,l(function(n){""===c.positionUsing&&(c.positionUsing=u.getPositioningCSS()),f(s,t(e,o,a)),1===e?(f(i,{transition:"none",opacity:1}),i.offsetWidth,setTimeout(function(){f(i,{transition:"all "+o+"ms linear",opacity:0}),setTimeout(function(){u.remove(),n()},o)},o)):setTimeout(n,o)}),this},u.isStarted=function(){return"number"==typeof u.status},u.start=function(){u.status||u.set(0);var n=function(){setTimeout(function(){u.status&&(u.trickle(),n())},c.trickleSpeed)};return c.trickle&&n(),this},u.done=function(n){return n||u.status?u.inc(.3+.5*Math.random()).set(1):this},u.inc=function(e){var t=u.status;return t?("number"!=typeof e&&(e=(1-t)*n(Math.random()*t,.1,.95)),t=n(t+e,0,.994),u.set(t)):u.start()},u.trickle=function(){return u.inc(Math.random()*c.trickleRate)},function(){var n=0,e=0;u.promise=function(t){return t&&"resolved"!==t.state()?(0===e&&u.start(),n++,e++,t.always(function(){e--,0===e?(n=0,u.done()):u.set((n-e)/n)}),this):this}}(),u.render=function(n){if(u.isRendered())return document.getElementById("nprogress");i(document.documentElement,"nprogress-busy");var t=document.createElement("div");t.id="nprogress",t.innerHTML=c.template;var r,s=t.querySelector(c.barSelector),o=n?"-100":e(u.status||0),l=document.querySelector(c.parent);return f(s,{transition:"all 0 linear",transform:"translate3d("+o+"%,0,0)"}),c.showSpinner||(r=t.querySelector(c.spinnerSelector),r&&a(r)),l!=document.body&&i(l,"nprogress-custom-parent"),l.appendChild(t),t},u.remove=function(){s(document.documentElement,"nprogress-busy"),s(document.querySelector(c.parent),"nprogress-custom-parent");var n=document.getElementById("nprogress");n&&a(n)},u.isRendered=function(){return!!document.getElementById("nprogress")},u.getPositioningCSS=function(){var n=document.body.style,e="WebkitTransform"in n?"Webkit":"MozTransform"in n?"Moz":"msTransform"in n?"ms":"OTransform"in n?"O":"";return e+"Perspective"in n?"translate3d":e+"Transform"in n?"translate":"margin"};var l=function(){function n(){var t=e.shift();t&&t(n)}var e=[];return function(t){e.push(t),1==e.length&&n()}}(),f=function(){function n(n){return n.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,function(n,e){return e.toUpperCase()})}function e(n){var e=document.body.style;if(n in e)return n;for(var t,r=i.length,s=n.charAt(0).toUpperCase()+n.slice(1);r--;)if(t=i[r]+s,t in e)return t;return n}function t(t){return t=n(t),s[t]||(s[t]=e(t))}function r(n,e,r){e=t(e),n.style[e]=r}var i=["Webkit","O","Moz","ms"],s={};return function(n,e){var t,i,s=arguments;if(2==s.length)for(t in e)i=e[t],void 0!==i&&e.hasOwnProperty(t)&&r(n,t,i);else r(n,s[1],s[2])}}();return u});
|
||||
|
|
@ -0,0 +1,302 @@
|
|||
<footer class="footer_area">
|
||||
<div class="container">
|
||||
<div class="row footer_inner">
|
||||
<div class="col-lg-5 col-sm-6">
|
||||
<aside class="f_widget ab_widget">
|
||||
<div class="f_title">
|
||||
<h3>关于我们</h3>
|
||||
</div>
|
||||
<p> {:cn_substr(html2text(get_type_content(86)),80)}...</p>
|
||||
<p>{:web_config('WEB_POWERBY')}</p>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="col-lg-5 col-sm-6">
|
||||
<aside class="f_widget news_widget">
|
||||
<div class="f_title">
|
||||
<h3>搜索</h3>
|
||||
</div>
|
||||
<p>您想找什么?</p>
|
||||
<div id="mc_embed_signup">
|
||||
<form action="{:url('Article/search')}" class="subscribe_form relative">
|
||||
<div class="input-group d-flex flex-row">
|
||||
<input type="text" name="kw" placeholder="请输入关键字" onfocus="this.placeholder = ''" onblur="this.placeholder = '请输入关键字 '"
|
||||
required="">
|
||||
<button class="btn sub-btn">
|
||||
<span class="lnr lnr-arrow-right"></span>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="col-lg-2">
|
||||
<aside class="f_widget social_widget">
|
||||
<div class="f_title">
|
||||
<h3>联系我们</h3>
|
||||
</div>
|
||||
<p>Let us be social</p>
|
||||
<ul class="list">
|
||||
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
|
||||
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fa fa-dribbble"></i></a></li>
|
||||
<li><a href="#"><i class="fa fa-behance"></i></a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
|
||||
<footer>
|
||||
<script type='text/javascript' src='/template/default/js/wp-embed.min.js' id='wp-embed-js'></script>
|
||||
<script>console.log("\n %c CorePress主题v 4.7 %c by applek | www.lovestu.com", "color:#fff;background:#409EFF;padding:5px 0;", "color:#eee;background:#444;padding:5px 10px;");
|
||||
</script>
|
||||
<script src="/template/default/fonts/font.js"></script>
|
||||
<div class="go-top-plane" title="返回顶部">
|
||||
<i class="fa fa-arrow-up" aria-hidden="true"></i>
|
||||
</div>
|
||||
<script>
|
||||
var copynotmsg = 0;
|
||||
var reprint = {
|
||||
open: 0,
|
||||
msg: '',
|
||||
copylenopen: 0,
|
||||
copylen: 10,
|
||||
addurl: 0
|
||||
}
|
||||
document.body.oncopy = function () {
|
||||
var copytext = window.getSelection().toString();
|
||||
if (copynotmsg == 0) {
|
||||
if (reprint.open == 1) {
|
||||
if (reprint.copylenopen == 1) {
|
||||
if (copytext.length > reprint.copylen) {
|
||||
addarelt('复制内容太长,禁止复制', 'erro');
|
||||
JScopyText(' ');
|
||||
copynotmsg = 0;
|
||||
} else {
|
||||
copyaddurl(copytext);
|
||||
}
|
||||
} else {
|
||||
copyaddurl(copytext);
|
||||
}
|
||||
}
|
||||
}
|
||||
copynotmsg = 0;
|
||||
}
|
||||
|
||||
function copyaddurl(content) {
|
||||
if (reprint.addurl == 0) {
|
||||
addarelt(reprint.msg, 'succ');
|
||||
} else {
|
||||
|
||||
if (content.length > 100) {
|
||||
addarelt(reprint.msg, 'succ');
|
||||
JScopyText(content + '\n 【来源:https://www.zyxpp.com:443/oracleebsinvoicetopayment/,转载请注明】');
|
||||
} else {
|
||||
addarelt(reprint.msg, 'succ');
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$('.go-top-plane').click(function () {
|
||||
$('html,body').animate({scrollTop: '0px'}, 500);
|
||||
});
|
||||
$(document).scroll(function () {
|
||||
var scroH = $(document).scrollTop(); //滚动高度
|
||||
var viewH = $(window).height(); //可见高度
|
||||
var contentH = $(document).height(); //内容高度
|
||||
if (scroH > 100) { //距离顶部大于100px时
|
||||
$('.go-top-plane').addClass('go-top-plane-show')
|
||||
} else {
|
||||
$('.go-top-plane').removeClass('go-top-plane-show')
|
||||
}
|
||||
if (contentH - (scroH + viewH) <= 100) { //距离底部高度小于100px
|
||||
}
|
||||
if (contentH == (scroH + viewH)) { //滚动条滑到底部啦
|
||||
}
|
||||
});
|
||||
|
||||
function mobile_menuclick(e) {
|
||||
if ($('.menu-item-has-children:hover > .sub-menu').css('visibility') == 'visible') {
|
||||
$('.menu-item-has-children:hover > .sub-menu').addClass('sub-menu-hide');
|
||||
$('.menu-item-has-children:hover > .sub-menu').removeClass('sub-menu-show');
|
||||
|
||||
} else {
|
||||
$('.menu-item-has-children:hover > .sub-menu').removeClass('sub-menu-hide');
|
||||
$('.menu-item-has-children:hover > .sub-menu').addClass('sub-menu-show');
|
||||
}
|
||||
e.stopPropagation();
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
$(document).click(function (e) {
|
||||
$('.sub-menu').removeClass('sub-menu-hide');
|
||||
$('.sub-menu').removeClass('sub-menu-show');
|
||||
e.stopPropagation();
|
||||
});
|
||||
$('.tag-cloud-link').each(function () {
|
||||
var colors = ['#67C23A', '#E6A23C', '#F56C6C', '#909399', '#CC9966', '#FF6666', '#99CCFF', '#FF9999', '#CC6633'];
|
||||
var backcolor = colors[Math.floor((Math.random() * colors.length))];
|
||||
$(this).css('background-color', backcolor);
|
||||
});
|
||||
|
||||
$('.menu-header-list > .menu-item-has-children');
|
||||
var imgarr = $('.post-content-content').find('img').not('.c-downbtn-icon').not('.post-end-tools');
|
||||
|
||||
for (var i = 0; i < imgarr.length; i++) {
|
||||
var imgurl = $(imgarr[i]).attr('src');
|
||||
var html = imgarr[i].outerHTML;
|
||||
if ($(imgarr[i]).parent()[0].tagName != 'A') {
|
||||
$(imgarr[i]).replaceWith('<a data-fancybox="gallery" data-type="image" href="' + imgurl + '">' + html + '</a>');
|
||||
}
|
||||
}
|
||||
$.fancybox.defaults.buttons = [
|
||||
"close"
|
||||
];
|
||||
$('a[href*=".jpg"],a[href*=".webp"],a[href*=".svg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".bmp"]').fancybox({});
|
||||
|
||||
var i = 0;
|
||||
//文章目录
|
||||
var html = '';
|
||||
$(".post-content h2,.post-content h3").each(function () {
|
||||
var tagName = $(this)[0].tagName.toLowerCase();
|
||||
console.log();
|
||||
if ($(this).parent().attr('class') == 'zd-plane-content') {
|
||||
return;
|
||||
}
|
||||
$(this).attr('catalog', 'catalog-' + tagName + '-' + i);
|
||||
var clickargs = "go_catalog('catalog-" + tagName + "-" + i + "','" + tagName + "')";
|
||||
html = html + '<p catalogtagName="' + tagName + '" catalog="' + 'catalog-' + tagName + '-' + i + '" class="catalog-item" onclick="' + clickargs + '">' + $(this).html() + '</p>';
|
||||
i++;
|
||||
});
|
||||
$('#post-catalog-list').html(html);
|
||||
set_catalog_position();
|
||||
$('#post-catalog').css('visibility', 'visible');
|
||||
$('#post-catalog').css('opacity', '1');
|
||||
if ($(".post-content h2").length == 0 && $(".post-content h3").length == 0) {
|
||||
$('#post-catalog').css('visibility', 'hidden');
|
||||
}
|
||||
|
||||
$('.corepress-code-pre>code').each(function () {
|
||||
$(this).html(replaceTag($(this).html()));
|
||||
});
|
||||
});
|
||||
|
||||
$(window).resize(function () {
|
||||
set_catalog_position();
|
||||
});
|
||||
$(document).scroll(function () {
|
||||
if ($('#post-catalog').css('visibility') != 'visible') {
|
||||
return;
|
||||
}
|
||||
$(".post-content h2[catalog],.post-content h3[catalog]").each(function () {
|
||||
var el_y = this.getBoundingClientRect().y;
|
||||
if (el_y < 100 && el_y > 0) {
|
||||
var name = $(this).attr('catalog');
|
||||
set_catalog_css();
|
||||
$('p[catalog=' + name + ']').addClass('catalog-hover');
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
function close_show(type) {
|
||||
if (type == 1) {
|
||||
$('.post-catalog-main').removeClass('post-catalog-main-hide')
|
||||
} else {
|
||||
$('#post-catalog').addClass('post-catalog-hide')
|
||||
}
|
||||
}
|
||||
|
||||
function set_catalog_css() {
|
||||
$('p[catalog]').removeClass('catalog-hover');
|
||||
}
|
||||
|
||||
function set_catalog_position() {
|
||||
|
||||
if ($('.post-info').length == 0) {
|
||||
return;
|
||||
}
|
||||
var title_x = $('.post-info').offset().left;
|
||||
|
||||
$('#post-catalog').css('left', title_x - 200 + 'px');
|
||||
}
|
||||
|
||||
function go_catalog(catalogname, tagName) {
|
||||
var _scrolltop = $(tagName + '[catalog=' + catalogname + ']').offset().top;
|
||||
$('html, body').animate({
|
||||
scrollTop: _scrolltop - 60
|
||||
}, 500
|
||||
);
|
||||
}
|
||||
|
||||
$(document).ready(
|
||||
function () {
|
||||
NProgress.done();
|
||||
}
|
||||
);
|
||||
</script>
|
||||
<div class="footer-plane">
|
||||
<div class="footer-container">
|
||||
<div class="footer-left">
|
||||
<div>
|
||||
<div class="footer-aside-box">
|
||||
<div class="textwidget"><p>欢迎访问轻烟随风的网站,本网站介绍了一些博主经历的知识应用和分享,专注于企业信息化和一些技术探讨。欢迎各位留言评论和分享。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget_text footer-aside-box">
|
||||
<div class="textwidget custom-html-widget">
|
||||
<marquee behavior="alternate">欢迎访问,有任何建议或意见,欢迎您留言</marquee>
|
||||
</div>
|
||||
</div>
|
||||
<nav class="menu-footer-plane">
|
||||
<ul id="menu-%e5%ba%95%e9%83%a8%e8%8f%9c%e5%8d%95" class="menu-footer-list">
|
||||
<li id="menu-item-76" class="menu-item menu-item-76"><a href="about/index.html">关于本站</a>
|
||||
</li>
|
||||
<li id="menu-item-81" class="menu-item menu-item-81"><a
|
||||
href="advise/index.html">留言建议</a></li>
|
||||
<li id="menu-item-557" class="menu-item menu-item-557"><a title="网站地图"
|
||||
href="sitemaps/index.html">网站地图</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="footer-info">
|
||||
Copyright © 2020-2021 轻烟随风-我思故我在 <span class="theme-copyright">
|
||||
<a href="javascript:;">CorePress Theme</a>
|
||||
</span>
|
||||
Powered by WordPress
|
||||
</div>
|
||||
<div class="footer-info">
|
||||
<span class="footer-icp"><img class="ipc-icon"
|
||||
src="/template/default/img/icp.svg" alt=""><a
|
||||
href="javascript:;" target="_blank">苏ICP备2020066938号</a></span><span
|
||||
class="footer-icp"><img class="ipc-icon"
|
||||
src="/template/default/img/police.svg"
|
||||
alt=""><a href="javascript:;" target="_blank">32048202000300</a></span>
|
||||
</div>
|
||||
<div>
|
||||
<p>总访问量:<span style="color:white">2246</span> 今日访问量:<span style="color:white">499</span>
|
||||
您是今天第:<span style="color:white">499</span> 个访问者</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-details footer-right">
|
||||
<div>
|
||||
<div class="footer-aside-box"><h2 class="footer-widget-title">博主QQ</h2>
|
||||
<img width="100" height="100" src="/uploads/article/2020/12/qq123937345-150x150.png"
|
||||
class="image wp-image-383 attachment-100x100 size-100x100" alt="" loading="lazy"
|
||||
style="max-width: 100%; height: auto;" title="博主QQ"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<meta name="Referrer" content="origin">
|
||||
|
||||
<style>.icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
vertical-align: -3px;
|
||||
fill: currentColor;
|
||||
overflow: hidden;
|
||||
}</style>
|
||||
<style>html, body, #app {
|
||||
background-image: url('/uploads/article/2021/03/beige-tiles.png') !important;
|
||||
background-position: center center;
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
}</style>
|
||||
<link rel="icon" href="http://www.zyxpp.com//uploads/article/2020/12/LOGO1-1.png" type="image/x-icon">
|
||||
<style>
|
||||
:root {
|
||||
--Maincolor: #FF8040 !important;
|
||||
--MaincolorHover: #409EFF !important;
|
||||
--fontSelectedColor: #3390ff !important;
|
||||
}
|
||||
|
||||
#nprogress .bar {
|
||||
background: var(--Maincolor) !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="/template/default/css/main-mobile.css">
|
||||
<link rel="stylesheet" href="/template/default/lib/fontawesome5/css/all.min.css">
|
||||
<link rel="stylesheet" href="/template/default/css/main.css">
|
||||
<script src="/template/default/js/jquery.min.js"></script>
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.zyxpp.com/xmlrpc.php?rsd">
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.zyxpp.com/wp-includes/wlwmanifest.xml">
|
||||
<style type="text/css">.recentcomments a {
|
||||
display: inline !important;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
}</style>
|
||||
<link rel="stylesheet" href="/template/default/lib/nprogress/nprogress.min.css">
|
||||
<script src="/template/default/lib/nprogress/nprogress.min.js"></script>
|
||||
<script src="/template/default/js/tools.js"></script>
|
||||
|
||||
<header class="header_area">
|
||||
<div class="main_menu">
|
||||
<nav class="navbar navbar-expand-lg navbar-light">
|
||||
<div class="container">
|
||||
<!-- Brand and toggle get grouped for better mobile display -->
|
||||
<a class="navbar-brand logo_h" href="/"><img src="/template/default/img/logo.png" alt=""></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<!-- Collect the nav links, forms, and other content for toggling -->
|
||||
<div class="collapse navbar-collapse offset" id="navbarSupportedContent">
|
||||
<ul class="nav navbar-nav menu_nav justify-content-center">
|
||||
|
||||
<li class="nav-item {:IsActiveNav($cid)?'active':''}"><a class="nav-link" href="/">首页</a></li>
|
||||
{zz:channel type="top"}
|
||||
<li class="nav-item {if $field['child']} submenu dropdown{/if} {:IsActiveNav($cid,$field['id'])?'active':''}">
|
||||
{if $field['child']}
|
||||
<a href="{$field['url']}" class="nav-link">
|
||||
{else /}
|
||||
<a class="nav-link" href="{$field['url']}">
|
||||
{/if}
|
||||
{$field['title']}
|
||||
</a>
|
||||
|
||||
{if $field['child']}
|
||||
<ul class="dropdown-menu">
|
||||
{zz:channel type="son" typeid="$field['id']" void="vo"}
|
||||
<li class="nav-item {:IsActiveNav($cid,$vo['id'])?'active':''}">
|
||||
<a class="nav-link" href="{$vo['url']}" {if $vo['link_str']} target="_blank"{/if}>
|
||||
{$vo['title']}</a></li>
|
||||
{/zz:channel}
|
||||
</ul>
|
||||
{/if}
|
||||
</li>
|
||||
{/zz:channel}
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li class="nav-item"><a href="http://www.hulaxz.com/" target="_blank" class="primary_btn text-uppercase">更多模板</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
|
@ -0,0 +1,200 @@
|
|||
<header class="header_area">
|
||||
<div class="main_menu">
|
||||
<nav class="navbar navbar-expand-lg navbar-light">
|
||||
<div class="container">
|
||||
<!-- Brand and toggle get grouped for better mobile display -->
|
||||
<a class="navbar-brand logo_h" href="/"><img src="/template/default/img/logo.png" alt=""></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<!-- Collect the nav links, forms, and other content for toggling -->
|
||||
<div class="collapse navbar-collapse offset" id="navbarSupportedContent">
|
||||
<ul class="nav navbar-nav menu_nav justify-content-center">
|
||||
|
||||
<li class="nav-item {:IsActiveNav($cid)?'active':''}"><a class="nav-link" href="/">首页</a></li>
|
||||
{zz:channel type="top"}
|
||||
<li class="nav-item {if $field['child']} submenu dropdown{/if} {:IsActiveNav($cid,$field['id'])?'active':''}">
|
||||
{if $field['child']}
|
||||
<a href="{$field['url']}" class="nav-link">
|
||||
{else /}
|
||||
<a class="nav-link" href="{$field['url']}">
|
||||
{/if}
|
||||
{$field['title']}
|
||||
</a>
|
||||
|
||||
{if $field['child']}
|
||||
<ul class="dropdown-menu">
|
||||
{zz:channel type="son" typeid="$field['id']" void="vo"}
|
||||
<li class="nav-item {:IsActiveNav($cid,$vo['id'])?'active':''}">
|
||||
<a class="nav-link" href="{$vo['url']}" {if $vo['link_str']} target="_blank"{/if}>
|
||||
{$vo['title']}</a></li>
|
||||
{/zz:channel}
|
||||
</ul>
|
||||
{/if}
|
||||
</li>
|
||||
{/zz:channel}
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li class="nav-item"><a href="http://www.hulaxz.com/" target="_blank" class="primary_btn text-uppercase">更多模板</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<div class="header-main-plane">
|
||||
<div class="header-main container">
|
||||
<script>
|
||||
function openMenu() {
|
||||
$('body').css('overflow', 'hidden');
|
||||
$(".drawer-menu-plane").addClass("drawer-menu-plane-show");
|
||||
$(".menu-plane").appendTo($(".drawer-menu-list"));
|
||||
$(".user-menu-plane").appendTo($(".drawer-menu-list"));
|
||||
$(".menu-item-has-children").append('<div class="m-dropdown" onclick="mobile_menuclick(event)" ><i class="fa fa-angle-down"></i></div>')
|
||||
$(".user-menu-main").append('<div class="m-dropdown" onclick="mobile_menuclick(event)"><i class="fa fa-angle-down"></i></div>')
|
||||
|
||||
}
|
||||
|
||||
function closeMenu() {
|
||||
$('body').css('overflow', 'auto');
|
||||
$(".drawer-menu-plane").removeClass("drawer-menu-plane-show");
|
||||
$(".user-menu-plane").prependTo($(".header-menu"));
|
||||
$(".menu-plane").prependTo($(".header-menu"));
|
||||
$(".m-dropdown").remove();
|
||||
}
|
||||
|
||||
function openSearch() {
|
||||
$(".dialog-search-plane").addClass("dialog-search-plane-show");
|
||||
}
|
||||
|
||||
function closeSearch() {
|
||||
//$('body').css('overflow', 'auto');
|
||||
$(".dialog-search-plane").removeClass("dialog-search-plane-show");
|
||||
}
|
||||
</script>
|
||||
<div class="mobile-menu-btn" onclick="openMenu()">
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
<div class="drawer-menu-plane">
|
||||
<div class="drawer-menu-list">
|
||||
</div>
|
||||
<div class="drawer-menu-write" onclick="closeMenu()">
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-logo-plane">
|
||||
<div class="header-logo">
|
||||
<a href=""><img src="/uploads/article/2020/12/logo11.png" alt=""></a></div>
|
||||
</div>
|
||||
<div class="mobile-search-btn" onclick="openSearch()">
|
||||
<i class="fa fa-search"></i>
|
||||
</div>
|
||||
<div class="dialog-search-plane">
|
||||
<div class="dialog-mask" onclick="closeSearch()"></div>
|
||||
<div class="dialog-plane">
|
||||
<h2>搜索内容</h2>
|
||||
<form class="search-form" action="https://www.zyxpp.com" method="get" role="search">
|
||||
<div class="search-form-input-plane">
|
||||
<input type="text" class="search-keyword" name="s" placeholder="搜索内容" value="">
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" class="search-submit" value="">搜索</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="header-menu">
|
||||
<div class="menu-plane">
|
||||
<nav class="menu-header-plane">
|
||||
<ul id="menu-%e4%b8%8a%e6%96%b9%e5%af%bc%e8%88%aa%e6%a0%8f" class="menu-header-list">
|
||||
<li id="menu-item-27"
|
||||
class="menu-item current-menu-item current_page_item menu-item-27"><a href=""
|
||||
aria-current="page">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-shouye_huaban1"></use>
|
||||
</svg>
|
||||
首页</a></li>
|
||||
<li id="menu-item-411" class="menu-item menu-item-411"><a
|
||||
href="category/talk/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-business-management"></use>
|
||||
</svg>
|
||||
学习笔记</a></li>
|
||||
<li id="menu-item-388" class="menu-item menu-item-has-children menu-item-388"><a
|
||||
title="oracle甲骨文" href="#">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-Management_system"></use>
|
||||
</svg>
|
||||
oracle EBS</a>
|
||||
<ul class="sub-menu">
|
||||
<li id="menu-item-32" class="menu-item menu-item-32"><a title="Oracle-OM-销售物流"
|
||||
href="category/oracle-om/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-wuliuxiaocheche"></use>
|
||||
</svg>
|
||||
Oracle-OM-销售物流</a></li>
|
||||
<li id="menu-item-194" class="menu-item menu-item-194"><a
|
||||
title="Oracle-PROD-采购生产" href="category/oracle-pur-prod/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-shengchan"></use>
|
||||
</svg>
|
||||
Oracle-PROD-采购生产</a></li>
|
||||
<li id="menu-item-50" class="menu-item menu-item-50"><a
|
||||
title="Oracle-Finance-财务" href="category/oracle-finance/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-caiwu"></use>
|
||||
</svg>
|
||||
Oracle-Finance-财务</a></li>
|
||||
<li id="menu-item-61" class="menu-item menu-item-61"><a title="Oracle-PL/SQL"
|
||||
href="category/oracle-pl-sql/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-SQLxinjian"></use>
|
||||
</svg>
|
||||
Oracle-PL/SQL</a></li>
|
||||
<li id="menu-item-82" class="menu-item menu-item-82"><a
|
||||
title="Oracle-BI-Discoverer"
|
||||
href="category/oracle-bi-discoverer/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-baobiao"></use>
|
||||
</svg>
|
||||
Oracle-BI-Discoverer</a></li>
|
||||
<li id="menu-item-117" class="menu-item menu-item-117"><a title="Oracle-其他文档软件"
|
||||
href="category/oracle-download/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-ruanjianfuwu"></use>
|
||||
</svg>
|
||||
Oracle-其他文档软件</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li id="menu-item-138" class="menu-item menu-item-138"><a title="Asp.Net"
|
||||
href="category/dotnet/index.html">
|
||||
<svg class="icon" aria-hidden="true">
|
||||
<use xlink:href="#icon-weiruan"></use>
|
||||
</svg>
|
||||
Asp.Net</a></li>
|
||||
<li id="menu-item-62" class="menu-item menu-item-62"><a title="sql-server"
|
||||
href="category/sql-server/index.html">
|
||||
<svg class="icon" aria-hidden="true" style="color:#00868B">
|
||||
<use xlink:href="#icon-SQLserver"></use>
|
||||
</svg>
|
||||
sql-server</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="user-menu-plane">
|
||||
<div class="user-menu-pc-search" onclick="openSearch()" title="搜索">
|
||||
<i class="fal fa-search"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
|
@ -0,0 +1,150 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<link rel="icon" href="/template/default/img/favicon.png" type="image/png">
|
||||
<title>{$zzField['title']}_{:web_config('WEB_SITE_TITLE')}</title>
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="/template/default/css/bootstrap.css">
|
||||
<link rel="stylesheet" href="/template/default/vendors/linericon/style.css">
|
||||
<link rel="stylesheet" href="/template/default/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/template/default/vendors/owl-carousel/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/template/default/vendors/lightbox/simpleLightbox.css">
|
||||
<link rel="stylesheet" href="/template/default/vendors/nice-select/css/nice-select.css">
|
||||
<link rel="stylesheet" href="/template/default/vendors/animate-css/animate.css">
|
||||
<!-- main css -->
|
||||
<link rel="stylesheet" href="/template/default/css/style.css">
|
||||
<link rel="stylesheet" href="/template/default/css/responsive.css">
|
||||
</head>
|
||||
<body>
|
||||
<!--================Header Menu Area =================-->
|
||||
{include file="template/default/head.html"}
|
||||
<!--================Header Menu Area =================-->
|
||||
<!--================Home Banner Area =================-->
|
||||
<section class="home_banner_area">
|
||||
<div class="banner_inner">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-5">
|
||||
<div class="banner_content">
|
||||
<h2>
|
||||
呼啦资源网<br>
|
||||
{:web_config('WEB_SITE_TITLE')}
|
||||
</h2>
|
||||
<p>
|
||||
{:cn_substr(html2text(:web_config('WEB_SITE_DESCRIPTION')),100)}...
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-7">
|
||||
<div class="home_right_img">
|
||||
<img class="img-fluid" src="/template/default/img/banner/home-right.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--================End Home Banner Area =================-->
|
||||
|
||||
<!--================Blog Area =================-->
|
||||
<section class="blog_area">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8">
|
||||
<div class="blog_left_sidebar">
|
||||
|
||||
{zz:list pagesize="3"}
|
||||
<article class="row blog_item">
|
||||
<div class="col-md-3">
|
||||
<div class="blog_info text-right">
|
||||
<ul class="blog_meta list">
|
||||
<li><a>{$field['writer']}<i class="lnr lnr-user"></i></a></li>
|
||||
<li><a>{:MyDate('Y-m-d',$field['create_time'])}<i class="lnr lnr-calendar-full"></i></a></li>
|
||||
<li><a>{$field['view']}<i class="lnr lnr-eye"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<div class="blog_post">
|
||||
<img src="{$field['cover_path']}" alt="">
|
||||
<div class="blog_details">
|
||||
<a href="{$field['url']}">
|
||||
<h2>{$field['title']}</h2></a>
|
||||
<p>{:cn_substr($field['description'],400)}...</p>
|
||||
<a href="{$field['url']}" class="primary_btn"><span>查看更多</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
{/zz:list}
|
||||
|
||||
<nav class="blog-pagination justify-content-center d-flex">
|
||||
{$pager}
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="blog_right_sidebar">
|
||||
<aside class="single_sidebar_widget search_widget">
|
||||
<div class="input-group">
|
||||
<form action="{:url('Article/search')}" style="width: 100%;">
|
||||
<input type="text" value="{$kw}" name="kw" placeholder="输入关键字...回车键进行搜索" class="form-control" />
|
||||
</form>
|
||||
<!--<input type="text" class="form-control" placeholder="Search Posts">-->
|
||||
|
||||
</div><!-- /input-group -->
|
||||
<div class="br"></div>
|
||||
</aside>
|
||||
|
||||
<aside class="single_sidebar_widget popular_post_widget">
|
||||
<h3 class="widget_title">热点新闻</h3>
|
||||
|
||||
{zz:arclist row="4" typeid="85" orderby="create_time desc"}
|
||||
<div class="media post_item">
|
||||
<img src="/template/default/img/blog/popular-post/post{$i}.jpg" alt="post">
|
||||
<div class="media-body">
|
||||
<a href="{$field['url']}"><h3>{:cn_substr($field['title'],15)}...</h3></a>
|
||||
<p>{:MyDate('Y-m-d',$field['create_time'])}</p>
|
||||
</div>
|
||||
</div>
|
||||
{/zz:arclist}
|
||||
|
||||
<div class="br"></div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--================Blog Area =================-->
|
||||
<style type="text/css">
|
||||
.footer_area {
|
||||
padding-top: 80px !important;
|
||||
}
|
||||
</style>
|
||||
<!--================Footer Area =================-->
|
||||
{include file="template/default/footer.html"}
|
||||
<!--================End Footer Area =================-->
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="/template/default/js/jquery-3.2.1.min.js"></script>
|
||||
<script src="/template/default/js/popper.js"></script>
|
||||
<script src="/template/default/js/bootstrap.min.js"></script>
|
||||
<script src="/template/default/js/stellar.js"></script>
|
||||
<script src="/template/default/vendors/lightbox/simpleLightbox.min.js"></script>
|
||||
<script src="/template/default/vendors/nice-select/js/jquery.nice-select.min.js"></script>
|
||||
<script src="/template/default/vendors/isotope/imagesloaded.pkgd.min.js"></script>
|
||||
<script src="/template/default/vendors/isotope/isotope-min.js"></script>
|
||||
<script src="/template/default/vendors/owl-carousel/owl.carousel.min.js"></script>
|
||||
<script src="/template/default/js/jquery.ajaxchimp.min.js"></script>
|
||||
<script src="/template/default/js/mail-script.js"></script>
|
||||
<script src="/template/default/vendors/counter-up/jquery.waypoints.min.js"></script>
|
||||
<script src="/template/default/vendors/counter-up/jquery.counterup.min.js"></script>
|
||||
<script src="/template/default/js/theme.js"></script>
|
||||
</body>
|
||||
</html>
|
||||