Commit 33ed4887 by liangjianmin

js

parent 8dce21ce
Showing with 337 additions and 97 deletions
[.ShellClassInfo]
IconFile=C:\Program Files\FolderPainter\Icons\Pack_01\03.ico
IconIndex=0
...@@ -370,6 +370,8 @@ export const apis = { ...@@ -370,6 +370,8 @@ export const apis = {
selfSampleCreate: productionUrlApi + '/order/selfsamplecreate', selfSampleCreate: productionUrlApi + '/order/selfsamplecreate',
/** 获取用户领取机会、邀约人数*/ /** 获取用户领取机会、邀约人数*/
getusersampleinfo: productionUrlApi + '/user/getusersampleinfo', getusersampleinfo: productionUrlApi + '/user/getusersampleinfo',
/** 获取用户领取机会、邀约人数*/
getUserSpecialInfo: productionUrlApi + '/user/getUserSpecialInfo',
/** 自营样片邀约登录接口*/ /** 自营样片邀约登录接口*/
loginsampleaction: productionUrlApi + '/login/sampleaction', loginsampleaction: productionUrlApi + '/login/sampleaction',
/** 获取样片列表*/ /** 获取样片列表*/
...@@ -465,7 +467,8 @@ export const apis = { ...@@ -465,7 +467,8 @@ export const apis = {
/** /**
* 图片上传 * 图片上传
*/ */
uploadImg:urlApi+'/oss/upload' uploadImg:urlApi+'/oss/upload',
} }
...@@ -757,6 +760,13 @@ export const services = { ...@@ -757,6 +760,13 @@ export const services = {
} }
}) })
}, },
getUserSpecialInfo(params) {
return axios.get(apis.getUserSpecialInfo, {
params: {
...params
}
})
},
getSampleInfo(params) { getSampleInfo(params) {
return axios.post(apis.getsampleinfo, params) return axios.post(apis.getsampleinfo, params)
}, },
......
...@@ -74,8 +74,9 @@ img { ...@@ -74,8 +74,9 @@ img {
float: left; float: left;
_display: inline; _display: inline;
} }
.f-orange { .f-orange {
color: #ffa200!important; color: #ffa200 !important;
} }
.fr { .fr {
...@@ -131,15 +132,43 @@ html, body { ...@@ -131,15 +132,43 @@ html, body {
body { body {
overflow-x: hidden; overflow-x: hidden;
} }
.f-blue{color:#1080d0;}
.f-red{color:#ff0000;} .f-blue {
.f-999{color:#999;} color: #1080d0;
.f-333{color:#666;} }
.fw{font-weight: bold;}
.ta-c{text-align: center;} .f-red {
.ta-l{text-align: left;} color: #ff0000;
.ta-r{text-align: right;} }
.mt-10{margin-top: 10px;}
.f-999 {
color: #999;
}
.f-333 {
color: #666;
}
.fw {
font-weight: bold;
}
.ta-c {
text-align: center;
}
.ta-l {
text-align: left;
}
.ta-r {
text-align: right;
}
.mt-10 {
margin-top: 10px;
}
.emptys { .emptys {
margin-left: -1px; margin-left: -1px;
width: 1px; width: 1px;
...@@ -151,16 +180,19 @@ body { ...@@ -151,16 +180,19 @@ body {
@media (min-width: 750px) { @media (min-width: 750px) {
html { html {
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.5);
body { body {
max-width: 480px; max-width: 480px;
margin: 0 auto; margin: 0 auto;
background: #fff; background: #fff;
.main-interface { .main-interface {
.container-wrap { .container-wrap {
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 10px; width: 10px;
height: 11px; height: 11px;
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
background-color: #ffffff; background-color: #ffffff;
box-shadow: 0px 0px 0px 0px rgba(73, 73, 73, 0.92); box-shadow: 0px 0px 0px 0px rgba(73, 73, 73, 0.92);
...@@ -168,6 +200,7 @@ body { ...@@ -168,6 +200,7 @@ body {
border: solid 1px #e5e5e5; border: solid 1px #e5e5e5;
padding: 2px; padding: 2px;
} }
&::-webkit-scrollbar-track { &::-webkit-scrollbar-track {
background-color: #eeeeee; background-color: #eeeeee;
box-shadow: inset 1px 3px 5px 0px rgba(192, 186, 186, 0.75); box-shadow: inset 1px 3px 5px 0px rgba(192, 186, 186, 0.75);
...@@ -195,6 +228,48 @@ body { ...@@ -195,6 +228,48 @@ body {
} }
.column {
display: flex;
flex-direction: column;
}
.row {
display: flex;
flex-direction: row;
}
.boxsiz {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* 两侧对齐 */
.bothSide {
justify-content: space-between;
}
/* 平均分布 */
.avarage {
justify-content: space-around;
}
/* 水平居中 */
.rowCenter {
justify-content: center;
}
/* 垂直居中 */
.verCenter {
align-items: center;
}
.boxFlex {
-webkit-box-flex: 1;
-moz-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html *{outline:0;-webkit-text-size-adjust:none !important;-webkit-tap-highlight-color:transparent !important}html,body{font-family:sans-serif;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,menu,nav,section{margin:0;padding:0}button,input,select,textarea{font-size:100%;border:none;-webkit-appearance:none}input[type=button],input[type=file],input[type=submit]{cursor:pointer}table{border-collapse:collapse;border-spacing:0}ol,ul,dl{list-style:none}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:500}em,b,i{font-style:normal}a{text-decoration:none}img{border:none}.clr{*zoom:1;clear:both}.clr:after{content:".";clear:both;height:0;visibility:hidden;display:block}.fl{float:left;_display:inline}.f-orange{color:#ffa200 !important}.fr{float:right;_display:inline}.va-t{vertical-align:top}.va-m{vertical-align:middle}.va-b{vertical-align:bottom}.i-hide{display:none}.i-show{display:block}.lineBlock{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal}.lbBox{font-size:0 !important;*word-spacing:-1px !important}.boxsiz{-webkit-box-sizing:border-box;box-sizing:border-box}html,body{width:100%;height:100%;-webkit-overflow-scrolling:touch}body{overflow-x:hidden}.f-blue{color:#1080d0}.f-red{color:#ff0000}.f-999{color:#999}.f-333{color:#666}.fw{font-weight:bold}.ta-c{text-align:center}.ta-l{text-align:left}.ta-r{text-align:right}.mt-10{margin-top:10px}.emptys{margin-left:-1px;width:1px;height:100%;font-size:0;vertical-align:middle}@media (min-width: 750px){html{background:rgba(0,0,0,0.5)}html body{max-width:480px;margin:0 auto;background:#fff}html body .main-interface .container-wrap::-webkit-scrollbar{width:10px;height:11px}html body .main-interface .container-wrap::-webkit-scrollbar-thumb{background-color:#ffffff;box-shadow:0px 0px 0px 0px rgba(73,73,73,0.92);border-radius:10px;border:solid 1px #e5e5e5;padding:2px}html body .main-interface .container-wrap::-webkit-scrollbar-track{background-color:#eeeeee;box-shadow:inset 1px 3px 5px 0px rgba(192,186,186,0.75);border-radius:10px}}#app{height:100%}.navigator{order:1;width:100%;height:2rem;position:fixed;bottom:0;left:0;right:0;z-index:2019}.navigator ul{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:100%;background-color:#ffffff;box-shadow:0rem 0rem 0.12rem 0rem rgba(196,196,196,0.87);justify-content:center;align-items:center}.navigator ul li{position:relative;-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center}.navigator ul li a{display:block}.navigator ul li a .cart{position:absolute;left:50%;top:-8px;margin-left:-2px;color:#fff;font-size:12px;font-weight:500;text-align:center;padding:0 3px;min-width:16px;line-height:14px;border:1px solid #fff;border-radius:16px;background-color:#f44;transform:translateX(50%);transform-origin:100%}.navigator ul li a i{width:26px;height:26px;display:block;margin:0 auto;color:#d5d5d5;font-size:25px;text-align:center}.navigator ul li a .ico-1{background:url("../images/home/i1.png") no-repeat center center;background-size:cover}.navigator ul li a .ico-2{background:url("../images/home/i2.png") no-repeat center center;background-size:cover}.navigator ul li a .ico-3{background:url("../images/home/i3.png") no-repeat center center;background-size:cover}.navigator ul li a .ico-4{background:url("../images/home/i4.png") no-repeat center center;background-size:cover}.navigator ul li a .ico-5{background:url("../images/home/i5.png") no-repeat center center;background-size:cover}.navigator ul li a p{margin-top:0.133rem;font-size:10px;color:#adadad}.navigator ul li.curr i{color:#57a1f4}.navigator ul li.curr .ico-1{background:url("../images/home/i1_s.png") no-repeat center center;background-size:cover}.navigator ul li.curr .ico-2{background:url("../images/home/i2_s.png") no-repeat center center;background-size:cover}.navigator ul li.curr .ico-3{background:url("../images/home/i3_s.png") no-repeat center center;background-size:cover}.navigator ul li.curr .ico-4{background:url("../images/home/i4_s.png") no-repeat center center;background-size:cover}.navigator ul li.curr .ico-5{background:url("../images/home/i5_s.png") no-repeat center center;background-size:cover}.navigator ul li.curr p{color:#4e8eee}.loading-background{background:transparent;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);display:flex;justify-content:center;flex-direction:column;z-index:99}.hot-price{border:1px solid red;border-radius:6px;display:inline-block;padding:0 4px;color:red;font-size:12px}.slide-bar{position:fixed;right:0;bottom:23%;z-index:3000}.slide-bar .customer-service{width:1.053rem;height:1.053rem;border-radius:4px;background:rgba(78,142,238,0.8);display:flex;align-items:center;justify-content:center}.slide-bar .customer-service .icon-kefu{color:#fff;font-size:25px}.slide-bar .backtop{margin-top:5px;width:1.053rem;height:1.053rem;border-radius:4px;background:rgba(78,142,238,0.8);display:flex;align-items:center;justify-content:center;color:#fff}.slide-bar .backtop a{color:#fff}.slide-bar .backtop .icon-xiangshang1{color:#fff;font-size:28px}.slide-bar .carslide{position:relative}.slide-bar .carslide .carNumx{position:absolute;right:2px;top:2px;height:15px;width:15px;background:red;border-radius:15px;color:#fff;font-weight:normal;font-size:12px;text-align:center;line-height:15px}.kefu .t0{text-align:center;height:100px;line-height:100px}.kefu .t0 .icon-kefu{font-size:60px;color:#1080d0}.kefu .t1{padding:0 10%;margin-bottom:20px}.kefu .t1 a{display:block;height:33px;line-height:33px;font-size:14px;background:#1080d0;color:#fff;text-decoration:none;text-align:center;border:none}.kefu .t2{padding:0 10%;margin-bottom:20px}.kefu .t2 a{border-color:#e5e5e5;color:#1080d0;border:1px solid #1080d0;text-decoration:none;text-align:center;display:block;height:33px;line-height:33px;font-size:13px}.kefu .t2 a .icon-qq{font-size:13px;margin-right:10px}font[class^="rowNum"]{font-size:0 !important;*word-spacing:-1px !important}font[class^="asfgd"]{position:relative;background-image:url(https://static.ichunt.com/dist/res/m/images/number/aff.svg);display:inline-block;letter-spacing:normal;word-spacing:normal;font-style:normal}.asfgdqwer,.asfgdtyhg,.asfgdpolk,.asfgdpoqw{background-position:0 -1px !important;background-repeat:no-repeat !important;width:7px;height:10px}.asfgdrfdf,.asfgderfd,.asfgdwdsa,.asfgdpoer{background-position:-1px -17px !important;background-repeat:no-repeat !important;width:4px;height:10px}.asfgdasde,.asfgdqwsz,.asfgdrtgd,.asfgdpovv{background-position:0 -34px !important;background-repeat:no-repeat !important;width:7px;height:10px}.asfgdwsxc,.asfgdwsxz,.asfgdrfvb,.asfgdpoee{background-position:0 -53px !important;background-repeat:no-repeat !important;width:6px;height:10px}.asfgdqazs,.asfgdqasd,.asfgdqwag,.asfgdpogh{background-position:0 -73px !important;background-repeat:no-repeat !important;width:7px;height:10px}.asfgdrtyh,.asfgdyutr,.asfgdeews,.asfgdpotg{background-position:0 -95px !important;background-repeat:no-repeat !important;width:7px;height:10px}.asfgdpluj,.asfgdikjf,.asfgdesgj,.asfgdpfff{background-position:0 -113px !important;background-repeat:no-repeat !important;width:7px;height:10px}.asfgdtrdb,.asfgdiksf,.asfgdsgkp,.asfgdprty{background-position:0 -133px !important;background-repeat:no-repeat !important;width:7px;height:10px}.asfgdpehl,.asfgdstgb,.asfgderll,.asfgdpokf{background-position:0 -153px !important;background-repeat:no-repeat !important;width:7px;height:10px}.asfgdpehg,.asfgdstgf,.asfgderlf,.asfgdpogk{background-position:0 -177px !important;background-repeat:no-repeat !important;width:7px;height:10px}.share-mask{position:fixed;bottom:0;top:0;left:0;right:0;background:rgba(0,0,0,0.3);z-index:9999999}.share-mask img{width:90%;float:right}.mui-row:before,.mui-row:after{display:table;content:' '}.mui-row:after{clear:both}.mui-col-xs-1,.mui-col-sm-1,.mui-col-xs-2,.mui-col-sm-2,.mui-col-xs-3,.mui-col-sm-3,.mui-col-xs-4,.mui-col-sm-4,.mui-col-xs-5,.mui-col-sm-5,.mui-col-xs-6,.mui-col-sm-6,.mui-col-xs-7,.mui-col-sm-7,.mui-col-xs-8,.mui-col-sm-8,.mui-col-xs-9,.mui-col-sm-9,.mui-col-xs-10,.mui-col-sm-10,.mui-col-xs-11,.mui-col-sm-11,.mui-col-xs-12,.mui-col-sm-12{position:relative;min-height:1px}.mui-row>[class*='mui-col-']{float:left}.mui-col-xs-12,mui-col-sm-12{width:100%}.mui-col-xs-11,mui-col-sm-11{width:91.66666667%}.mui-col-xs-10,mui-col-sm-10{width:83.33333333%}.mui-col-xs-9,mui-col-sm-9{width:75%}.mui-col-xs-8,mui-col-sm-8{width:66.66666667%}.mui-col-xs-7,mui-col-sm-7{width:58.33333333%}.mui-col-xs-6,mui-col-sm-6{width:50%}.mui-col-xs-5,mui-col-sm-5{width:41.66666667%}.mui-col-xs-4,mui-col-sm-4{width:33.33333333%}.mui-col-xs-3,mui-col-sm-3{width:25%}.mui-col-xs-2,mui-col-sm-2{width:16.66666667%}.mui-col-xs-1,mui-col-sm-1{width:8.33333333%}
{
"version": 3,
"mappings": "AAAA,IAAK,CACH,wBAAwB,CAAE,IAAI,CAC9B,oBAAoB,CAAE,IAAI,CAG5B,MAAO,CACL,OAAO,CAAE,CAAC,CACV,wBAAwB,CAAE,eAAe,CACzC,2BAA2B,CAAE,sBAA2B,CAG1D,SAAW,CACT,WAAW,CAAE,UAAU,CACvB,UAAU,CAAE,MAAM,CAClB,sBAAsB,CAAE,WAAW,CACnC,uBAAuB,CAAE,SAAS,CAGpC,6LAAkO,CAChO,MAAM,CAAE,CAAC,CACT,OAAO,CAAE,CAAC,CAGZ,4BAAgC,CAC9B,SAAS,CAAE,IAAI,CACf,MAAM,CAAE,IAAI,CACZ,kBAAkB,CAAE,IAAI,CAG1B,sDAAyD,CACvD,MAAM,CAAE,OAAO,CAGjB,KAAM,CACJ,eAAe,CAAE,QAAQ,CACzB,cAAc,CAAE,CAAC,CAGnB,QAAW,CACT,UAAU,CAAE,IAAI,CAGlB,iBAAuB,CACrB,SAAS,CAAE,IAAI,CACf,WAAW,CAAE,GAAG,CAGlB,MAAS,CACP,UAAU,CAAE,MAAM,CAGpB,CAAE,CACA,eAAe,CAAE,IAAI,CAGvB,GAAI,CACF,MAAM,CAAE,IAAI,CAGd,IAAK,CACH,KAAK,CAAE,CAAC,CACR,KAAK,CAAE,IAAI,CAGb,UAAW,CACT,OAAO,CAAE,GAAG,CACZ,KAAK,CAAE,IAAI,CACX,MAAM,CAAE,CAAC,CACT,UAAU,CAAE,MAAM,CAClB,OAAO,CAAE,KAAK,CAGhB,GAAI,CACF,KAAK,CAAE,IAAI,CACX,QAAQ,CAAE,MAAM,CAElB,SAAU,CACR,KAAK,CAAE,kBAAiB,CAG1B,GAAI,CACF,KAAK,CAAE,KAAK,CACZ,QAAQ,CAAE,MAAM,CAGlB,KAAM,CACJ,cAAc,CAAE,GAAG,CAGrB,KAAM,CACJ,cAAc,CAAE,MAAM,CAGxB,KAAM,CACJ,cAAc,CAAE,MAAM,CAGxB,OAAQ,CACN,OAAO,CAAE,IAAI,CAGf,OAAQ,CACN,OAAO,CAAE,KAAK,CAGhB,UAAW,CACT,OAAO,CAAE,YAAY,CACrB,QAAQ,CAAE,MAAM,CAChB,IAAI,CAAE,CAAC,CACP,cAAc,CAAE,MAAM,CACtB,YAAY,CAAE,MAAM,CAGtB,MAAO,CACL,SAAS,CAAE,YAAY,CACvB,aAAa,CAAE,eAAe,CAGhC,OAAQ,CACN,kBAAkB,CAAE,UAAU,CAC9B,UAAU,CAAE,UAAU,CAGxB,SAAW,CACT,KAAK,CAAE,IAAI,CACX,MAAM,CAAE,IAAI,CACZ,0BAA0B,CAAE,KAAK,CAInC,IAAK,CACH,UAAU,CAAE,MAAM,CAEpB,OAAO,CAAC,KAAK,CAAC,OAAO,CACrB,MAAM,CAAC,KAAK,CAAC,OAAO,CACpB,MAAM,CAAC,KAAK,CAAC,IAAI,CACjB,MAAM,CAAC,KAAK,CAAC,IAAI,CACjB,GAAG,CAAC,WAAW,CAAE,IAAI,CACrB,KAAK,CAAC,UAAU,CAAE,MAAM,CACxB,KAAK,CAAC,UAAU,CAAE,IAAI,CACtB,KAAK,CAAC,UAAU,CAAE,KAAK,CACvB,MAAM,CAAC,UAAU,CAAE,IAAI,CACvB,OAAQ,CACN,WAAW,CAAE,IAAI,CACjB,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CACZ,SAAS,CAAE,CAAC,CACZ,cAAc,CAAE,MAAM,CAGxB,yBAA0B,CACxB,IAAK,CACH,UAAU,CAAE,eAAkB,CAC9B,SAAK,CACH,SAAS,CAAE,KAAK,CAChB,MAAM,CAAE,MAAM,CACd,UAAU,CAAE,IAAI,CAGZ,4DAAqB,CACnB,KAAK,CAAE,IAAI,CACX,MAAM,CAAE,IAAI,CAEd,kEAA2B,CACzB,gBAAgB,CAAE,OAAO,CACzB,UAAU,CAAE,mCAAsC,CAClD,aAAa,CAAE,IAAI,CACnB,MAAM,CAAE,iBAAiB,CACzB,OAAO,CAAE,GAAG,CAEd,kEAA2B,CACzB,gBAAgB,CAAE,OAAO,CACzB,UAAU,CAAE,4CAA+C,CAC3D,aAAa,CAAE,IAAI,ECvK/B,IAAK,CACH,MAAM,CAAE,IAAI,CAId,UAAW,CACT,KAAK,CAAE,CAAC,CACR,KAAK,CAAE,IAAI,CACX,MAAM,CAAE,IAAI,CACZ,QAAQ,CAAE,KAAK,CACf,MAAM,CAAE,CAAC,CACT,IAAI,CAAE,CAAC,CACP,KAAK,CAAE,CAAC,CACR,OAAO,CAAE,IAAI,CAEb,aAAG,CDiKH,OAAO,CAAE,WAAW,CACpB,OAAO,CAAE,YAAY,CACrB,OAAO,CAAE,WAAW,CACpB,OAAO,CAAE,IAAI,CClKX,MAAM,CAAE,IAAI,CACZ,gBAAgB,CAAE,OAAO,CACzB,UAAU,CAAE,6CAAgD,CAC5D,eAAe,CAAE,MAAM,CACvB,WAAW,CAAE,MAAM,CAEnB,gBAAG,CACD,QAAQ,CAAE,QAAQ,CD+JtB,gBAAgB,CAAE,CAAC,CACnB,aAAa,CAAE,CAAC,CAChB,YAAY,CAAE,CAAC,CACf,QAAQ,CAAE,CAAC,CACX,IAAI,CAAE,CAAC,CCjKH,UAAU,CAAE,MAAM,CAElB,kBAAE,CACA,OAAO,CAAE,KAAK,CAEd,wBAAM,CACJ,QAAQ,CAAE,QAAQ,CAClB,IAAI,CAAE,GAAG,CACT,GAAG,CAAE,IAAI,CACT,WAAW,CAAE,IAAI,CACjB,KAAK,CAAE,IAAI,CACX,SAAS,CAAE,IAAI,CACf,WAAW,CAAE,GAAG,CAChB,UAAU,CAAE,MAAM,CAClB,OAAO,CAAE,KAAK,CACd,SAAS,CAAE,IAAI,CACf,WAAW,CAAE,IAAI,CACjB,MAAM,CAAE,cAAc,CACtB,aAAa,CAAE,IAAI,CACnB,gBAAgB,CAAE,IAAI,CACtB,SAAS,CAAE,eAAe,CAC1B,gBAAgB,CAAE,IAAI,CAGxB,oBAAE,CACA,KAAK,CAAE,IAAI,CACX,MAAM,CAAE,IAAI,CACZ,OAAO,CAAE,KAAK,CACd,MAAM,CAAE,MAAM,CACd,KAAK,CAAE,OAAO,CACd,SAAS,CAAE,IAAI,CACf,UAAU,CAAE,MAAM,CAGpB,yBAAO,CACL,UAAU,CAAE,oDAAoD,CAChE,eAAe,CAAE,KAAK,CAGxB,yBAAO,CACL,UAAU,CAAE,oDAAoD,CAChE,eAAe,CAAE,KAAK,CAGxB,yBAAO,CACL,UAAU,CAAE,oDAAoD,CAChE,eAAe,CAAE,KAAK,CAGxB,yBAAO,CACL,UAAU,CAAE,oDAAoD,CAChE,eAAe,CAAE,KAAK,CAGxB,yBAAO,CACL,UAAU,CAAE,oDAAoD,CAChE,eAAe,CAAE,KAAK,CAGxB,oBAAE,CACA,UAAU,CAAE,QAAQ,CACpB,SAAS,CAAE,IAAI,CACf,KAAK,CAAE,OAAO,CAKhB,uBAAE,CACA,KAAK,CAAE,OAAO,CAGhB,4BAAO,CACL,UAAU,CAAE,sDAAsD,CAClE,eAAe,CAAE,KAAK,CAGxB,4BAAO,CACL,UAAU,CAAE,sDAAsD,CAClE,eAAe,CAAE,KAAK,CAGxB,4BAAO,CACL,UAAU,CAAE,sDAAsD,CAClE,eAAe,CAAE,KAAK,CAGxB,4BAAO,CACL,UAAU,CAAE,sDAAsD,CAClE,eAAe,CAAE,KAAK,CAGxB,4BAAO,CACL,UAAU,CAAE,sDAAsD,CAClE,eAAe,CAAE,KAAK,CAGxB,uBAAE,CACA,KAAK,CAAE,OAAO,CAQxB,mBAAoB,CAClB,UAAU,CAAE,WAAW,CACvB,QAAQ,CAAE,KAAK,CACf,GAAG,CAAE,GAAG,CACR,IAAI,CAAE,GAAG,CACT,SAAS,CAAE,qBAAqB,CAChC,OAAO,CAAE,IAAI,CACb,eAAe,CAAE,MAAM,CACvB,cAAc,CAAE,MAAM,CACtB,OAAO,CAAE,EAAE,CAIb,UAAW,CACT,QAAQ,CAAE,KAAK,CACf,KAAK,CAAE,CAAC,CACR,MAAM,CAAE,GAAG,CACX,OAAO,CAAE,IAAI,CAEb,4BAAkB,CAChB,KAAK,CAAE,QAAQ,CACf,MAAM,CAAE,QAAQ,CAChB,aAAa,CAAE,GAAG,CAClB,UAAU,CAAE,oBAAuB,CACnC,OAAO,CAAE,IAAI,CACb,WAAW,CAAE,MAAM,CACnB,eAAe,CAAE,MAAM,CAEvB,uCAAW,CACT,KAAK,CAAE,IAAI,CACX,SAAS,CAAE,IAAI,CAInB,mBAAS,CACP,UAAU,CAAE,GAAG,CACf,KAAK,CAAE,QAAQ,CACf,MAAM,CAAE,QAAQ,CAChB,aAAa,CAAE,GAAG,CAClB,UAAU,CAAE,oBAAuB,CACnC,OAAO,CAAE,IAAI,CACb,WAAW,CAAE,MAAM,CACnB,eAAe,CAAE,MAAM,CACvB,KAAK,CAAC,IAAI,CACV,qBAAC,CAAC,KAAK,CAAC,IAAI,CACZ,qCAAkB,CAChB,KAAK,CAAE,IAAI,CACX,SAAS,CAAE,IAAI,CAGnB,oBAAS,CACP,QAAQ,CAAE,QAAQ,CAClB,6BAAQ,CACN,QAAQ,CAAE,QAAQ,CAClB,KAAK,CAAC,GAAG,CAAE,GAAG,CAAC,GAAG,CAClB,MAAM,CAAC,IAAI,CACX,KAAK,CAAE,IAAI,CACX,UAAU,CAAE,GAAG,CACf,aAAa,CAAE,IAAI,CACnB,KAAK,CAAC,IAAI,CACV,WAAW,CAAE,MAAM,CACnB,SAAS,CAAE,IAAI,CACf,UAAU,CAAE,MAAM,CAClB,WAAW,CAAE,IAAI,CAMrB,SAAI,CACF,UAAU,CAAE,MAAM,CAClB,MAAM,CAAE,KAAK,CACb,WAAW,CAAE,KAAK,CAElB,oBAAW,CACT,SAAS,CAAE,IAAI,CACf,KAAK,CAAE,OAAO,CAIlB,SAAI,CACF,OAAO,CAAE,KAAK,CACd,aAAa,CAAE,IAAI,CAEnB,WAAE,CACA,OAAO,CAAE,KAAK,CACd,MAAM,CAAE,IAAI,CACZ,WAAW,CAAE,IAAI,CACjB,SAAS,CAAE,IAAI,CACf,UAAU,CAAE,OAAO,CACnB,KAAK,CAAE,IAAI,CACX,eAAe,CAAE,IAAI,CACrB,UAAU,CAAE,MAAM,CAClB,MAAM,CAAE,IAAI,CAIhB,SAAI,CACF,OAAO,CAAE,KAAK,CACd,aAAa,CAAE,IAAI,CAEnB,WAAE,CACA,YAAY,CAAE,OAAO,CACrB,KAAK,CAAE,OAAO,CACd,MAAM,CAAE,iBAAiB,CACzB,eAAe,CAAE,IAAI,CACrB,UAAU,CAAE,MAAM,CAClB,OAAO,CAAE,KAAK,CACd,MAAM,CAAE,IAAI,CACZ,WAAW,CAAE,IAAI,CACjB,SAAS,CAAE,IAAI,CAEf,oBAAS,CACP,SAAS,CAAE,IAAI,CACf,YAAY,CAAE,IAAI,CAQ1B,qBAAqB,CACnB,SAAS,CAAE,YAAY,CACvB,aAAa,CAAE,eAAe,CAEhC,oBAAqB,CACnB,QAAQ,CAAE,QAAQ,CAClB,gBAAgB,CAAE,+DAA+D,CACjF,OAAO,CAAE,YAAY,CACrB,cAAc,CAAE,MAAM,CACtB,YAAY,CAAE,MAAM,CACpB,UAAU,CAAE,MAAM,CAEpB,2CAA+C,CAC7C,mBAAmB,CAAE,iBAAiB,CACtC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,qBAAqB,CAC1C,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,kBAAkB,CACvC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,kBAAkB,CACvC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,kBAAkB,CACvC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,kBAAkB,CACvC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,mBAAmB,CACxC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,mBAAmB,CACxC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,mBAAmB,CACxC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAEd,2CAA+C,CAC7C,mBAAmB,CAAE,mBAAmB,CACxC,iBAAiB,CAAE,oBAAoB,CACvC,KAAK,CAAE,GAAG,CACV,MAAM,CAAE,IAAI,CAGd,WAAW,CACT,QAAQ,CAAE,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,UAAU,CAAE,eAAe,CAAC,OAAO,CAAE,OAAO,CAC1F,eAAG,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAG3B,8BACA,CACE,OAAO,CAAE,KAAK,CACd,OAAO,CAAE,GAAG,CAEd,cACA,CACE,KAAK,CAAE,IAAI,CAEb,qVACA,CACE,QAAQ,CAAE,QAAQ,CAClB,UAAU,CAAE,GAAG,CAEjB,4BACA,CACE,KAAK,CAAE,IAAI,CAEb,4BACA,CACE,KAAK,CAAE,IAAI,CAGb,4BACA,CACE,KAAK,CAAE,YAAY,CAGrB,4BACA,CACE,KAAK,CAAE,YAAY,CAGrB,0BACA,CACE,KAAK,CAAE,GAAG,CAGZ,0BACA,CACE,KAAK,CAAE,YAAY,CAGrB,0BACA,CACE,KAAK,CAAE,YAAY,CAGrB,0BACA,CACE,KAAK,CAAE,GAAG,CAGZ,0BACA,CACE,KAAK,CAAE,YAAY,CAGrB,0BACA,CACE,KAAK,CAAE,YAAY,CAGrB,0BACA,CACE,KAAK,CAAE,GAAG,CAEZ,0BACA,CACE,KAAK,CAAE,YAAY,CAGrB,0BACA,CACE,KAAK,CAAE,WAAW",
"sources": ["base.scss","global.scss"],
"names": [],
"file": "global.min.css"
}
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
line-height: 20px; line-height: 20px;
} }
.sample .activity-rule { .sample .activity-rule {
margin: 15px 15px 0 15px; margin: 0.44rem 0.4rem 0 0.4rem;
border: solid 1px #d5c06d; border: solid 1px #d5c06d;
box-sizing: border-box; box-sizing: border-box;
border-radius: 2px; border-radius: 2px;
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
overflow: hidden; overflow: hidden;
} }
.sample .activity-rule .rule-content.show { .sample .activity-rule .rule-content.show {
height: 250px; height: 453px;
} }
.sample .activity-rule .rule-content p { .sample .activity-rule .rule-content p {
padding-top: 5px; padding-top: 5px;
...@@ -398,3 +398,68 @@ ...@@ -398,3 +398,68 @@
text-decoration: none; text-decoration: none;
border: none; border: none;
} }
.sample-special-box {
padding-bottom: 1.5rem;
margin: 0.44rem 0.4rem 0 0.4rem;
}
.sample-special-box .box1 {
height: 4.44rem;
background: url("../../images/sample/t1.jpg") no-repeat center;
background-size: cover;
border-radius: 2px;
align-items: flex-end;
margin-bottom: 0.52rem;
}
.sample-special-box .box2 {
height: 4.44rem;
background: url("../../images/sample/t2.jpg") no-repeat center;
background-size: cover;
border-radius: 2px;
align-items: flex-end;
}
.sample-special-box .wrap {
width: 100%;
padding: 0 0.107rem 0.107rem 0.107rem;
}
.sample-special-box .wrap .link {
flex: 0 0 49%;
}
.sample-special-box .wrap .type1 {
height: 40px;
line-height: 40px;
text-align: center;
background-color: #82bf00;
border-radius: 2px;
font-size: 18px;
color: #ffffff;
}
.sample-special-box .wrap .type2 {
height: 40px;
background-color: #ffffff;
border-radius: 2px;
border: solid 1px #82bf00;
line-height: 40px;
text-align: center;
color: #6a9b01;
font-size: 18px;
}
.sample-special-box .wrap .type3 {
height: 40px;
line-height: 40px;
text-align: center;
background-color: #f37f4e;
border-radius: 2px;
font-size: 18px;
color: #ffffff;
}
.sample-special-box .wrap .type4 {
height: 40px;
background-color: #ffffff;
border-radius: 2px;
border: solid 1px #fb814e;
line-height: 40px;
text-align: center;
color: #cd5e2f;
font-size: 18px;
}
/*# sourceMappingURL=sample.css.map */
\ No newline at end of file
{"version":3,"sources":["sample.less"],"names":[],"mappings":"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","file":"sample.css"} {"version":3,"sources":["sample.less"],"names":[],"mappings":"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","file":"sample.css"}
\ No newline at end of file \ No newline at end of file
...@@ -10,7 +10,8 @@ ...@@ -10,7 +10,8 @@
.banner { .banner {
height: 173px; height: 173px;
width: 100%; width: 100%;
img{
img {
width: 100%; width: 100%;
} }
} }
...@@ -31,48 +32,57 @@ ...@@ -31,48 +32,57 @@
line-height: 20px; line-height: 20px;
} }
} }
.activity-rule{
margin:15px 15px 0 15px; .activity-rule {
margin: 0.44rem 0.4rem 0 0.4rem;
border: solid 1px #d5c06d; border: solid 1px #d5c06d;
box-sizing: border-box; box-sizing: border-box;
border-radius: 2px; border-radius: 2px;
background-color: #fffae7; background-color: #fffae7;
color: #333; color: #333;
.rule-title{
.rule-title {
height: 1rem; height: 1rem;
line-height: 1rem; line-height: 1rem;
font-size: 14px; font-size: 14px;
text-align: center; text-align: center;
position: relative; position: relative;
.icon{
.icon {
position: absolute; position: absolute;
right:7px; right: 7px;
font-size: 20px; font-size: 20px;
color:#d5c06d; color: #d5c06d;
&.icon-down-trangle{
&.icon-down-trangle {
font-size: 26px; font-size: 26px;
} }
} }
} }
.rule-content{
padding:0px 15px 0; .rule-content {
padding: 0px 15px 0;
font-size: 12px; font-size: 12px;
height: 0; height: 0;
transition: height linear .5s; transition: height linear .5s;
overflow: hidden; overflow: hidden;
&.show{
height:250px; &.show {
height: 453px;
} }
p{
p {
padding-top: 5px; padding-top: 5px;
line-height: 20px; line-height: 20px;
} }
} }
} }
.fx_text { .fx_text {
color: #999; color: #999;
text-align: right; text-align: right;
padding-top: 15px; padding-top: 15px;
div { div {
padding: 0 15px 10px; padding: 0 15px 10px;
} }
...@@ -131,9 +141,10 @@ ...@@ -131,9 +141,10 @@
line-height: 0.45rem; line-height: 0.45rem;
} }
.btn-wrap{ .btn-wrap {
margin-top: 0.2rem; margin-top: 0.2rem;
.btnw{
.btnw {
width: 2.133rem; width: 2.133rem;
height: 30px; height: 30px;
line-height: 30px; line-height: 30px;
...@@ -143,6 +154,7 @@ ...@@ -143,6 +154,7 @@
border: solid 1px #1080d0; border: solid 1px #1080d0;
text-align: center; text-align: center;
} }
.btnx { .btnx {
width: 3.5rem; width: 3.5rem;
height: 30px; height: 30px;
...@@ -184,7 +196,8 @@ ...@@ -184,7 +196,8 @@
box-shadow: 0 0 10px #000; box-shadow: 0 0 10px #000;
cursor: pointer; cursor: pointer;
} }
.choose-work-pop{
.choose-work-pop {
.mask { .mask {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
...@@ -194,7 +207,8 @@ ...@@ -194,7 +207,8 @@
background: rgba(0, 0, 0, 0.3); background: rgba(0, 0, 0, 0.3);
z-index: 999; z-index: 999;
} }
.choose-work-con{
.choose-work-con {
background: #fff; background: #fff;
width: 9rem; width: 9rem;
height: 10rem; height: 10rem;
...@@ -205,6 +219,7 @@ ...@@ -205,6 +219,7 @@
margin-top: -5rem; margin-top: -5rem;
z-index: 99999; z-index: 99999;
border-radius: 3px; border-radius: 3px;
i { i {
position: absolute; position: absolute;
top: -30px; top: -30px;
...@@ -212,65 +227,79 @@ ...@@ -212,65 +227,79 @@
font-size: 20px; font-size: 20px;
right: 0; right: 0;
} }
.work-groups{
.work-item{ .work-groups {
width:50%; .work-item {
height:4.2rem; width: 50%;
height: 4.2rem;
text-align: center; text-align: center;
box-sizing: border-box; box-sizing: border-box;
&.xs-item{
&.xs-item {
background-color: #eaecff; background-color: #eaecff;
border-bottom: 1px solid #fff; border-bottom: 1px solid #fff;
} }
&.mys-item{
&.mys-item {
background-color: #f7f7f7; background-color: #f7f7f7;
border-bottom: 1px solid #fff; border-bottom: 1px solid #fff;
border-left: 1px solid #fff; border-left: 1px solid #fff;
} }
&.gcs-item{
&.gcs-item {
background-color: #fff7f0; background-color: #fff7f0;
} }
&.zds-item{
&.zds-item {
background-color: #eafffb; background-color: #eafffb;
border-left: 1px solid #fff; border-left: 1px solid #fff;
} }
&.active{
.radius-div{ &.active {
border:3px solid #0080cc; .radius-div {
border: 3px solid #0080cc;
} }
} }
.radius-div{
margin:10px auto 0; .radius-div {
height:3rem; margin: 10px auto 0;
width:3rem; height: 3rem;
width: 3rem;
box-sizing: border-box; box-sizing: border-box;
border-radius: 50% 50%; border-radius: 50% 50%;
border:3px solid transparent; border: 3px solid transparent;
&.xs-radius{
&.xs-radius {
background-image: url('../../images/sample/work1.png'); background-image: url('../../images/sample/work1.png');
} }
&.mys-radius{
&.mys-radius {
background-image: url('../../images/sample/work2.png'); background-image: url('../../images/sample/work2.png');
} }
&.gcs-radius{
&.gcs-radius {
background-image: url('../../images/sample/work3.png'); background-image: url('../../images/sample/work3.png');
} }
&.zds-radius{
&.zds-radius {
background-image: url('../../images/sample/work4.png'); background-image: url('../../images/sample/work4.png');
} }
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
p{
p {
font-size: 14px; font-size: 14px;
color: #000000; color: #000000;
margin-top: 7px; margin-top: 7px;
} }
} }
} }
.btn{
width:4rem; .btn {
height:1rem; width: 4rem;
height: 1rem;
line-height: 1rem; line-height: 1rem;
border-radius: 15px; border-radius: 15px;
font-size: 14px; font-size: 14px;
...@@ -278,12 +307,14 @@ ...@@ -278,12 +307,14 @@
margin: 10px auto 0; margin: 10px auto 0;
color: #fff; color: #fff;
background-color: #d1d1d1; background-color: #d1d1d1;
&.active{
&.active {
background-color: #0080cc; background-color: #0080cc;
} }
} }
} }
} }
.get-user-pop { .get-user-pop {
.get-user-con { .get-user-con {
background: #fff; background: #fff;
...@@ -357,6 +388,7 @@ ...@@ -357,6 +388,7 @@
width: 100%; width: 100%;
background: #fff; background: #fff;
z-index: 101; z-index: 101;
.mask { .mask {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
...@@ -397,7 +429,8 @@ ...@@ -397,7 +429,8 @@
transition: all 0.2s ease; transition: all 0.2s ease;
border: 1px solid transparent; border: 1px solid transparent;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
&.curr { &.curr {
border: 1px solid #1080d0; border: 1px solid #1080d0;
color: #1080d0; color: #1080d0;
...@@ -442,3 +475,70 @@ ...@@ -442,3 +475,70 @@
} }
} }
.sample-special-box {
padding-bottom: 1.5rem;
margin: 0.44rem 0.4rem 0 0.4rem;
.box1 {
height: 4.44rem;
background:url("../../images/sample/t1.jpg") no-repeat center;
background-size: cover;
border-radius: 2px;
align-items:flex-end;
margin-bottom: 0.52rem;
}
.box2 {
height: 4.44rem;
background:url("../../images/sample/t2.jpg") no-repeat center;
background-size: cover;
border-radius: 2px;
align-items:flex-end;
}
.wrap{
width: 100%;
padding: 0 0.107rem 0.107rem 0.107rem;
.link{
flex: 0 0 49%;
}
.type1{
height: 40px;
line-height: 40px;
text-align: center;
background-color: #82bf00;
border-radius: 2px;
font-size: 18px;
color: #ffffff;
}
.type2{
height: 40px;
line-height: 40px;
background-color: #ffffff;
border-radius: 2px;
border: solid 1px #82bf00;
line-height: 40px;
text-align: center;
color: #6a9b01;
font-size: 18px;
}
.type3{
height: 40px;
line-height: 40px;
text-align: center;
background-color: #f37f4e;
border-radius: 2px;
font-size: 18px;
color: #ffffff;
}
.type4{
height: 40px;
line-height: 40px;
background-color: #ffffff;
border-radius: 2px;
border: solid 1px #fb814e;
line-height: 40px;
text-align: center;
color: #cd5e2f;
font-size: 18px;
}
}
}
\ No newline at end of file
.sample{padding-bottom:50px}.sample .ele{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.sample .banner{height:173px;width:100%}.sample .banner img{width:100%}.sample .zititle{padding:15px}.sample .zititle span{color:#333;font-size:16px}.sample .zititle font{font-size:12px;color:#999;margin-left:10px;height:20px;line-height:20px}.sample .fx_text{color:#999;text-align:right;padding-top:15px}.sample .fx_text div{padding:0 15px 10px}.sample .fx_text span{color:#ffa200}.sample .nav{position:relative;z-index:2}.sample .nav .van-hairline--top-bottom::after{border-width:0 0 1px 0}.sample .con .con-group{padding:15px;padding-bottom:0px}.sample .con .con-group .img-box{width:2.933rem;height:2.933rem}.sample .con .con-group .img-box img{width:100%;height:100%}.sample .con .con-group .cb-box{width:6rem;height:2.933rem;padding-bottom:15px}.sample .con .con-group .cb-box .title{color:#333;font-size:16px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-bottom:.15rem}.sample .con .con-group .cb-box p{color:#333;font-size:12px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;height:.45rem;line-height:.45rem}.sample .con .con-group .cb-box p span{color:#666}.sample .con .con-group .cb-box .btn-wrap{margin-top:.2rem}.sample .con .con-group .cb-box .btn-wrap .btnw{width:2.133rem;height:30px;line-height:30px;border-radius:4px;font-size:13px;color:#1080d0;border:solid 1px #1080d0;text-align:center}.sample .con .con-group .cb-box .btn-wrap .btnx{width:3.5rem;height:30px;line-height:30px;border-radius:4px;background:#1080d0;color:#fff;text-align:center;cursor:pointer}@media screen and (max-width:320px){.sample .con .con-group .cb-box{width:5.8rem;height:2.933rem}.sample .con .con-group .cb-box .title{margin-bottom:.05rem}}.sample .fix-btns{position:fixed;left:0;bottom:0;right:0;height:50px;line-height:50px;color:#fff;font-size:16px;text-align:center;background:#1080d0;box-shadow:0 0 10px #000;cursor:pointer}.sample .get-user-pop .get-user-con{background:#fff;width:8.667rem;height:5.52rem;border-radius:3px;position:fixed;top:50%;left:50%;margin-left:-4.3335rem;margin-top:-2.76rem;box-shadow:0 0 20px #e5e5e5;z-index:99999}.sample .get-user-pop .get-user-con h3{color:#ffa200;font-size:16px;height:2.027rem;line-height:2.027rem;text-align:center}.sample .get-user-pop .get-user-con h3 i{position:relative;float:right;top:-1.4rem;color:#fff;font-size:20px}.sample .get-user-pop .get-user-con h2{color:#000;font-size:14px;text-align:center;width:60%;margin:0 auto}.sample .get-user-pop .get-user-con span{display:block;cursor:pointer;height:30px;line-height:30px;width:150px;text-align:center;background:#1080d0;color:#fff;font-size:14px;border-radius:30px;margin:0 auto;margin-top:50px}.sample .get-user-pop .mask{position:fixed;bottom:0;top:0;left:0;right:0;background:rgba(0,0,0,0.3);z-index:999}.sample .sample-search{position:absolute;top:46px;left:0;right:0;width:100%;background:#fff;z-index:101}.sample .sample-search .mask{position:fixed;bottom:0;left:0;right:0;background:rgba(0,0,0,0.3);z-index:999}.sample .sample-search ul{background:#fff;padding-bottom:3px;height:200px;overflow-x:hidden;overflow-y:auto}.sample .sample-search ul li .tit{color:#333;font-size:16px;font-weight:700;padding:.4rem 0 .4rem .2rem;height:.53333rem;line-height:.53333rem}.sample .sample-search ul li dl{display:flex;flex-wrap:wrap}.sample .sample-search ul li dl dd{flex:0 0 50%;text-align:center;height:32px;line-height:32px;font-size:14px;color:#333;transition:all .2s ease;border:1px solid transparent;overflow:hidden;text-overflow:ellipsis}.sample .sample-search ul li dl dd.curr{border:1px solid #1080d0;color:#1080d0}.sample .sample-search .button{border-top:1px solid #d6d7dc;height:40px;line-height:40px;background:#fff;-webkit-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;display:flex;flex-direction:row;justify-content:space-around}.sample .sample-search .button a{width:50%;font-size:14px;height:39px;line-height:39px;display:block;text-align:center}.sample .sample-search .button a.cancel{color:#333;border-radius:5px}.sample .sample-search .button a.confirm{background:#1080d0;color:#fff;text-decoration:none;border:none}
\ No newline at end of file
...@@ -263,3 +263,4 @@ ...@@ -263,3 +263,4 @@
background: rgba(0, 0, 0, 0.3); background: rgba(0, 0, 0, 0.3);
z-index: 999; z-index: 999;
} }
/*# sourceMappingURL=sampleapply.css.map */
\ No newline at end of file
{"version":3,"sources":["sampleapply.less"],"names":[],"mappings":"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","file":"sampleapply.css"} {"version":3,"sources":["sampleapply.less"],"names":[],"mappings":"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","file":"sampleapply.css"}
\ No newline at end of file \ No newline at end of file
...@@ -43,3 +43,4 @@ ...@@ -43,3 +43,4 @@
color: #fff; color: #fff;
margin: 0 auto; margin: 0 auto;
} }
/*# sourceMappingURL=samplebasinfo.css.map */
\ No newline at end of file
{"version":3,"sources":["samplebasinfo.less"],"names":[],"mappings":"AAAA;EACI,yBAAA;EACA,YAAA;;AAFJ,eAGI;EACI,eAAA;EACA,sBAAA;;AALR,eAGI,cAGI;EACI,gCAAA;EACA,aAAA;EACA,eAAA;;AACA,eAPR,cAGI,WAIK;EACG,YAAA;;AAXhB,eAGI,cAGI,WAOI;EACI,eAAA;EACA,cAAA;EACA,cAAA;;AAhBhB,eAGI,cAGI,WAOI,UAII;EACI,iBAAA;EACA,sBAAA;EACA,cAAA;;AApBpB,eAGI,cAGI,WAiBI;EACI,OAAA;EACA,iBAAA;EACA,eAAA;;AA1BhB,eA+BI;EACI,eAAA;;AAhCR,eA+BI,cAGI;EACI,YAAA;EACA,YAAA;EACA,yBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iBAAA;EACA,eAAA;EACA,WAAA;EACA,cAAA","file":"samplebasinfo.css"}
\ No newline at end of file
...@@ -127,3 +127,4 @@ ...@@ -127,3 +127,4 @@
color: #fff; color: #fff;
margin: 0 auto; margin: 0 auto;
} }
/*# sourceMappingURL=samplecominfo.css.map */
\ No newline at end of file
{"version":3,"sources":["samplecominfo.less"],"names":[],"mappings":"AAAA,eACI;EACI,eAAA;;AAFR,eACI,cAGI;EACI,gCAAA;EACA,aAAA;EACA,eAAA;;AAEA,eARR,cAGI,WAKK;EACG,sBAAA;;AADJ,eARR,cAGI,WAKK,WAGG;EACI,cAAA;EACA,YAAA;EACA,eAAA;EACA,eAAA;EACA,YAAA;;AAIR,eApBR,cAGI,WAiBK;EACG,cAAA;EACA,YAAA;EACA,oBAAA;;AAHJ,eApBR,cAGI,WAiBK,SAKG;EACI,YAAA;EACA,YAAA;EACA,yBAAA;EACA,kBAAA;EACA,mBAAA;EACA,sBAAA;EACA,iBAAA;;AAZR,eApBR,cAGI,WAiBK,SAKG,aAQI;EACI,WAAA;EACA,YAAA;EACA,gBAAgB,4CAAhB;EACA,0BAAA;EACA,cAAA;;AAlBZ,eApBR,cAGI,WAiBK,SAqBG;EACI,YAAA;EACA,YAAA;EACA,mBAAA;EACA,kBAAA;EACA,kBAAA;;AA1BR,eApBR,cAGI,WAiBK,SAqBG,SAMI;EACI,YAAA;EACA,WAAA;;AA7BZ,eApBR,cAGI,WAiBK,SAqBG,SAUI;EACI,kBAAA;EACA,MAAA;EACA,OAAA;EACA,QAAA;EACA,SAAA;EACA,2CAAA;EACA,aAAA;EACA,uBAAA;EACA,mBAAA;;AAxCZ,eApBR,cAGI,WAiBK,SAqBG,SAUI,UAUI;EACI,YAAA;EACA,WAAA;EACA,gBAAgB,wCAAhB;EACA,0BAAA;;AA7ChB,eApBR,cAGI,WAiBK,SAiDG;EACI,aAAA;;AAlDR,eApBR,cAGI,WAiBK,SAqDG;EACI,YAAA;EACA,YAAA;EACA,yBAAA;EACA,eAAA;EACA,kBAAA;EACA,iBAAA;EACA,cAAA;EACA,mBAAA;EACA,mBAAA;;AAnFpB,eACI,cAGI,WAmFI;AAvFZ,eACI,cAGI,WAoFI;AAxFZ,eACI,cAGI,WAqFI;EACI,eAAA;EACA,cAAA;;AAEA,eA5FZ,cAGI,WAmFI,UAMK;AAAD,eA5FZ,cAGI,WAoFI,kBAKK;AAAD,eA5FZ,cAGI,WAqFI,gBAIK;EACG,cAAA;;AA9FpB,eACI,cAGI,WAmFI,UAUI;AAjGhB,eACI,cAGI,WAoFI,kBASI;AAjGhB,eACI,cAGI,WAqFI,gBAQI;EACI,iBAAA;EACA,sBAAA;EACA,cAAA;;AApGpB,eACI,cAGI,WAoGI;AAxGZ,eACI,cAGI,WAqGI;EACI,OAAA;EACA,iBAAA;EACA,eAAA;;AAEA,eA7GZ,cAGI,WAoGI,OAMK;AAAD,eA7GZ,cAGI,WAqGI,cAKK;EACG,WAAA;;AADJ,eA7GZ,cAGI,WAoGI,OAMK,aAGG;AAHJ,eA7GZ,cAGI,WAqGI,cAKK,aAGG;EACI,sBAAA;EACA,gBAAA;;AAnHxB,eA6HI;EACI,yBAAA;EACA,eAAA;;AA/HR,eA6HI,cAGI;EACI,YAAA;EACA,YAAA;EACA,yBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iBAAA;EACA,eAAA;EACA,WAAA;EACA,cAAA","file":"samplecominfo.css"}
\ No newline at end of file
...@@ -19,7 +19,7 @@ if (env != 'production') { ...@@ -19,7 +19,7 @@ if (env != 'production') {
//css全局加载 //css全局加载
import 'vant/lib/index.css'; import 'vant/lib/index.css';
import '@/assets/css/global.min.css' import '@/assets/css/global.css'
//过滤器遍历 //过滤器遍历
Object.keys(filters).forEach(key => Vue.filter(key, filters[key])); Object.keys(filters).forEach(key => Vue.filter(key, filters[key]));
......
...@@ -42,6 +42,7 @@ const brandList = resolve => require(['@/views/brand/brandList'], resolve); ...@@ -42,6 +42,7 @@ const brandList = resolve => require(['@/views/brand/brandList'], resolve);
const ranking = resolve => require(['@/views/rank/ranking'], resolve); const ranking = resolve => require(['@/views/rank/ranking'], resolve);
const Download = resolve => require(['@/views/download/Index'], resolve); const Download = resolve => require(['@/views/download/Index'], resolve);
const sample = resolve => require(['@/views/sample/sample'], resolve); const sample = resolve => require(['@/views/sample/sample'], resolve);
const samplespecial = resolve => require(['@/views/sample/special'], resolve);
const samplecominfo = resolve => require(['@/views/sample/samplecominfo'], resolve); const samplecominfo = resolve => require(['@/views/sample/samplecominfo'], resolve);
const samplebasinfo = resolve => require(['@/views/sample/samplebasinfo'], resolve); const samplebasinfo = resolve => require(['@/views/sample/samplebasinfo'], resolve);
const sampleapply = resolve => require(['@/views/sample/sampleapply'], resolve); const sampleapply = resolve => require(['@/views/sample/sampleapply'], resolve);
...@@ -356,6 +357,13 @@ const routes = [{ ...@@ -356,6 +357,13 @@ const routes = [{
} }
}, },
{ {
path: '/sample/special',
component: samplespecial,
meta: {
title: '猎芯网'
}
},
{
path: '/samplecominfo', path: '/samplecominfo',
component: samplecominfo, component: samplecominfo,
meta: { meta: {
......
...@@ -50,14 +50,7 @@ const actions = { ...@@ -50,14 +50,7 @@ const actions = {
}, },
selfSampleCreate({commit}, payload) { selfSampleCreate({commit}, payload) {
state.loading = true; state.loading = true;
// var params = {
// goods_id: payload.goods_id,
// apply_num: payload.apply_num,
// com_name: payload.com_name,
// sample_demand_desc: payload.sample_demand_desc,
// address_id: payload.address_id
// }
var params = payload.data; var params = payload.data;
Services.selfSampleCreate(qs.stringify(params)).then((res) => { Services.selfSampleCreate(qs.stringify(params)).then((res) => {
let data = res.data; let data = res.data;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
{"h":"4a38cd2354e109289ddf","c":{"28":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
{"h":"7992d1c9a2e68331c779","c":{"28":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
{"h":"e15249f9ba5bcd1e1db7","c":{"28":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
{"h":"f5947849f6b3627161b9","c":{}}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
{"h":"c1e25b5371a95cdd6a42","c":{}}
\ No newline at end of file
{"h":"44639ecdace52aa258f2","c":{"28":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
{"h":"55863e64fd762b810691","c":{"app":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
{"h":"e33b894aa02f7c29fb10","c":{"28":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment