Browse Source

统计

master
maochaoying 2 years ago
parent
commit
5b8545baae
  1. 2
      index.html
  2. 179
      nginx.conf
  3. 2
      src/components/CustomerService/index.vue
  4. 4
      src/components/MetalPlate/Bottom/NewBottomMetal.vue
  5. 4
      src/components/MetalPlate/Bottom/NewBottomWhiteMetal.vue

2
index.html

@ -26,7 +26,7 @@
var _hmt = _hmt || []
;(function () {
var hm = document.createElement('script')
hm.src = 'https://hm.baidu.com/hm.js?03c9a402c87914c60dbeb07d7c738528'
hm.src = 'https://hm.baidu.com/hm.js?aead83b1b0f20ee468cdb1a81eb2e9c8'
var s = document.getElementsByTagName('script')[0]
s.parentNode.insertBefore(hm, s)
})()

179
nginx.conf

@ -0,0 +1,179 @@
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name www.iflytop.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root apps/pc/dist;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
location /mobile {
alias apps/mobile/dist;
index index.html index.htm;
try_files $uri $uri/ /mobile/index.html;
}
location /pc-design {
alias apps/pc-design/dist;
index index.html index.htm;
try_files $uri $uri/ /pc-design/index.html;
}
location /pc-hardware {
alias apps/pc-hardware/dist;
index index.html index.htm;
try_files $uri $uri/ /pc-hardware/index.html;
}
location /pc-metal {
alias apps/pc-metal/dist;
index index.html index.htm;
try_files $uri $uri/ /pc-metal/index.html;
}
location /zsjyapi/ {
proxy_pass http://localhost:8080/zsjyapi/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location /test_result_image/ {
proxy_pass http://localhost:8080/test_result_image/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
server {
listen 80;
server_name www.hjyd88.com;
location / {
root apps/hjyd/dist;
if ( $http_user_agent ~ "(MIDP)|(WAP)|(UP.Browser)|(Smartphone)|(Obigo)|(Mobile)|(AU.Browser)|(wxd.Mms)|(WxdB.Browser)|(CLDC)|(UP.Link)|(KM.Browser)|(UCWEB)|(SEMC-Browser)|(Mini)|(Symbian)|(Palm)|(Nokia)|(Panasonic)|(MOT-)|(SonyEricsson)|(NEC-)|(Alcatel)|(Ericsson)|(BENQ)|(BenQ)|(Amoisonic)|(Amoi-)|(Capitel)|(PHILIPS)|(SAMSUNG)|(Lenovo)|(Mitsu)|(Motorola)|(SHARP)|(WAPPER)|(LG-)|(LG/)|(EG900)|(CECT)|(Compal)|(kejian)|(Bird)|(BIRD)|(G900/V1.0)|(Arima)|(CTL)|(TDG)|(Daxian)|(DAXIAN)|(DBTEL)|(Eastcom)|(EASTCOM)|(PANTECH)|(Dopod)|(Haier)|(HAIER)|(KONKA)|(KEJIAN)|(LENOVO)|(Soutec)|(SOUTEC)|(SAGEM)|(SEC-)|(SED-)|(EMOL-)|(INNO55)|(ZTE)|(iPhone)|(Android)|(Windows CE)|(Wget)|(Java)|(curl)|(Opera)" ) {
root apps/mobile-hjyd/dist;
}
index index.html index.htm;
}
}
# HTTPS server
#
server {
listen 443 ssl;
server_name www.iflytop.com;
# ssl on;
ssl_certificate D:\website_key\www.iflytop.com.pem;
ssl_certificate_key D:\website_key\www.iflytop.com.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
#自定义设置使用的TLS协议的类型以及加密套件(以下为配置示例,请您自行评估是否需要配置)
#TLS协议版本越高,HTTPS通信的安全性越高,但是相较于低版本TLS协议,高版本TLS协议对浏览器的兼容性较差。
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
#表示优先使用服务端加密套件。默认开启
ssl_prefer_server_ciphers on;
location / {
root apps/pc/dist;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
location /mobile {
alias apps/mobile/dist;
index index.html index.htm;
try_files $uri $uri/ /mobile/index.html;
}
location /pc-design {
alias apps/pc-design/dist;
index index.html index.htm;
try_files $uri $uri/ /pc-design/index.html;
}
location /pc-hardware {
alias apps/pc-hardware/dist;
index index.html index.htm;
try_files $uri $uri/ /pc-hardware/index.html;
}
location /pc-metal {
alias apps/pc-metal/dist;
index index.html index.htm;
try_files $uri $uri/ /pc-metal/index.html;
}
location /zsjyapi/ {
proxy_pass http://localhost:8080/zsjyapi/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location /test_result_image/ {
proxy_pass http://localhost:8080/test_result_image/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}

2
src/components/CustomerService/index.vue

@ -45,7 +45,7 @@
</g>
<g>
<path
d="M44.75,8.780000000000001L49.25,8.780000000000001L49.25,9.68L44.75,9.68L44.75,8.780000000000001ZM42.71,6.76L42.71,7.51L51.24,7.51L51.24,6.76L47.46,6.76L47.46,6.05L50.519999999999996,6.05L50.519999999999996,5.3100000000000005L47.46,5.3100000000000005L47.46,4.55672L46.519999999999996,4.55672L46.519999999999996,5.3100000000000005L43.49,5.3100000000000005L43.49,6.05L46.519999999999996,6.05L46.519999999999996,6.76L42.71,6.76ZM44.47,13.9347L44.48,13.9247C44.7,13.8145,45.1,13.7244,47.66,13.1136C47.63,12.9234,47.62,12.563,47.64,12.3227L45.57,12.7833L45.57,11.38141C46.09,11.10094,46.57,10.79062,46.95,10.45016C47.75,12.1723,49.11,13.3239,51.11,13.8245C51.230000000000004,13.5742,51.480000000000004,13.2137,51.67,13.0236C50.76,12.8333,49.97,12.5128,49.32,12.0623C49.89,11.73188,50.56,11.30125,51.1,10.88078L50.35,10.3C49.94,10.69047,49.26,11.19109,48.69,11.55156C48.35,11.21109,48.06,10.83063,47.83,10.41L50.2,10.41L50.2,8.059999999999999L43.84,8.059999999999999L43.84,10.41L45.8,10.41C44.87,10.97078,43.52,11.43141,42.29,11.65172C42.47,11.83203,42.72,12.1623,42.84,12.3827C43.44,12.2425,44.07,12.0522,44.67,11.80188L44.67,12.5128C44.67,12.9034,44.37,13.0436,44.16,13.1136C44.28,13.3039,44.41,13.6544,44.47,13.8847L44.47,13.9347ZM60.25,4.9473400000000005C59.91,5.44891,59.53,5.93,59.11,6.38L59.11,5.85L56.78,5.85L56.78,4.55609L55.8,4.55609L55.8,5.85L53.38,5.85L53.38,6.72L55.8,6.72L55.8,7.93L52.49,7.93L52.49,8.809999999999999L56.28,8.809999999999999C55.05,9.65,53.68,10.34,52.26,10.86C52.46,11.05,52.79,11.45,52.93,11.66C53.67,11.35,54.41,11,55.12,10.61L55.12,12.39C55.12,13.42,55.519999999999996,13.69,56.94,13.69C57.24,13.69,59.19,13.69,59.510000000000005,13.69C60.72,13.69,61.03,13.32,61.18,11.87C60.91,11.82,60.510000000000005,11.67,60.28,11.52C60.21,12.64,60.1,12.84,59.45,12.84C58.989999999999995,12.84,57.34,12.84,56.99,12.84C56.230000000000004,12.84,56.1,12.77,56.1,12.39L56.1,11.63C57.56,11.3,59.16,10.84,60.34,10.33L59.54,9.64C58.72,10.06,57.4,10.5,56.1,10.83L56.1,10.03C56.7,9.66,57.28,9.25,57.84,8.809999999999999L61.519999999999996,8.809999999999999L61.519999999999996,7.93L58.870000000000005,7.93C59.71,7.16,60.47,6.3,61.120000000000005,5.37859L60.25,4.9473400000000005ZM56.78,7.93L56.78,6.72L58.79,6.72C58.379999999999995,7.14,57.94,7.55,57.47,7.93L56.78,7.93ZM64.47,4.58L64.47,8.559999999999999C64.47,10.33,64.31,11.98,62.92,13.2023C63.14,13.3328,63.480000000000004,13.6336,63.629999999999995,13.8241C65.16,12.4503,65.35,10.56,65.35,8.57L65.35,4.58L64.47,4.58ZM62.85,5.71L62.85,10.58L63.7,10.58L63.7,5.71L62.85,5.71ZM66.14,7.01L66.14,12.3902L67.01,12.3902L67.01,7.86L68.16,7.86L68.16,13.8241L69.06,13.8241L69.06,7.86L70.31,7.86L70.31,11.39C70.31,11.49,70.28,11.53,70.17,11.53C70.07,11.53,69.77,11.53,69.43,11.52C69.53999999999999,11.75,69.66,12.1,69.69,12.34C70.23,12.34,70.59,12.33,70.86,12.19C71.12,12.05,71.19,11.81,71.19,11.41L71.19,7.01L69.06,7.01L69.06,5.92L71.51,5.92L71.51,5.0600000000000005L65.83,5.0600000000000005L65.83,5.92L68.16,5.92L68.16,7.01L66.14,7.01Z"
d="M46.58,10.73281C47.59,11.02297,49.04,11.48328,49.75,11.77359L50.13,10.93297C49.38,10.66281,47.93,10.2425,46.95,10.00234L46.58,10.73281ZM45.59,12.4539C47.06,12.7942,49.1,13.4045,50.11,13.8148L50.5,12.9542C49.43,12.5441,47.37,11.99359,45.95,11.70344L45.59,12.4539ZM44.57,4.54641C44.03,6.03,43.13,7.50078,42.18,8.441410000000001C42.34,8.66156,42.6,9.17188,42.69,9.40203C42.97,9.11188,43.25,8.771560000000001,43.52,8.41141L43.52,13.8348L44.46,13.8348L44.46,6.95047C44.85,6.27,45.19,5.55,45.47,4.827500000000001L44.57,4.54641ZM49.63,6.32C49.24,6.90047,48.730000000000004,7.42078,48.13,7.88109C47.64,7.50078,47.22,7.07047,46.9,6.60016L47.08,6.32L49.63,6.32ZM46.93,4.566409999999999C46.56,5.529999999999999,45.87,6.74031,44.84,7.64094C45.05,7.78094,45.35,8.091090000000001,45.49,8.311250000000001C45.83,7.98109,46.15,7.63094,46.42,7.27063C46.71,7.67094,47.05,8.04109,47.42,8.381409999999999C46.56,8.911719999999999,45.6,9.31188,44.64,9.56203C44.83,9.76219,45.06,10.1425,45.15,10.38266C46.19,10.0725,47.230000000000004,9.60219,48.17,8.971720000000001C49.04,9.572189999999999,50.05,10.03234,51.16,10.30266C51.3,10.04234,51.56,9.662189999999999,51.769999999999996,9.45203C50.72,9.24188,49.75,8.88172,48.92,8.40141C49.769999999999996,7.69094,50.49,6.82031,50.95,5.8L50.33,5.48L50.16,5.52L47.519999999999996,5.52C47.65,5.24906,47.769999999999996,4.98812,47.88,4.72703L46.93,4.566409999999999ZM60.25,4.9473400000000005C59.91,5.44891,59.53,5.93,59.11,6.38L59.11,5.85L56.78,5.85L56.78,4.55609L55.8,4.55609L55.8,5.85L53.38,5.85L53.38,6.72L55.8,6.72L55.8,7.93L52.49,7.93L52.49,8.809999999999999L56.28,8.809999999999999C55.05,9.65,53.68,10.34,52.26,10.86C52.46,11.05,52.79,11.45,52.93,11.66C53.67,11.35,54.41,11,55.12,10.61L55.12,12.39C55.12,13.42,55.519999999999996,13.69,56.94,13.69C57.24,13.69,59.19,13.69,59.510000000000005,13.69C60.72,13.69,61.03,13.32,61.18,11.87C60.91,11.82,60.510000000000005,11.67,60.28,11.52C60.21,12.64,60.1,12.84,59.45,12.84C58.989999999999995,12.84,57.34,12.84,56.99,12.84C56.230000000000004,12.84,56.1,12.77,56.1,12.39L56.1,11.63C57.56,11.3,59.16,10.84,60.34,10.33L59.54,9.64C58.72,10.06,57.4,10.5,56.1,10.83L56.1,10.03C56.7,9.66,57.28,9.25,57.84,8.809999999999999L61.519999999999996,8.809999999999999L61.519999999999996,7.93L58.870000000000005,7.93C59.71,7.16,60.47,6.3,61.120000000000005,5.37859L60.25,4.9473400000000005ZM56.78,7.93L56.78,6.72L58.79,6.72C58.379999999999995,7.14,57.94,7.55,57.47,7.93L56.78,7.93ZM64.47,4.58L64.47,8.559999999999999C64.47,10.33,64.31,11.98,62.92,13.2023C63.14,13.3328,63.480000000000004,13.6336,63.629999999999995,13.8241C65.16,12.4503,65.35,10.56,65.35,8.57L65.35,4.58L64.47,4.58ZM62.85,5.71L62.85,10.58L63.7,10.58L63.7,5.71L62.85,5.71ZM66.14,7.01L66.14,12.3902L67.01,12.3902L67.01,7.86L68.16,7.86L68.16,13.8241L69.06,13.8241L69.06,7.86L70.31,7.86L70.31,11.39C70.31,11.49,70.28,11.53,70.17,11.53C70.07,11.53,69.77,11.53,69.43,11.52C69.53999999999999,11.75,69.66,12.1,69.69,12.34C70.23,12.34,70.59,12.33,70.86,12.19C71.12,12.05,71.19,11.81,71.19,11.41L71.19,7.01L69.06,7.01L69.06,5.92L71.51,5.92L71.51,5.0600000000000005L65.83,5.0600000000000005L65.83,5.92L68.16,5.92L68.16,7.01L66.14,7.01Z"
fill="#040404"
fill-opacity="1"
/>

4
src/components/MetalPlate/Bottom/NewBottomMetal.vue

@ -32,7 +32,7 @@
<span>6</span>
<span>4</span>
</p>
<span>| 老师</span>
<span>| 老师</span>
</div>
<div class="line_phone">
<span>商务咨询</span>
@ -49,7 +49,7 @@
<span>6</span>
<span>4</span>
</p>
<span>| 老师</span>
<span>| 老师</span>
</div>
</div>
</div>

4
src/components/MetalPlate/Bottom/NewBottomWhiteMetal.vue

@ -32,7 +32,7 @@
<span>6</span>
<span>4</span>
</p>
<span>| 老师</span>
<span>| 老师</span>
</div>
<div class="line_phone">
<span>商务咨询</span>
@ -49,7 +49,7 @@
<span>6</span>
<span>4</span>
</p>
<span>| 老师</span>
<span>| 老师</span>
</div>
</div>
</div>

Loading…
Cancel
Save