Commit 6bbaf959 by 庄冰

companyidui

parent 1ff75eec
......@@ -38,15 +38,16 @@ class Templateconfig extends APIBase {
opResult = system.getResultSuccess("测试接口");
break;
case "getImgList": // 查询图片
// pobj.actionBody["company_id"] = pobj.company_id;
opResult = await this.imginfoSve.getImgList(pobj.actionBody);
break;
case "createImginfo": // 添加图片
opResult = await this.imginfoSve.createImginfo(pobj.actionBody);
break;
case "getTemplateList": // 获取模板列表
opResult = await this.templateinfoSve.getTemplateList(pobj.actionBody);
// opResult = await this.templateinfoSve.findByCompanyId(pobj.actionBody);
break;
// case "getTemplateList": // 获取模板列表
// opResult = await this.templateinfoSve.getTemplateList(pobj.actionBody);
// // opResult = await this.templateinfoSve.findByCompanyId(pobj.actionBody);
// break;
case "editTemplate": // 编辑模板信息
opResult = await this.templateinfoSve.editTemplate(pobj);
break;
......
......@@ -6,8 +6,11 @@ class ForminfoDao extends Dao{
}
extraWhere(qobj, qw, qc) {
console.log(qobj)
qw["company_id"] = Number(qobj.company_id);
if(!qobj.company_id){
qw["company_id"] = "";
}else{
qw["company_id"] = Number(qobj.company_id);
}
return qw
}
}
......
const system=require("../../../system");
const Dao=require("../../dao.base");
class ImginfoDao extends Dao{
constructor(){
super(Dao.getModelName(ImginfoDao));
}
extraWhere(qobj, qw, qc) {
console.log(qobj)
if(!qobj.company_id){
qw["company_id"] = "";
}else{
qw["company_id"] = Number(qobj.company_id);
}
return qw
}
}
module.exports=ImginfoDao;
......@@ -6,7 +6,11 @@ class LaunchchannelDao extends Dao{
}
extraWhere(qobj, qw, qc) {
qw["company_id"] = qobj.company_id;
if(!qobj.company_id){
qw["company_id"] = "";
}else{
qw["company_id"] = Number(qobj.company_id);
}
return qw;
}
}
......
......@@ -4,5 +4,14 @@ class LaunchtypeDao extends Dao{
constructor(){
super(Dao.getModelName(LaunchtypeDao));
}
extraWhere(qobj, qw, qc) {
console.log(qobj)
if(!qobj.company_id){
qw["company_id"] = "";
}else{
qw["company_id"] = Number(qobj.company_id);
}
return qw
}
}
module.exports=LaunchtypeDao;
const system=require("../../../system");
const Dao=require("../../dao.base");
class MaininfoDao extends Dao{
constructor(){
super(Dao.getModelName(MaininfoDao));
}
extraWhere(qobj, qw, qc) {
console.log(qobj)
if(!qobj.company_id){
qw["company_id"] = "";
}else{
qw["company_id"] = Number(qobj.company_id);
}
return qw
}
}
module.exports=MaininfoDao;
......@@ -4,5 +4,14 @@ class MarketingsubjectDao extends Dao{
constructor(){
super(Dao.getModelName(MarketingsubjectDao));
}
extraWhere(qobj, qw, qc) {
console.log(qobj)
if(!qobj.company_id){
qw["company_id"] = "";
}else{
qw["company_id"] = Number(qobj.company_id);
}
return qw
}
}
module.exports=MarketingsubjectDao;
const system=require("../../../system");
const Dao=require("../../dao.base");
class PuttypeDao extends Dao{
constructor(){
super(Dao.getModelName(PuttypeDao));
}
extraWhere(qobj, qw, qc) {
console.log(qobj)
if(!qobj.company_id){
qw["company_id"] = "";
}else{
qw["company_id"] = Number(qobj.company_id);
}
return qw
}
}
module.exports=PuttypeDao;
......@@ -514,7 +514,7 @@ class TemplatelinkService extends ServiceBase {
addObj["created_year"] = myDate.getFullYear();
addObj["created_month"] =myDate.getMonth()+1;
addObj["created_day"] =myDate.getDate();
await this.execClient.execPostEs(addObj, this.browsingRecordsLogUrl);
// await this.execClient.execPostEs(addObj, this.browsingRecordsLogUrl);
} catch (e) {
console.log(e,"writebrowsingrecords++++++++++++++++++++")
}
......
.swiperMain[data-v-5c4efd8f]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.swiper-container[data-v-5c4efd8f]{width:100%;max-width:100%;height:400px}.swiper-container .swiper-wrapper[data-v-5c4efd8f]{width:100%}.swiper-container .swiper-slide[data-v-5c4efd8f]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.swiper-container .swiper-slide .imgBg[data-v-5c4efd8f]{width:100%;height:100%;background-repeat:no-repeat;background-size:cover;background-position:top;background-position-y:center}.swiper-container .swiper-slide .swiper_text[data-v-5c4efd8f]{width:100%;height:100%;position:absolute;padding:70px 7%;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden}.swiper-container .swiper-slide .swiper_text h1[data-v-5c4efd8f]{font-size:60px;font-family:MicrosoftYaHei-Bold,MicrosoftYaHei;font-weight:700;line-height:60px;color:#333;margin-bottom:30px}.swiper-container .swiper-slide .swiper_text p[data-v-5c4efd8f]{font-size:20px;font-family:MicrosoftYaHei;line-height:20px;color:#333}.swiper-container img[data-v-5c4efd8f]{width:100%;height:100%}@media screen and (max-width:750px){.swiper-container[data-v-5c4efd8f]{height:200px!important}.swiper-container .swiper_text[data-v-5c4efd8f]{padding:20px!important}.swiper-container .swiper_text h1[data-v-5c4efd8f]{font-size:30px!important;margin-bottom:15px!important;line-height:30px!important}.swiper-container .swiper_text p[data-v-5c4efd8f]{font-size:10px!important;line-height:20px!important}}.buttonMain[data-v-7de226b0]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.buttonMain .buttonMain_btn[data-v-7de226b0]{width:160px;height:50px;padding:10px 40px;background:#1890ff;border-radius:4px;border:1px solid;outline:none;cursor:pointer;font-size:14px;font-family:MicrosoftYaHei;color:#fff;line-height:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media screen and (max-width:750px){.buttonMain[data-v-7de226b0]{padding:0 15px}.buttonMain_btn[data-v-7de226b0]{width:100%!important}}[data-v-b000ae00] .ivu-select-selection{height:40px;border-radius:0;background:transparent;border-color:transparent}[data-v-b000ae00] .ivu-select-selection /deep/ .ivu-select-placeholder,[data-v-b000ae00] .ivu-select-selection /deep/ .ivu-select-selected-value{height:40px;font-size:14px;line-height:40px}[data-v-7a22c201] .ivu-radio{margin-right:10px}[data-v-7a22c201] .ivu-radio-inner:after{width:4.67px;height:4.67px;left:4px;top:4px}[data-v-7a22c201] .ivu-checkbox-group-item{font-size:14px;font-family:MicrosoftYaHeiUI;color:#333;line-height:14px;margin-right:30px}[data-v-7a22c201] .ivu-checkbox-group-item /deep/ .ivu-checkbox{margin-right:8px}[data-v-7a22c201] .ivu-checkbox-group-item /deep/ .ivu-checkbox-inner{width:16px;height:16px}[data-v-7a22c201] .ivu-checkbox-group-item /deep/ .ivu-checkbox-inner:after{top:2px;left:5px}[data-v-2730f167] .ivu-input,[data-v-2730f167] .ivu-input-group-append{height:40px;border-radius:0;border-color:transparent;background:transparent}[data-v-2730f167] .ivu-input-group-append .ivu-btn,[data-v-2730f167] .ivu-input .ivu-btn{height:40px}[data-v-2730f167] .ivu-input-group-prepend{display:none}.form-footer[data-v-5b818b28]{width:70%}.form-footer3[data-v-5b818b28],.form-footer[data-v-5b818b28]{position:fixed;bottom:0;right:0;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;background:#fff}.form-footer3[data-v-5b818b28]{width:30%}.form-footer2[data-v-5b818b28]{width:100%;position:absolute;bottom:0;right:0;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;background:#fff}[data-v-5b818b28] .ivu-input{height:40px;font-size:14px;border-radius:0;border-color:transparent;background:transparent}[data-v-5b818b28] .ivu-form-item-error .ivu-input{border-color:#ed4014}[data-v-5b818b28] .ivu-radio{margin-right:10px}[data-v-5b818b28] .ivu-radio-inner:after{width:4.67px;height:4.67px;left:4px;top:4px}[data-v-5b818b28] .ivu-radio-wrapper{font-size:14px;font-family:MicrosoftYaHeiUI;color:#333;line-height:14px;margin-right:30px}[data-v-5b818b28] .ivu-form-item-error .ivu-select-selection{border-color:#ed4014}[data-v-5b818b28] .ivu-card{background:transparent}[data-v-5b818b28] .ivu-form .ivu-form-item-label{font-size:14px;font-family:MicrosoftYaHei;color:#333;line-height:14px}[data-v-5b818b28] .ivu-card-body{padding:16px 12.4%}@media screen and (max-width:750px){[data-v-5b818b28] .ivu-card-body{padding:16px!important}}.mkdown-warpper[data-v-5ba98571]{background:#fff;width:100%;min-height:100px;border:1px dashed #999;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdown-warpper button[data-v-5ba98571]{width:100px;height:36px;background:#1890ff;opacity:.7;border-radius:0}.mkdown-warpper input[data-v-5ba98571]{outline:none;width:100%;background:#fff;border:0;display:-webkit-box;display:-ms-flexbox;display:flex;text-align:center;font-size:24px}.mkdown-warpper .mkdown-active[data-v-5ba98571]{text-align:left}.photo img[data-v-5a50e28c]{width:100%}.pic-line{list-style:none;font-size:0;white-space:nowrap;display:-webkit-box;display:-ms-flexbox;display:flex}.pic-line li{-webkit-box-flex:1;-ms-flex:1;flex:1;display:inline-block;position:relative}.pic-line li img{display:inline-block;width:100%;height:100%}.pic-line li .pictitle{width:100%;background:#000;opacity:.4;color:#fff;font-size:14px;position:absolute;bottom:0;padding:11px 12px 10px 15px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.pic-line:hover{cursor:pointer}.swiperpictitle{height:40px;width:100%;background:#000;opacity:.4;color:#fff;font-size:14px;position:absolute;bottom:0;padding:11px 12px 10px 15px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.imgstext-styleone[data-v-fde1ea04]{display:-webkit-box;display:-ms-flexbox;display:flex}.imgstext-styleone img[data-v-fde1ea04]{display:inline-block}.imgstext-styleone .content[data-v-fde1ea04]{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:30px;display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;-webkit-line-clamp:5}.imgstext-styleone .content h3[data-v-fde1ea04]{font-size:27px;color:#333;font-weight:400}.imgstext-styleone .content .para[data-v-fde1ea04]{font-size:14px;color:#666;white-space:normal;word-break:break-all;word-wrap:break-word}.imgstext-styleone .item-wrap[data-v-fde1ea04]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:25%}.imgstext-styleone .item-wrap .content[data-v-fde1ea04]{padding:0}.imgstext-styleone .item-line-wrap[data-v-fde1ea04]{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 5px}.imgstext-styleone .item-line-wrap .content[data-v-fde1ea04]{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:10px}@media screen and (max-width:768px){.imgstext-styleone .content[data-v-fde1ea04]{padding:5px}.imgstext-styleone .content .para[data-v-fde1ea04]{display:-webkit-box;-webkit-box-orient:vertical}.imgstext-styleone[data-v-fde1ea04]{-ms-flex-wrap:wrap;flex-wrap:wrap}.imgstext-styleone .item-line-wrap[data-v-fde1ea04]{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%!important}.imgstext-styleone .item-line-wrap img[data-v-fde1ea04]{width:100%!important}.imgstext-styleone .item-line-wrap .content[data-v-fde1ea04]{padding:5px;width:100%!important}.imgstext-styleone .item-line-wrap .content .para[data-v-fde1ea04]{height:100%!important}.imgstext-styleone .item-wrap[data-v-fde1ea04]{width:50%}.imgstext-styleone .item-wrap .content .para[data-v-fde1ea04]{height:100%}}@media screen and (max-width:414px){.imgstext-styleone .content .para[data-v-fde1ea04]{overflow:scroll}.imgstext-right[data-v-fde1ea04]{display:block}.imgstext-right>div[data-v-fde1ea04],.imgstext-right>img[data-v-fde1ea04]{width:100%!important}}.acrao[data-v-8a2af1b0]{-webkit-box-flex:1;-ms-flex:1;flex:1;max-width:100%;min-height:35px}.acrao .acrao_wrapper[data-v-8a2af1b0]{width:100%;background-size:cover!important}.acrao .topAffix[data-v-8a2af1b0]{position:fixed;top:0;z-index:99}.acrao .bottomAffix[data-v-8a2af1b0]{position:fixed;bottom:0;z-index:99}
\ No newline at end of file
.swiperMain[data-v-5c4efd8f]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.swiper-container[data-v-5c4efd8f]{width:100%;max-width:100%;height:400px}.swiper-container .swiper-wrapper[data-v-5c4efd8f]{width:100%}.swiper-container .swiper-slide[data-v-5c4efd8f]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.swiper-container .swiper-slide .imgBg[data-v-5c4efd8f]{width:100%;height:100%;background-repeat:no-repeat;background-size:cover;background-position:top;background-position-y:center}.swiper-container .swiper-slide .swiper_text[data-v-5c4efd8f]{width:100%;height:100%;position:absolute;padding:70px 7%;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden}.swiper-container .swiper-slide .swiper_text h1[data-v-5c4efd8f]{font-size:60px;font-family:MicrosoftYaHei-Bold,MicrosoftYaHei;font-weight:700;line-height:60px;color:#333;margin-bottom:30px}.swiper-container .swiper-slide .swiper_text p[data-v-5c4efd8f]{font-size:20px;font-family:MicrosoftYaHei;line-height:20px;color:#333}.swiper-container img[data-v-5c4efd8f]{width:100%;height:100%}@media screen and (max-width:750px){.swiper-container[data-v-5c4efd8f]{height:200px!important}.swiper-container .swiper_text[data-v-5c4efd8f]{padding:20px!important}.swiper-container .swiper_text h1[data-v-5c4efd8f]{font-size:30px!important;margin-bottom:15px!important;line-height:30px!important}.swiper-container .swiper_text p[data-v-5c4efd8f]{font-size:10px!important;line-height:20px!important}}.buttonMain[data-v-7de226b0]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.buttonMain .buttonMain_btn[data-v-7de226b0]{width:160px;height:50px;padding:10px 40px;background:#1890ff;border-radius:4px;border:1px solid;outline:none;cursor:pointer;font-size:14px;font-family:MicrosoftYaHei;color:#fff;line-height:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media screen and (max-width:750px){.buttonMain[data-v-7de226b0]{padding:0 15px}.buttonMain_btn[data-v-7de226b0]{width:100%!important}}[data-v-b000ae00] .ivu-select-selection{height:40px;border-radius:0;background:transparent;border-color:transparent}[data-v-b000ae00] .ivu-select-selection /deep/ .ivu-select-placeholder,[data-v-b000ae00] .ivu-select-selection /deep/ .ivu-select-selected-value{height:40px;font-size:14px;line-height:40px}[data-v-7a22c201] .ivu-radio{margin-right:10px}[data-v-7a22c201] .ivu-radio-inner:after{width:4.67px;height:4.67px;left:4px;top:4px}[data-v-7a22c201] .ivu-checkbox-group-item{font-size:14px;font-family:MicrosoftYaHeiUI;color:#333;line-height:14px;margin-right:30px}[data-v-7a22c201] .ivu-checkbox-group-item /deep/ .ivu-checkbox{margin-right:8px}[data-v-7a22c201] .ivu-checkbox-group-item /deep/ .ivu-checkbox-inner{width:16px;height:16px}[data-v-7a22c201] .ivu-checkbox-group-item /deep/ .ivu-checkbox-inner:after{top:2px;left:5px}[data-v-2730f167] .ivu-input,[data-v-2730f167] .ivu-input-group-append{height:40px;border-radius:0;border-color:transparent;background:transparent}[data-v-2730f167] .ivu-input-group-append .ivu-btn,[data-v-2730f167] .ivu-input .ivu-btn{height:40px}[data-v-2730f167] .ivu-input-group-prepend{display:none}.form-footer[data-v-7dd838b8]{width:70%}.form-footer3[data-v-7dd838b8],.form-footer[data-v-7dd838b8]{position:fixed;bottom:0;right:0;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;background:#fff}.form-footer3[data-v-7dd838b8]{width:30%}.form-footer2[data-v-7dd838b8]{width:100%;position:absolute;bottom:0;right:0;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;background:#fff}[data-v-7dd838b8] .ivu-input{height:40px;font-size:14px;border-radius:0;border-color:transparent;background:transparent}[data-v-7dd838b8] .ivu-form-item-error .ivu-input{border-color:#ed4014}[data-v-7dd838b8] .ivu-radio{margin-right:10px}[data-v-7dd838b8] .ivu-radio-inner:after{width:4.67px;height:4.67px;left:4px;top:4px}[data-v-7dd838b8] .ivu-radio-wrapper{font-size:14px;font-family:MicrosoftYaHeiUI;color:#333;line-height:14px;margin-right:30px}[data-v-7dd838b8] .ivu-form-item-error .ivu-select-selection{border-color:#ed4014}[data-v-7dd838b8] .ivu-card{background:transparent}[data-v-7dd838b8] .ivu-form .ivu-form-item-label{font-size:14px;font-family:MicrosoftYaHei;color:#333;line-height:14px}.mkdown-warpper[data-v-5ba98571]{background:#fff;width:100%;min-height:100px;border:1px dashed #999;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdown-warpper button[data-v-5ba98571]{width:100px;height:36px;background:#1890ff;opacity:.7;border-radius:0}.mkdown-warpper input[data-v-5ba98571]{outline:none;width:100%;background:#fff;border:0;display:-webkit-box;display:-ms-flexbox;display:flex;text-align:center;font-size:24px}.mkdown-warpper .mkdown-active[data-v-5ba98571]{text-align:left}.photo img[data-v-5a50e28c]{width:100%}.pic-line{list-style:none;font-size:0;white-space:nowrap;display:-webkit-box;display:-ms-flexbox;display:flex}.pic-line li{-webkit-box-flex:1;-ms-flex:1;flex:1;display:inline-block;position:relative}.pic-line li img{display:inline-block;width:100%;height:100%}.pic-line li .pictitle{width:100%;background:#000;opacity:.4;color:#fff;font-size:14px;position:absolute;bottom:0;padding:11px 12px 10px 15px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.pic-line:hover{cursor:pointer}.swiperpictitle{height:40px;width:100%;background:#000;opacity:.4;color:#fff;font-size:14px;position:absolute;bottom:0;padding:11px 12px 10px 15px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.imgstext-styleone[data-v-69e0400e]{display:-webkit-box;display:-ms-flexbox;display:flex}.imgstext-styleone img[data-v-69e0400e]{display:inline-block}.imgstext-styleone .content[data-v-69e0400e]{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:30px;display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;-webkit-line-clamp:5}.imgstext-styleone .content h3[data-v-69e0400e]{font-size:27px;color:#333;font-weight:400}.imgstext-styleone .content .para[data-v-69e0400e]{font-size:14px;color:#666;white-space:normal;word-break:break-all;word-wrap:break-word}.imgstext-styleone .item-wrap[data-v-69e0400e]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:25%}.imgstext-styleone .item-wrap .content[data-v-69e0400e]{padding:0}.imgstext-styleone .item-line-wrap[data-v-69e0400e]{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 5px}.imgstext-styleone .item-line-wrap .content[data-v-69e0400e]{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:10px}@media screen and (max-width:768px){.imgstext-styleone .content[data-v-69e0400e]{padding:5px}.imgstext-styleone .content .para[data-v-69e0400e]{display:-webkit-box;-webkit-box-orient:vertical}.imgstext-styleone[data-v-69e0400e]{-ms-flex-wrap:wrap;flex-wrap:wrap}.imgstext-styleone .item-line-wrap[data-v-69e0400e]{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%!important}.imgstext-styleone .item-line-wrap img[data-v-69e0400e]{width:100%!important}.imgstext-styleone .item-line-wrap .content[data-v-69e0400e]{padding:5px;width:100%!important}.imgstext-styleone .item-line-wrap .content .para[data-v-69e0400e]{height:100%!important}.imgstext-styleone .item-wrap[data-v-69e0400e]{width:50%}.imgstext-styleone .item-wrap .content .para[data-v-69e0400e]{height:100%}}@media screen and (max-width:414px){.imgstext-styleone .content .para[data-v-69e0400e]{min-height:100px;overflow:scroll}}.acrao[data-v-8a2af1b0]{-webkit-box-flex:1;-ms-flex:1;flex:1;max-width:100%;min-height:35px}.acrao .acrao_wrapper[data-v-8a2af1b0]{width:100%;background-size:cover!important}.acrao .topAffix[data-v-8a2af1b0]{position:fixed;top:0;z-index:99}.acrao .bottomAffix[data-v-8a2af1b0]{position:fixed;bottom:0;z-index:99}
\ No newline at end of file
<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/ccc.png><link rel=stylesheet href=//at.alicdn.com/t/font_1996389_21r6b2e5cqci.css><title></title><link href=/css/chunk-04497344.c9ab9860.css rel=prefetch><link href=/css/chunk-0fb760a4.5c30cb40.css rel=prefetch><link href=/css/chunk-14b9857b.0dc416de.css rel=prefetch><link href=/css/chunk-2c359864.0dc416de.css rel=prefetch><link href=/css/chunk-3385141a.0dc416de.css rel=prefetch><link href=/css/chunk-3cca9940.6014cc43.css rel=prefetch><link href=/css/chunk-66a9b55d.94a401cd.css rel=prefetch><link href=/css/chunk-6b77ef07.70decc8e.css rel=prefetch><link href=/css/chunk-7505ce5d.94033c22.css rel=prefetch><link href=/css/chunk-cc77621c.8797b2b5.css rel=prefetch><link href=/css/chunk-dec773a2.a32ca30e.css rel=prefetch><link href=/js/chunk-04497344.0f038df0.js rel=prefetch><link href=/js/chunk-0fb760a4.56bf0a09.js rel=prefetch><link href=/js/chunk-14b9857b.ae43b7c1.js rel=prefetch><link href=/js/chunk-1f11ec07.766ad876.js rel=prefetch><link href=/js/chunk-2c359864.f1f45686.js rel=prefetch><link href=/js/chunk-2d210f61.9e612a95.js rel=prefetch><link href=/js/chunk-3385141a.16d7705b.js rel=prefetch><link href=/js/chunk-3cca9940.f6b28725.js rel=prefetch><link href=/js/chunk-5a4e13d5.6ebd883c.js rel=prefetch><link href=/js/chunk-66a9b55d.1884440c.js rel=prefetch><link href=/js/chunk-6b77ef07.83a59a2a.js rel=prefetch><link href=/js/chunk-7505ce5d.4ab44dbf.js rel=prefetch><link href=/js/chunk-780401d4.2594e2ad.js rel=prefetch><link href=/js/chunk-cc77621c.209c3f4a.js rel=prefetch><link href=/js/chunk-d710b6d2.9eff4b27.js rel=prefetch><link href=/js/chunk-dec773a2.732e119f.js rel=prefetch><link href=/css/app.a0c5a847.css rel=preload as=style><link href=/css/chunk-vendors.a0428467.css rel=preload as=style><link href=/js/app.b2b97b2a.js rel=preload as=script><link href=/js/chunk-vendors.ca1af405.js rel=preload as=script><link href=/css/chunk-vendors.a0428467.css rel=stylesheet><link href=/css/app.a0c5a847.css rel=stylesheet></head><body><noscript><strong>We're sorry but iview-admin doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.ca1af405.js></script><script src=/js/app.b2b97b2a.js></script></body></html>
\ No newline at end of file
<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/ccc.png><link rel=stylesheet href=//at.alicdn.com/t/font_1996389_21r6b2e5cqci.css><title></title><link href=/css/chunk-04497344.c9ab9860.css rel=prefetch><link href=/css/chunk-0fb760a4.5c30cb40.css rel=prefetch><link href=/css/chunk-14b9857b.0dc416de.css rel=prefetch><link href=/css/chunk-2c359864.0dc416de.css rel=prefetch><link href=/css/chunk-3385141a.0dc416de.css rel=prefetch><link href=/css/chunk-3cca9940.6014cc43.css rel=prefetch><link href=/css/chunk-561836f3.6707d6e1.css rel=prefetch><link href=/css/chunk-66a9b55d.94a401cd.css rel=prefetch><link href=/css/chunk-6b77ef07.70decc8e.css rel=prefetch><link href=/css/chunk-cc77621c.8797b2b5.css rel=prefetch><link href=/css/chunk-d8ffb93a.091b3ef8.css rel=prefetch><link href=/js/chunk-04497344.0f038df0.js rel=prefetch><link href=/js/chunk-0fb760a4.56bf0a09.js rel=prefetch><link href=/js/chunk-14b9857b.ae43b7c1.js rel=prefetch><link href=/js/chunk-1f11ec07.766ad876.js rel=prefetch><link href=/js/chunk-2c359864.f1f45686.js rel=prefetch><link href=/js/chunk-2d210f61.9e612a95.js rel=prefetch><link href=/js/chunk-3385141a.16d7705b.js rel=prefetch><link href=/js/chunk-3cca9940.f6b28725.js rel=prefetch><link href=/js/chunk-561836f3.00e0d351.js rel=prefetch><link href=/js/chunk-5a4e13d5.6ebd883c.js rel=prefetch><link href=/js/chunk-66a9b55d.1884440c.js rel=prefetch><link href=/js/chunk-6b77ef07.83a59a2a.js rel=prefetch><link href=/js/chunk-780401d4.2594e2ad.js rel=prefetch><link href=/js/chunk-cc77621c.209c3f4a.js rel=prefetch><link href=/js/chunk-d710b6d2.9eff4b27.js rel=prefetch><link href=/js/chunk-d8ffb93a.d8c6cbd7.js rel=prefetch><link href=/css/app.a0c5a847.css rel=preload as=style><link href=/css/chunk-vendors.a0428467.css rel=preload as=style><link href=/js/app.5bf8139d.js rel=preload as=script><link href=/js/chunk-vendors.ca1af405.js rel=preload as=script><link href=/css/chunk-vendors.a0428467.css rel=stylesheet><link href=/css/app.a0c5a847.css rel=stylesheet></head><body><noscript><strong>We're sorry but iview-admin doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.ca1af405.js></script><script src=/js/app.5bf8139d.js></script></body></html>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
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 to comment