版本初始化
77
src/assets/css/common.less
Normal file
@@ -0,0 +1,77 @@
|
||||
// 公共的布局样式
|
||||
html,
|
||||
body,
|
||||
#app {
|
||||
height: 100%;
|
||||
}
|
||||
// 全局样式
|
||||
body .el-table th.gutter{
|
||||
display: table-cell!important;
|
||||
}
|
||||
// 分页
|
||||
.block {
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
// ====公共布局===============================================
|
||||
.common-box {
|
||||
min-height: calc(100vh - 84px);
|
||||
padding: 15px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 6px;
|
||||
background-color: #fff;
|
||||
|
||||
.common-title {
|
||||
height: 56px;
|
||||
font-size: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.common-title-p {
|
||||
height: 56px;
|
||||
font-size: 17px;
|
||||
font-weight: bold;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.common-search {
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
.common-search-left {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.common-search-right {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// .common-body {}
|
||||
}
|
||||
|
||||
// 分页器total 靠左边
|
||||
.el-pagination__rightwrapper{
|
||||
float:left;
|
||||
}
|
||||
// ------------返回按钮 ------------------
|
||||
.p-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: #909399;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 4px;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
}
|
||||
399
src/assets/css/reset.css
Normal file
@@ -0,0 +1,399 @@
|
||||
/**
|
||||
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
|
||||
* http://cssreset.com
|
||||
*/
|
||||
|
||||
html,
|
||||
body,
|
||||
div,
|
||||
span,
|
||||
applet,
|
||||
object,
|
||||
iframe,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
blockquote,
|
||||
pre,
|
||||
a,
|
||||
abbr,
|
||||
acronym,
|
||||
address,
|
||||
big,
|
||||
cite,
|
||||
code,
|
||||
del,
|
||||
dfn,
|
||||
em,
|
||||
img,
|
||||
ins,
|
||||
kbd,
|
||||
q,
|
||||
s,
|
||||
samp,
|
||||
small,
|
||||
strike,
|
||||
strong,
|
||||
sub,
|
||||
sup,
|
||||
tt,
|
||||
var,
|
||||
b,
|
||||
u,
|
||||
i,
|
||||
center,
|
||||
dl,
|
||||
dt,
|
||||
dd,
|
||||
ol,
|
||||
ul,
|
||||
li,
|
||||
fieldset,
|
||||
form,
|
||||
label,
|
||||
legend,
|
||||
table,
|
||||
caption,
|
||||
tbody,
|
||||
tfoot,
|
||||
thead,
|
||||
tr,
|
||||
th,
|
||||
td,
|
||||
article,
|
||||
aside,
|
||||
canvas,
|
||||
details,
|
||||
embed,
|
||||
figure,
|
||||
figcaption,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
output,
|
||||
ruby,
|
||||
section,
|
||||
summary,
|
||||
time,
|
||||
mark,
|
||||
audio,
|
||||
video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
/* font-size: 100%; */
|
||||
/* font: inherit; */
|
||||
/* font-weight: normal; */
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/* HTML5 display-role reset for older browsers 旧浏览器的HTML5显示角色重置 */
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
blockquote,
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
blockquote:before,
|
||||
blockquote:after,
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
/* custom 隐藏旋转 div 元素的背面 */
|
||||
a {
|
||||
color: #7e8c8d;
|
||||
text-decoration: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
}
|
||||
|
||||
/* webkit滚动条样式 */
|
||||
/* ::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
} */
|
||||
|
||||
::-webkit-scrollbar-track-piece {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:vertical {
|
||||
height: 5px;
|
||||
background-color: rgba(125, 125, 125, 0.7);
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:horizontal {
|
||||
width: 5px;
|
||||
background-color: rgba(125, 125, 125, 0.7);
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
/* font-family: 'Arial',
|
||||
'Microsoft YaHei',
|
||||
'黑体',
|
||||
'宋体',
|
||||
'微软雅黑',
|
||||
sans-serif; */
|
||||
/* font-family: "Helvetica Neue",
|
||||
Helvetica,
|
||||
"PingFang SC",
|
||||
"Hiragino Sans GB",
|
||||
"Microsoft YaHei",
|
||||
"微软雅黑",
|
||||
Arial,
|
||||
sans-serif; */
|
||||
font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1;
|
||||
-webkit-text-size-adjust: none;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
html {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
/* 影藏滚动条的样式 */
|
||||
body::-webkit-scrollbar {
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
}
|
||||
|
||||
/*清除浮动*/
|
||||
.clearfix:before,
|
||||
.clearfix:after {
|
||||
content: '';
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
/*隐藏*/
|
||||
.dn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 边框测试线 */
|
||||
.bd {
|
||||
border: 1px solid red;
|
||||
}
|
||||
|
||||
/* 字体样式 */
|
||||
.fz12px {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.fz14px {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.fz16px {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.fz18px {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.fz20px {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.fz22px {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.fz23px {
|
||||
font-size: 23px;
|
||||
}
|
||||
|
||||
.fz24px {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.fz26px {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.fz28px {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.fz30px {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
/* 左右外边距 */
|
||||
.mr5px {
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
.mr10px {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.mrr5px {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.mrr10px {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.mrr15px {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.mrl5px {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.mrl10px {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.mrl12px {
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
.mrl15px {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.mrl18px {
|
||||
margin-left: 18px;
|
||||
}
|
||||
|
||||
.mrr100px {
|
||||
margin-right: 100px;
|
||||
}
|
||||
|
||||
/* 上下外边距 */
|
||||
.mt10px {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.mt20px {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.mb10px {
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
.mb20px {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* 颜色 */
|
||||
.col8d8d8d {
|
||||
color: #8d8d8d;
|
||||
}
|
||||
|
||||
.col-69c23c {
|
||||
color: #69c23c;
|
||||
}
|
||||
|
||||
.col-f5a327 {
|
||||
color: #f5a327;
|
||||
}
|
||||
|
||||
.col-fa5d62 {
|
||||
color: #fa5d62;
|
||||
}
|
||||
|
||||
.col-f56c6c {
|
||||
color: #f56c6c;
|
||||
}
|
||||
|
||||
.col-67c23a {
|
||||
color: #67c23a;
|
||||
}
|
||||
|
||||
/* feeding-tips页面 颜色 */
|
||||
.col-caf982_20 {
|
||||
background-color: rgba(202, 249, 130, 0.2);
|
||||
}
|
||||
|
||||
.col-70b603 {
|
||||
color: #70b603;
|
||||
}
|
||||
|
||||
.col-facd91_24 {
|
||||
background-color: rgba(250, 205, 145, 0.24);
|
||||
}
|
||||
|
||||
.col-f59a23 {
|
||||
color: #f59a23;
|
||||
}
|
||||
|
||||
.col-80ffff_09 {
|
||||
background-color: rgba(128, 255, 255, 0.09);
|
||||
}
|
||||
|
||||
.col-00bfbf {
|
||||
color: #00bfbf;
|
||||
}
|
||||
|
||||
.col-d9001b_09 {
|
||||
background-color: rgba(217, 0, 27, 0.09);
|
||||
}
|
||||
|
||||
.col-d9001b {
|
||||
color: #d9001b;
|
||||
}
|
||||
|
||||
.col-facd91_09 {
|
||||
background-color: rgba(250, 205, 145, 0.09);
|
||||
}
|
||||
|
||||
strong {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
em {
|
||||
font-style: italic !important;
|
||||
}
|
||||
159
src/assets/fonts/iconfont.css
Normal file
@@ -0,0 +1,159 @@
|
||||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 3368735 */
|
||||
src: url('iconfont.woff2?t=1687687235044') format('woff2'),
|
||||
url('iconfont.woff?t=1687687235044') format('woff'),
|
||||
url('iconfont.ttf?t=1687687235044') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.ai-yangniuxueyuan:before {
|
||||
content: "\e627";
|
||||
}
|
||||
|
||||
.ai-xianshangwenzhen:before {
|
||||
content: "\e61e";
|
||||
}
|
||||
|
||||
.ai-jiaoliushequ:before {
|
||||
content: "\e61c";
|
||||
}
|
||||
|
||||
.ai-hangqing-wulianwang:before {
|
||||
content: "\e618";
|
||||
}
|
||||
|
||||
.ai-jiaqin:before {
|
||||
content: "\e62f";
|
||||
}
|
||||
|
||||
.ai-a-jiankangguanli:before {
|
||||
content: "\e626";
|
||||
}
|
||||
|
||||
.ai-a-wenzhenyiyuan:before {
|
||||
content: "\e623";
|
||||
}
|
||||
|
||||
.ai-a-yangniuxueyuan:before {
|
||||
content: "\e624";
|
||||
}
|
||||
|
||||
.ai-a-jiaoliushequ:before {
|
||||
content: "\e625";
|
||||
}
|
||||
|
||||
.ai-fenwubaoshou:before {
|
||||
content: "\e61d";
|
||||
}
|
||||
|
||||
.ai-luguanli:before {
|
||||
content: "\e61b";
|
||||
}
|
||||
|
||||
.ai-baoxianguanli:before {
|
||||
content: "\e61a";
|
||||
}
|
||||
|
||||
.ai-shouye:before {
|
||||
content: "\e619";
|
||||
}
|
||||
|
||||
.ai-baoxiangongsi:before {
|
||||
content: "\e610";
|
||||
}
|
||||
|
||||
.ai-zhifu:before {
|
||||
content: "\e611";
|
||||
}
|
||||
|
||||
.ai-shangchuancailiao:before {
|
||||
content: "\e612";
|
||||
}
|
||||
|
||||
.ai-lipeishouli:before {
|
||||
content: "\e613";
|
||||
}
|
||||
|
||||
.ai-bangdingshebei:before {
|
||||
content: "\e614";
|
||||
}
|
||||
|
||||
.ai-heyanshebei:before {
|
||||
content: "\e615";
|
||||
}
|
||||
|
||||
.ai-tijiaobaodanshenqing:before {
|
||||
content: "\e616";
|
||||
}
|
||||
|
||||
.ai-baoxianbaoan:before {
|
||||
content: "\e617";
|
||||
}
|
||||
|
||||
.ai-dianzijianyi:before {
|
||||
content: "\e60f";
|
||||
}
|
||||
|
||||
.ai-jianyirenzheng:before {
|
||||
content: "\e60e";
|
||||
}
|
||||
|
||||
.ai-xipusuyuan:before {
|
||||
content: "\e60d";
|
||||
}
|
||||
|
||||
.ai-huanjingguanli:before {
|
||||
content: "\e60c";
|
||||
}
|
||||
|
||||
.ai-yangguanli:before {
|
||||
content: "\e60b";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben15:before {
|
||||
content: "\e601";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben14:before {
|
||||
content: "\e602";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben11:before {
|
||||
content: "\e603";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben10:before {
|
||||
content: "\e604";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben17:before {
|
||||
content: "\e605";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben16:before {
|
||||
content: "\e606";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben18:before {
|
||||
content: "\e607";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben12:before {
|
||||
content: "\e608";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben13:before {
|
||||
content: "\e609";
|
||||
}
|
||||
|
||||
.ai-a-ai_huaban1fuben19:before {
|
||||
content: "\e60a";
|
||||
}
|
||||
|
||||
BIN
src/assets/fonts/iconfont.ttf
Normal file
BIN
src/assets/fonts/iconfont.woff
Normal file
BIN
src/assets/fonts/iconfont.woff2
Normal file
BIN
src/assets/img/111.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
src/assets/img/222.jpg
Normal file
|
After Width: | Height: | Size: 153 KiB |
BIN
src/assets/img/333.jpg
Normal file
|
After Width: | Height: | Size: 165 KiB |
BIN
src/assets/img/444.jpg
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
src/assets/img/555.jpg
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
src/assets/img/JYHQR.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
src/assets/img/SCQR.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/assets/img/error.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/assets/img/loan-list/01.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
src/assets/img/loan-list/02.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
src/assets/img/loan-list/03.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
src/assets/img/loan-list/04.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
src/assets/img/normal.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/img/skyfont.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
src/assets/img/tougao.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
src/assets/img/wudingwei.png
Normal file
|
After Width: | Height: | Size: 34 KiB |