移除老版本小程序源代码
@ -8,12 +8,10 @@
|
||||
<div class="content">
|
||||
<!-- 新版本小程序主题提示 -->
|
||||
<div class="am-alert am-alert-warning am-radius">
|
||||
<p class="am-text-lg">已发布新版本小程序主题(支持6端小程序+H5)建议使用新版本主题,老版本主题已停止维护开发、将在后续版本中剔除。</p>
|
||||
<a class="am-fr" href="{{$store_theme_url}}" target="_blank">更多主题下载 <i class="am-icon-external-link"></i></a>
|
||||
<p class="am-text-sm">已发布新版本小程序主题、采用uniapp开发(支持多端小程序+H5),APP也在紧急适配中。</p>
|
||||
<p class="am-margin-top-xs">
|
||||
<a href="https://gitee.com/zongzhige/shopxo-uniapp" target="_blank">查看新版本小程序主题 <i class="am-icon-external-link"></i></a>
|
||||
</p>
|
||||
<p class="am-margin-top-xs">
|
||||
<a href="https://doc.shopxo.net/article/1/293727233598554112.html" target="_blank">uniapp版本打包教程 <i class="am-icon-external-link"></i></a>
|
||||
<a href="https://uniapp.shopxo.net/" target="_blank">查看小程序打包教程 <i class="am-icon-external-link"></i></a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
@ -48,7 +48,13 @@
|
||||
{{/foreach}}
|
||||
<ul>
|
||||
{{else /}}
|
||||
{{include file="public/not_data" /}}
|
||||
<div class="table-no">
|
||||
<i class="am-icon-warning"></i>
|
||||
<span>没有相关主题包</span>
|
||||
<p class="am-margin-top-lg">
|
||||
<a href="https://uniapp.shopxo.net/" target="_blank">查看新版本小程序打包教程 <i class="am-icon-external-link"></i></a>
|
||||
</p>
|
||||
</div>
|
||||
{{/if}}
|
||||
<!-- lis end -->
|
||||
</div>
|
||||
|
@ -11,18 +11,15 @@
|
||||
{{include file="appmini/base_nav" /}}
|
||||
<!-- 新版本小程序主题提示 -->
|
||||
<div class="am-alert am-alert-warning am-radius">
|
||||
<p class="am-text-lg">已发布新版本小程序主题(支持6端小程序+H5)建议使用新版本主题,老版本主题已停止维护开发、将在后续版本中剔除。</p>
|
||||
<p class="am-text-sm">已发布新版本小程序主题、采用uniapp开发(支持多端小程序+H5),APP也在紧急适配中。</p>
|
||||
<p class="am-margin-top-xs">
|
||||
<a href="https://gitee.com/zongzhige/shopxo-uniapp" target="_blank">查看新版本小程序主题源码 <i class="am-icon-external-link"></i></a>
|
||||
</p>
|
||||
<p class="am-margin-top-xs">
|
||||
<a href="https://doc.shopxo.net/article/1/293727233598554112.html" target="_blank">uniapp版本打包教程 <i class="am-icon-external-link"></i></a>
|
||||
<a href="https://uniapp.shopxo.net/" target="_blank">查看小程序打包教程 <i class="am-icon-external-link"></i></a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- tips -->
|
||||
<div class="am-alert am-alert-warning am-radius">
|
||||
<p class="am-text-danger am-margin-bottom-xs am-text-lg">生成源码包采用当前设置的默认主题进行生成zip压缩包</p>
|
||||
<div class="am-alert am-radius">
|
||||
<p class="am-text-danger am-margin-bottom-xs am-text-sm">生成源码包采用当前设置的默认主题进行生成zip压缩包</p>
|
||||
{{if MyConfig('shopxo.is_develop') eq true}}
|
||||
<p>当前为开发模式</p>
|
||||
<p class="am-margin-left-lg">1. 发布小程序必须采用 https 协议,上线需确认 app.js 中 request_url 参数值是否正确。</p>
|
||||
|
@ -566,12 +566,20 @@ class AppMiniService
|
||||
return DataReturn('源码目标目录没有权限['.self::$new_root.']', -1);
|
||||
}
|
||||
|
||||
// 包目录
|
||||
$old_dir = self::$old_path.DS.self::$default_theme;
|
||||
$new_dir = self::$new_path.DS.date('YmdHis');
|
||||
|
||||
// 源码包是否存在
|
||||
if(!is_dir($old_dir))
|
||||
{
|
||||
return DataReturn('源码包不存在['.self::$default_theme.']', -1);
|
||||
}
|
||||
|
||||
// 目录不存在则创建
|
||||
\base\FileUtil::CreateDir(self::$new_path);
|
||||
|
||||
// 复制包目录
|
||||
$old_dir = self::$old_path.DS.self::$default_theme;
|
||||
$new_dir = self::$new_path.DS.date('YmdHis');
|
||||
if(\base\FileUtil::CopyDir($old_dir, $new_dir) != true)
|
||||
{
|
||||
return DataReturn('项目包复制失败', -2);
|
||||
|
@ -1,628 +0,0 @@
|
||||
/* 框架样式覆盖 */
|
||||
.a-textarea-control textarea { font-size: 12px; }
|
||||
|
||||
/* 公共样式 */
|
||||
page {
|
||||
background: #f5f5f5;
|
||||
color: #4a4a4a;
|
||||
}
|
||||
page, textarea {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
input,
|
||||
textarea {
|
||||
-webkit-appearance: none;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
/* 导航分割 */
|
||||
.spacing-nav-title {
|
||||
position: relative;
|
||||
color: #d2364c;
|
||||
text-align: center;
|
||||
background-color: #ffffff;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
}
|
||||
.spacing-nav-title .line {
|
||||
display: inline-block;
|
||||
width: 80%;
|
||||
height: 1px;
|
||||
background: #d2364c;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
-webkit-transform: translate(-50%,-50%);
|
||||
-ms-transform: translate(-50%,-50%);
|
||||
transform: translate(-50%,-50%);
|
||||
}
|
||||
.spacing-nav-title .text-wrapper {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding: 0 8px;
|
||||
background-color: #ffffff;
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* 模块分割间距 */
|
||||
.spacing { padding-top: 20rpx; }
|
||||
.spacing-10 { padding-top: 10rpx; }
|
||||
.spacing-mb { margin-bottom: 20rpx; }
|
||||
.spacing-mt { margin-top: 20rpx; }
|
||||
|
||||
.drift { position: fixed; left: -1000px; }
|
||||
.nav-submit-fixed { background: #eee; height: 46px; position: fixed; bottom: 0; z-index: 10; }
|
||||
|
||||
.tips { background: #ffffeb url('/images/tips.png') no-repeat 5rpx 12rpx; background-size: 35rpx 35rpx; color: #f7b240; border: 1px solid #faebd2; line-height: 38rpx; padding: 10rpx 10rpx 10rpx 45rpx; font-size: 26rpx; border-radius: 2px; display: block; }
|
||||
|
||||
.data-loding image { width: 60px; height: 60px; background-size: 80% 80% !important; }
|
||||
|
||||
|
||||
/* 边框 */
|
||||
.br { border: solid 1px #efefef; }
|
||||
.br-b { border-bottom: solid 1px #efefef; }
|
||||
.br-t { border-top: solid 1px #efefef; }
|
||||
.br-l { border-left: solid 1px #efefef; }
|
||||
.br-r { border-right: solid 1px #efefef; }
|
||||
|
||||
/* 虚线边框 */
|
||||
.br-dashed { border: dashed 1px #efefef; }
|
||||
.br-b-dashed { border-bottom: dashed 1px #efefef; }
|
||||
.br-t-dashed { border-top: dashed 1px #efefef; }
|
||||
.br-l-dashed { border-left: dashed 1px #efefef; }
|
||||
.br-r-dashed { border-right: dashed 1px #efefef; }
|
||||
|
||||
/* 箭头符号 */
|
||||
.arrow-right { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAA+klEQVRYR+3WsWrDMBAG4P/eotCQLlk73UGfq6O3BgLNEsg7JQQPZ7ADfos8gAeBijYTAsnpREJBXmX0f/7RCRNe/NCL81EBtYH/1YCq/gK4iMiu1PSYGlDVloi+AOyZ+bsEwgQYx/FtmqYDgFUphAmQvniOiDFuRaTxNGEGlEZkAWaIFsCHp4lsQEIMw7AIIRw9CBfgGgFgzcw/ljPhBtxoohGR7aOIIoC+799DCCciWsYYnwvwhKeWXA14w12AEuHZgFLhWYCS4WbAPDxn5m+NpukQquqZiD49V+81wgToum6TfkiYef/oRXPvPRPg3mY56xVQG6gN/AEiuagh/yEjYQAAAABJRU5ErkJggg=='); background-size: 18px 18px; background-repeat: no-repeat; background-position: center right; }
|
||||
.arrow-bottom { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABRklEQVRYR+2UsUrFMBSGT9LBN3AQR4vQNO0gPoA6Cy5XZ1ddfZbr6nwdXFwVH8AlJacg2cTFN7BLjkQQwtW2STvcJRlL8/8fX3LCYMOLbbgfEkAykAwkA4MGEHEhhLif81gZY3bzPP/oy+gFQMSCiJCIjqSUL1MgjDFbXdd9AcB1WZbL/zIGDWitVwCwmAKhlNrOsuyTMYYAcC6EaKMB3IZfCMbYiRDiOcQEIu4RkRkrd1lBU+CZOJVSPg5BNE1zwDl/DSkPBvBNENGFlNIdzZ+FiMdE9BRaHgXgQ1hrL6uquvMJ2rY9s9Y+xJRHA/gQnPOroihu3Tc3rkS0ii2fBLB2MW8A4H1q+WQAH+InZGTUhi5t0BT0BWitDQDsMMYO++Z8bGxnAbhwpdR+XddvY0XRT/HUwNh9sw3EFq7/nwCSgWQgGfgGWR6PIRYTYskAAAAASUVORK5CYII='); background-size: 18px 18px; background-repeat: no-repeat; background-position: center right; }
|
||||
|
||||
|
||||
/* 常用样式 */
|
||||
.fl { float: left; }
|
||||
.fr { float: right; }
|
||||
.bg-white { background-color: #fff; }
|
||||
.wh-auto { width: 100%; }
|
||||
.ht-auto { height: 100%; }
|
||||
.tc { text-align: center; }
|
||||
.tl { text-align: left; }
|
||||
.tr { text-align: right; }
|
||||
.oh { overflow: hidden; }
|
||||
.dis-none { display: none; }
|
||||
.dis-block { display: block; }
|
||||
.dis-inline { display: inline; }
|
||||
.va-m { vertical-align: middle; }
|
||||
|
||||
.cr-main { color: #d2364c; }
|
||||
.cr-666 { color: #666; }
|
||||
.cr-888 { color: #888; }
|
||||
.cr-ccc { color: #ccc; }
|
||||
.cr-fff { color: #fff; }
|
||||
|
||||
.my-btn-default{
|
||||
font-size: 38rpx;
|
||||
color: #fff;
|
||||
border: none;
|
||||
background-color:#d2364c;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.my-btn-default.btn-disabled{
|
||||
background-color: #a6a6a6;
|
||||
color: #fff;
|
||||
}
|
||||
.my-btn-gray{
|
||||
font-size: 30rpx;
|
||||
color: #fff;
|
||||
border: none;
|
||||
background-color:#a6a6a6;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
/* 文字超出部分使用省略号 */
|
||||
.single-text {
|
||||
-o-text-overflow: ellipsis;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
max-width: 100%;
|
||||
}
|
||||
.multi-text {
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
min-height: 104rpx;
|
||||
line-height: 52rpx;
|
||||
font-size: 32rpx;
|
||||
white-space: initial;
|
||||
}
|
||||
|
||||
|
||||
/* 没有数据状态/处理错误/加载中 */
|
||||
.no-data-box {
|
||||
padding: 80rpx 0;
|
||||
}
|
||||
.no-data-box image {
|
||||
width: 160rpx;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
.no-data-box .no-data-tips {
|
||||
font-size: 28rpx;
|
||||
color: #a6a6a6;
|
||||
}
|
||||
.no-data-loding {
|
||||
padding-top: 15%;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
/* 底线 */
|
||||
.data-bottom-line{
|
||||
padding: 40rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
.data-bottom-line view {
|
||||
width: 33.3%;
|
||||
}
|
||||
.data-bottom-line .left, .data-bottom-line .right{
|
||||
margin-top: 8px;
|
||||
border-bottom: 1px solid #e1e1e1;
|
||||
}
|
||||
.data-bottom-line .msg{
|
||||
color: #999;
|
||||
text-align: center;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
/* 业务公共 */
|
||||
.copyright {
|
||||
color: #a5a5a5;
|
||||
text-align: center;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
.copyright .text {
|
||||
font-size: 26rpx;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.sales-price {
|
||||
color: #f40;
|
||||
font-weight: bold;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.original-price {
|
||||
color: #888;
|
||||
font-size: 26rpx;
|
||||
text-decoration: line-through;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
|
||||
.submit-fixed {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
background: #d2364c;
|
||||
color: #fff;
|
||||
border: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bg-main, .bg-primary, .bg-warning {
|
||||
color: #fff;
|
||||
border: 0;
|
||||
font-size: 34rpx;
|
||||
}
|
||||
.bg-main {
|
||||
background: #d2364c;
|
||||
}
|
||||
.bg-primary {
|
||||
background: #ed6977;
|
||||
}
|
||||
.bg-warning {
|
||||
background: #F37B1D;
|
||||
}
|
||||
.bg-active-main {
|
||||
background: #d2364c !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.submit-bottom {
|
||||
height: 85rpx;
|
||||
line-height: 85rpx;
|
||||
font-size: 32rpx;
|
||||
border-radius: 0;
|
||||
}
|
||||
.bg-main.a-button-disabled {
|
||||
background: #fbe0e5;
|
||||
color: #f7b6c2;
|
||||
}
|
||||
.bg-warning.a-button-disabled {
|
||||
background: #ffcda6;
|
||||
color: #fdae70;
|
||||
}
|
||||
.bg-primary.a-button-disabled {
|
||||
background: #ffd2d7;
|
||||
color: #ffa0ab;
|
||||
}
|
||||
|
||||
.nav-back {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 10%;
|
||||
}
|
||||
|
||||
/*
|
||||
滚动标签高度
|
||||
*/
|
||||
.scroll-box {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单
|
||||
*/
|
||||
.form-container .form-gorup {
|
||||
padding: 20rpx 10rpx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.form-container .form-gorup-title {
|
||||
margin-bottom: 5rpx;
|
||||
font-weight: 500;
|
||||
}
|
||||
.form-container .form-group-tips,
|
||||
.form-container .form-group-tips-must {
|
||||
margin-left: 20rpx;
|
||||
font-size: 24rpx;
|
||||
color: #ccc;
|
||||
}
|
||||
.form-container .form-group-tips-must {
|
||||
color: #f00;
|
||||
}
|
||||
.form-container .form-gorup input,
|
||||
.form-container .form-gorup textarea,
|
||||
.form-container .form-gorup .picker {
|
||||
border-radius: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 0 10rpx;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.form-container .form-gorup input,
|
||||
.form-container .form-gorup .picker {
|
||||
height: 70rpx;
|
||||
line-height: 70rpx;
|
||||
}
|
||||
.form-container .form-gorup textarea {
|
||||
padding: 10rpx;
|
||||
min-height: 70rpx;
|
||||
}
|
||||
.form-container .form-gorup-text {
|
||||
padding: 20rpx 10rpx;
|
||||
}
|
||||
.form-container .form-gorup .switch {
|
||||
margin: 30rpx 0 20rpx 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单图片上传
|
||||
*/
|
||||
.form-container-upload .form-upload-data .item {
|
||||
padding: 10rpx;
|
||||
position: relative;
|
||||
}
|
||||
.form-container-upload .form-upload-data .delete-icon {
|
||||
position: absolute;
|
||||
top: 12rpx;
|
||||
right: 12rpx;
|
||||
color: #e5e5e5;
|
||||
background-color: #d9534f;
|
||||
padding: 5rpx 18rpx;
|
||||
font-size: 30rpx;
|
||||
border-style: solid;
|
||||
border-width: 0 0 1px 1px;
|
||||
border-color: #eee;
|
||||
}
|
||||
.form-container-upload .form-upload-data image {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
padding: 5rpx;
|
||||
border: 1px solid #eee;
|
||||
display: block;
|
||||
}
|
||||
.form-container-upload .upload-icon {
|
||||
margin: 10rpx 0 0 10rpx;
|
||||
width: 210rpx;
|
||||
height: 210rpx;
|
||||
border: 1px dashed #e9e9e9;
|
||||
}
|
||||
|
||||
/*
|
||||
* 优惠劵 - 插件
|
||||
*/
|
||||
.coupon-container {
|
||||
padding: 0 10rpx;
|
||||
}
|
||||
.coupon-container .item {
|
||||
overflow: hidden;
|
||||
height: 180rpx;
|
||||
border: 1px solid #D2364C;
|
||||
}
|
||||
.coupon-container .v-left {
|
||||
width: calc(100% - 140rpx);
|
||||
padding: 30rpx 0 30rpx 20rpx;
|
||||
box-sizing:border-box;
|
||||
-moz-box-sizing:border-box;
|
||||
-webkit-box-sizing:border-box;
|
||||
}
|
||||
.coupon-container .v-left .base {
|
||||
color: #D2364C;
|
||||
}
|
||||
.coupon-container .v-left .base .symbol {
|
||||
font-family: Verdana, Tahoma;
|
||||
font-weight: 700;
|
||||
}
|
||||
.coupon-container .v-left .base .price {
|
||||
font-weight: 700;
|
||||
font-family: arial;
|
||||
font-size: 76rpx;
|
||||
}
|
||||
.coupon-container .v-left .base .desc {
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
.coupon-container .v-left base-tips, .coupon-container .v-left .base-time {
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.coupon-container .v-right {
|
||||
background: #d2364c;
|
||||
width: 140rpx;
|
||||
height: 180rpx;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
.coupon-container .v-right:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.coupon-container .v-right .circle {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -1px;
|
||||
top: -3px;
|
||||
width: 3px;
|
||||
height: 180rpx;
|
||||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAACpCAYAAADur4c3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3NpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3MjUzYzIwOS04ZWNlLTRlNTctODQ4OC01ZDExOTkwOGNkYmMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTM1QzgxREZGRDI5MTFFNTg3QjhGRUQ1MDY5OURERUQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTM1QzgxREVGRDI5MTFFNTg3QjhGRUQ1MDY5OURERUQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTJiNzVkOGUtZDc2Yi00MzEzLWFmNmYtYTJkNTRlYTI4YTY1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjcyNTNjMjA5LThlY2UtNGU1Ny04NDg4LTVkMTE5OTA4Y2RiYyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pvy+vnQAAAEqSURBVHjaYvz//z8DDDAxIAFyOVeBOAHEYfyPMDsLmXMfmfMT2YADDP8h4CEQq4A4aUDMA1LNSKZDXwJxGcg1yJaWIXOeInO+IxuwA+acK0AsA+IEADEbic7hhPOAer4DcQcQMyNb2oLMeYVsADcyZwPMObuBWBTEsQFpI9E54sjO+QvEc0F+YoHKJgHxJ2TnvEM2gBmZswrmnA1AzAXiaJPhHC1k58BNQ3bBTGTOR2QD/iJzFsH8Mw/kHxBHggzn2KA7BxzWyC5Yisz5imwACmc2LLY7QbEN4nCS4ZwAIGZFds5lUEpEdsF6nKn3PTJnAsiAV0BcBsSM5GamFCDmQXYOOJ8iu2Anzrz9HKU8ABlwDYgTKcnbo0XNaFEzWtQgipqOYVLUAAQYAKPWa4c8cIHnAAAAAElFTkSuQmCC) no-repeat;
|
||||
}
|
||||
.coupon-container .item-disabled .v-right {
|
||||
background: #dfdfdf !important;
|
||||
color: #c0c0c0 !important;
|
||||
cursor: no-drop !important;
|
||||
}
|
||||
.coupon-container .item-disabled {
|
||||
border: 1px solid #dfdfdf !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* 快捷导航
|
||||
*/
|
||||
.common-quick-nav {
|
||||
border: 0;
|
||||
padding: 15rpx;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
position: fixed;
|
||||
right: 10rpx;
|
||||
border-radius: 50%;
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
z-index: 1;
|
||||
}
|
||||
.common-quick-nav image {
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
}
|
||||
|
||||
/**
|
||||
* 在线客服
|
||||
*/
|
||||
.common-online-service {
|
||||
bottom: 35%;
|
||||
}
|
||||
|
||||
/**
|
||||
* 公共样式
|
||||
*/
|
||||
.margin-xs {
|
||||
margin: 5rpx;
|
||||
}
|
||||
.margin-sm {
|
||||
margin: 10rpx;
|
||||
}
|
||||
.margin, .margin-default {
|
||||
margin: 15rpx;
|
||||
}
|
||||
.margin-lg {
|
||||
margin: 20rpx;
|
||||
}
|
||||
.margin-xl {
|
||||
margin: 25rpx;
|
||||
}
|
||||
.margin-xxl {
|
||||
margin: 30rpx;
|
||||
}
|
||||
|
||||
.margin-top-xs {
|
||||
margin-top: 5rpx;
|
||||
}
|
||||
.margin-top-sm {
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.margin-top, .margin-top-default {
|
||||
margin-top: 15rpx;
|
||||
}
|
||||
.margin-top-lg {
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
.margin-top-xl {
|
||||
margin-top: 25rpx;
|
||||
}
|
||||
.margin-top-xxl {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
|
||||
.margin-right-xs {
|
||||
margin-right: 5rpx;
|
||||
}
|
||||
.margin-right-sm {
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
.margin-right, .margin-right-default {
|
||||
margin-right: 15rpx;
|
||||
}
|
||||
.margin-right-lg {
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
.margin-right-xl {
|
||||
margin-right: 25rpx;
|
||||
}
|
||||
.margin-right-xxl {
|
||||
margin-right: 30rpx;
|
||||
}
|
||||
|
||||
.margin-left-xs {
|
||||
margin-left: 5rpx;
|
||||
}
|
||||
.margin-left-sm {
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
.margin-left, .margin-left-default {
|
||||
margin-left: 15rpx;
|
||||
}
|
||||
.margin-left-lg {
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
.margin-left-xl {
|
||||
margin-left: 25rpx;
|
||||
}
|
||||
.margin-left-xxl {
|
||||
margin-left: 30rpx;
|
||||
}
|
||||
|
||||
.margin-bottom-xs {
|
||||
margin-bottom: 5rpx;
|
||||
}
|
||||
.margin-bottom-sm {
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
.margin-bottom, .margin-bottom-default {
|
||||
margin-bottom: 15rpx;
|
||||
}
|
||||
.margin-bottom-lg {
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.margin-bottom-xl {
|
||||
margin-bottom: 25rpx;
|
||||
}
|
||||
.margin-bottom-xxl {
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
|
||||
|
||||
.padding-xs {
|
||||
padding: 5rpx;
|
||||
}
|
||||
.padding-sm {
|
||||
padding: 10rpx;
|
||||
}
|
||||
.padding, .padding-default {
|
||||
padding: 15rpx;
|
||||
}
|
||||
.padding-lg {
|
||||
padding: 20rpx;
|
||||
}
|
||||
.padding-xl {
|
||||
padding: 25rpx;
|
||||
}
|
||||
.padding-xxl {
|
||||
padding: 30rpx;
|
||||
}
|
||||
|
||||
.padding-top-xs {
|
||||
padding-top: 5rpx;
|
||||
}
|
||||
.padding-top-sm {
|
||||
padding-top: 10rpx;
|
||||
}
|
||||
.padding-top, .padding-top-default {
|
||||
padding-top: 15rpx;
|
||||
}
|
||||
.padding-top-lg {
|
||||
padding-top: 20rpx;
|
||||
}
|
||||
.padding-top-xl {
|
||||
padding-top: 25rpx;
|
||||
}
|
||||
.padding-top-xxl {
|
||||
padding-top: 30rpx;
|
||||
}
|
||||
|
||||
.padding-right-xs {
|
||||
padding-right: 5rpx;
|
||||
}
|
||||
.padding-right-sm {
|
||||
padding-right: 10rpx;
|
||||
}
|
||||
.padding-right, .padding-right-default {
|
||||
padding-right: 15rpx;
|
||||
}
|
||||
.padding-right-lg {
|
||||
padding-right: 20rpx;
|
||||
}
|
||||
.padding-right-xl {
|
||||
padding-right: 25rpx;
|
||||
}
|
||||
.padding-right-xxl {
|
||||
padding-right: 30rpx;
|
||||
}
|
||||
|
||||
.padding-left-xs {
|
||||
padding-left: 5rpx;
|
||||
}
|
||||
.padding-left-sm {
|
||||
padding-left: 10rpx;
|
||||
}
|
||||
.padding-left, .padding-left-default {
|
||||
padding-left: 15rpx;
|
||||
}
|
||||
.padding-left-lg {
|
||||
padding-left: 20rpx;
|
||||
}
|
||||
.padding-left-xl {
|
||||
padding-left: 25rpx;
|
||||
}
|
||||
.padding-left-xxl {
|
||||
padding-left: 30rpx;
|
||||
}
|
||||
|
||||
.padding-bottom-xs {
|
||||
padding-bottom: 5rpx;
|
||||
}
|
||||
.padding-bottom-sm {
|
||||
padding-bottom: 10rpx;
|
||||
}
|
||||
.padding-bottom, .padding-bottom-default {
|
||||
padding-bottom: 15rpx;
|
||||
}
|
||||
.padding-bottom-lg {
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
.padding-bottom-xl {
|
||||
padding-bottom: 25rpx;
|
||||
}
|
||||
.padding-bottom-xxl {
|
||||
padding-bottom: 30rpx;
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/index/index",
|
||||
"pages/goods-category/goods-category",
|
||||
"pages/cart/cart",
|
||||
"pages/user/user",
|
||||
"pages/web-view/web-view",
|
||||
"pages/login/login",
|
||||
"pages/paytips/paytips",
|
||||
"pages/goods-search/goods-search",
|
||||
"pages/goods-detail/goods-detail",
|
||||
"pages/goods-comment/goods-comment",
|
||||
"pages/buy/buy",
|
||||
"pages/user-address/user-address",
|
||||
"pages/user-address-save/user-address-save",
|
||||
"pages/user-order/user-order",
|
||||
"pages/user-order-detail/user-order-detail",
|
||||
"pages/user-order-comments/user-order-comments",
|
||||
"pages/user-favor/user-favor",
|
||||
"pages/user-answer-list/user-answer-list",
|
||||
"pages/answer-list/answer-list",
|
||||
"pages/answer-form/answer-form",
|
||||
"pages/message/message",
|
||||
"pages/user-integral/user-integral",
|
||||
"pages/user-goods-browse/user-goods-browse",
|
||||
"pages/user-orderaftersale/user-orderaftersale",
|
||||
"pages/user-orderaftersale-detail/user-orderaftersale-detail",
|
||||
"pages/extraction-address/extraction-address",
|
||||
"pages/common/open-setting-location/open-setting-location",
|
||||
"pages/design/design",
|
||||
"pages/plugins/coupon/index/index",
|
||||
"pages/plugins/coupon/user/user",
|
||||
"pages/plugins/membershiplevelvip/index/index",
|
||||
"pages/plugins/membershiplevelvip/buy/buy",
|
||||
"pages/plugins/membershiplevelvip/user/user",
|
||||
"pages/plugins/membershiplevelvip/order/order",
|
||||
"pages/plugins/membershiplevelvip/order-detail/order-detail",
|
||||
"pages/plugins/membershiplevelvip/profit-detail/profit-detail",
|
||||
"pages/plugins/membershiplevelvip/profit/profit",
|
||||
"pages/plugins/membershiplevelvip/statistics/statistics",
|
||||
"pages/plugins/membershiplevelvip/poster/poster",
|
||||
"pages/plugins/membershiplevelvip/team/team",
|
||||
"pages/plugins/distribution/user/user",
|
||||
"pages/plugins/distribution/order/order",
|
||||
"pages/plugins/distribution/order-detail/order-detail",
|
||||
"pages/plugins/distribution/profit/profit",
|
||||
"pages/plugins/distribution/profit-detail/profit-detail",
|
||||
"pages/plugins/distribution/statistics/statistics",
|
||||
"pages/plugins/distribution/poster/poster",
|
||||
"pages/plugins/distribution/team/team",
|
||||
"pages/plugins/distribution/extraction/extraction",
|
||||
"pages/plugins/distribution/extraction-apply/extraction-apply",
|
||||
"pages/plugins/distribution/extraction-order/extraction-order",
|
||||
"pages/plugins/distribution/extraction-switch/extraction-switch",
|
||||
"pages/plugins/distribution/introduce/introduce",
|
||||
"pages/plugins/wallet/user/user",
|
||||
"pages/plugins/wallet/recharge/recharge",
|
||||
"pages/plugins/wallet/cash-auth/cash-auth",
|
||||
"pages/plugins/wallet/cash-create/cash-create",
|
||||
"pages/plugins/wallet/wallet-log/wallet-log",
|
||||
"pages/plugins/wallet/wallet-log-detail/wallet-log-detail",
|
||||
"pages/plugins/wallet/user-recharge/user-recharge",
|
||||
"pages/plugins/wallet/user-recharge-detail/user-recharge-detail",
|
||||
"pages/plugins/wallet/user-cash/user-cash",
|
||||
"pages/plugins/wallet/user-cash-detail/user-cash-detail",
|
||||
"pages/plugins/excellentbuyreturntocash/profit/profit",
|
||||
"pages/plugins/excellentbuyreturntocash/profit-detail/profit-detail",
|
||||
"pages/plugins/exchangerate/currency/currency",
|
||||
"pages/plugins/invoice/user/user",
|
||||
"pages/plugins/invoice/invoice/invoice",
|
||||
"pages/plugins/invoice/invoice-detail/invoice-detail",
|
||||
"pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo",
|
||||
"pages/plugins/invoice/order/order",
|
||||
"pages/plugins/signin/user/user",
|
||||
"pages/plugins/signin/index-detail/index-detail",
|
||||
"pages/plugins/signin/user-signin/user-signin",
|
||||
"pages/plugins/signin/user-qrcode/user-qrcode",
|
||||
"pages/plugins/signin/user-qrcode-detail/user-qrcode-detail",
|
||||
"pages/plugins/signin/user-qrcode-saveinfo/user-qrcode-saveinfo",
|
||||
"pages/plugins/signin/user-coming-list/user-coming-list",
|
||||
"pages/plugins/points/index/index",
|
||||
"pages/plugins/brand/index/index",
|
||||
"pages/plugins/shop/index/index",
|
||||
"pages/plugins/shop/detail/detail",
|
||||
"pages/plugins/shop/search/search",
|
||||
"pages/plugins/shop/design/design",
|
||||
"pages/plugins/shop/favor/favor"
|
||||
],
|
||||
"window": {
|
||||
"defaultTitle": "{{application_title}}",
|
||||
"titleBarColor": "#d2364c",
|
||||
"backgroundColor": "#f5f5f5"
|
||||
},
|
||||
"tabBar": {
|
||||
"textColor": "#8a8a8a",
|
||||
"selectedColor": "#d2364c",
|
||||
"backgroundColor": "#fff",
|
||||
"items": [
|
||||
{
|
||||
"pagePath": "pages/index/index",
|
||||
"icon": "/images/nav-icon-home.png",
|
||||
"activeIcon": "/images/nav-icon-home-active.png",
|
||||
"name": "首页"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/goods-category/goods-category",
|
||||
"icon": "/images/nav-icon-category.png",
|
||||
"activeIcon": "/images/nav-icon-category-active.png",
|
||||
"name": "分类"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/cart/cart",
|
||||
"icon": "/images/nav-icon-cart.png",
|
||||
"activeIcon": "/images/nav-icon-cart-active.png",
|
||||
"name": "购物车"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/user/user",
|
||||
"icon": "/images/nav-icon-user.png",
|
||||
"activeIcon": "/images/nav-icon-user-active.png",
|
||||
"name": "我的"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
.am-badge {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.am-badge-text {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
transform: translate(50%, -50%);
|
||||
top: 0px;
|
||||
min-width: 16px;
|
||||
padding: 0;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
background-color: #FF3B30;
|
||||
border-radius: 16px;
|
||||
color: #fff;
|
||||
font-size: 10px;
|
||||
padding: 1px 1px;
|
||||
}
|
||||
.am-badge-text-max {
|
||||
padding: 1px 2px;
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
<view a:if="{{propNumber > 0}}" class="am-badge">
|
||||
<view class="am-badge-text {{(propNumber > 99) ? 'am-badge-text-max' : ''}}">
|
||||
<text>{{(propNumber > 99) ? '99+' : propNumber}}</text>
|
||||
</view>
|
||||
</view>
|
@ -1,23 +0,0 @@
|
||||
// components/badge.js
|
||||
Component({
|
||||
/**
|
||||
* 组件的属性列表
|
||||
*/
|
||||
properties: {
|
||||
propNumber: Number,
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的方法列表
|
||||
*/
|
||||
methods: {
|
||||
|
||||
}
|
||||
})
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
.data-list {
|
||||
overflow: hidden;
|
||||
}
|
||||
.data-list .items {
|
||||
width: calc(25% - 60rpx);
|
||||
float: left;
|
||||
padding: 30rpx;
|
||||
}
|
||||
.items-content {
|
||||
border-radius: 50%;
|
||||
padding: 20rpx;
|
||||
text-align: center;
|
||||
width: 70rpx;
|
||||
height: 70rpx;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.data-list .items image {
|
||||
width: 60rpx !important;
|
||||
height: 60rpx !important;
|
||||
margin-top: 5rpx;
|
||||
}
|
||||
.data-list .items .title {
|
||||
margin-top: 10rpx;
|
||||
font-size: 30rpx;
|
||||
text-align:center;
|
||||
-o-text-overflow: ellipsis;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
max-width: 100%;
|
||||
}
|
@ -1,10 +0,0 @@
|
||||
<view a:if="{{data.length > 0}}">
|
||||
<view class="data-list bg-white spacing-mb">
|
||||
<view class="items" a:for="{{data}}">
|
||||
<view class="items-content tc" style="background-color:{{item.bg_color}}" data-value="{{item.event_value}}" data-type="{{item.event_type}}" onTap="nav_event">
|
||||
<image class="wh-auto" src="{{item.images_url}}" mode="aspectFit" />
|
||||
</view>
|
||||
<view class="title tc single-text">{{item.name}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
@ -1,17 +0,0 @@
|
||||
const app = getApp();
|
||||
Component({
|
||||
mixins: [],
|
||||
data: {},
|
||||
props: {
|
||||
data: []
|
||||
},
|
||||
didMount() {},
|
||||
didUpdate(){},
|
||||
didUnmount(){},
|
||||
methods: {
|
||||
// 操作事件
|
||||
nav_event(e) {
|
||||
app.operation_event(e);
|
||||
},
|
||||
}
|
||||
});
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
"component": true
|
||||
}
|
@ -1,707 +0,0 @@
|
||||
/**
|
||||
* 布局基础
|
||||
*/
|
||||
.layout-content-children,.layout-content-container{overflow:hidden;}
|
||||
|
||||
/**
|
||||
* 模块类型样式 - 数据列表
|
||||
*/
|
||||
.module-list-content .item{float:left}
|
||||
.module-list-content-avg-1{width:calc(100% + 1px);margin-left:-1px;margin-top:-1px;}
|
||||
.module-list-content-avg-2{width:calc(100% + 2px);margin-left:-2px;margin-top:-2px;}
|
||||
.module-list-content-avg-3{width:calc(100% + 3px);margin-left:-3px;margin-top:-3px;}
|
||||
.module-list-content-avg-4{width:calc(100% + 4px);margin-left:-4px;margin-top:-4px;}
|
||||
.module-list-content-avg-5{width:calc(100% + 5px);margin-left:-5px;margin-top:-5px;}
|
||||
.module-list-content-avg-6{width:calc(100% + 6px);margin-left:-6px;margin-top:-6px;}
|
||||
.module-list-content-avg-7{width:calc(100% + 7px);margin-left:-7px;margin-top:-7px;}
|
||||
.module-list-content-avg-8{width:calc(100% + 8px);margin-left:-8px;margin-top:-8px;}
|
||||
.module-list-content-avg-9{width:calc(100% + 9px);margin-left:-9px;margin-top:-9px;}
|
||||
.module-list-content-avg-10{width:calc(100% + 10px);margin-left:-10px;margin-top:-10px;}
|
||||
.module-list-content-avg-11{width:calc(100% + 11px);margin-left:-11px;margin-top:-11px;}
|
||||
.module-list-content-avg-12{width:calc(100% + 12px);margin-left:-12px;margin-top:-12px;}
|
||||
.module-list-content-avg-13{width:calc(100% + 13px);margin-left:-13px;margin-top:-13px;}
|
||||
.module-list-content-avg-14{width:calc(100% + 14px);margin-left:-14px;margin-top:-14px;}
|
||||
.module-list-content-avg-15{width:calc(100% + 15px);margin-left:-15px;margin-top:-15px;}
|
||||
.module-list-content-avg-16{width:calc(100% + 16px);margin-left:-16px;margin-top:-16px;}
|
||||
.module-list-content-avg-17{width:calc(100% + 17px);margin-left:-17px;margin-top:-17px;}
|
||||
.module-list-content-avg-18{width:calc(100% + 18px);margin-left:-18px;margin-top:-18px;}
|
||||
.module-list-content-avg-19{width:calc(100% + 19px);margin-left:-19px;margin-top:-19px;}
|
||||
.module-list-content-avg-20{width:calc(100% + 20px);margin-left:-20px;margin-top:-20px;}
|
||||
.module-list-content-avg-21{width:calc(100% + 21px);margin-left:-21px;margin-top:-21px;}
|
||||
.module-list-content-avg-22{width:calc(100% + 22px);margin-left:-22px;margin-top:-22px;}
|
||||
.module-list-content-avg-23{width:calc(100% + 23px);margin-left:-23px;margin-top:-23px;}
|
||||
.module-list-content-avg-24{width:calc(100% + 24px);margin-left:-24px;margin-top:-24px;}
|
||||
.module-list-content-avg-25{width:calc(100% + 25px);margin-left:-25px;margin-top:-25px;}
|
||||
.module-list-content-avg-26{width:calc(100% + 26px);margin-left:-26px;margin-top:-26px;}
|
||||
.module-list-content-avg-27{width:calc(100% + 27px);margin-left:-27px;margin-top:-27px;}
|
||||
.module-list-content-avg-28{width:calc(100% + 28px);margin-left:-28px;margin-top:-28px;}
|
||||
.module-list-content-avg-29{width:calc(100% + 29px);margin-left:-29px;margin-top:-29px;}
|
||||
.module-list-content-avg-30{width:calc(100% + 30px);margin-left:-30px;margin-top:-30px;}
|
||||
.module-list-sm-1 .item{width:100%;}
|
||||
.module-list-sm-2 .item{width:50%;}
|
||||
.module-list-sm-3 .item{width:33.33%;}
|
||||
.module-list-sm-4 .item{width:25%;}
|
||||
.module-list-sm-5 .item{width:20%;}
|
||||
.module-list-sm-6 .item{width:16.66%;}
|
||||
.module-list-sm-7 .item{width:14.28%;}
|
||||
.module-list-sm-8 .item{width:12.5%;}
|
||||
.module-list-sm-9 .item{width:11.11%;}
|
||||
.module-list-sm-10 .item{width:10%;}
|
||||
.module-list-sm-11 .item{width:9.09%;}
|
||||
.module-list-sm-12 .item{width:8.33%;}
|
||||
|
||||
/**
|
||||
* 商品列表
|
||||
*/
|
||||
.module-goods-content .module-item{background:#fff}
|
||||
.module-goods-content .module-item .item-bottom{margin-top:5px}
|
||||
.module-goods-content .module-item .module-title{margin-bottom:5px;max-width:100%;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;min-height:38px;line-height:20px;font-size:12px;white-space:initial}
|
||||
.module-goods-content .module-item .module-price{color:#f40;font-weight:bold;word-wrap:normal;text-overflow:ellipsis;white-space:nowrap;font-size:14px;}
|
||||
|
||||
|
||||
/**
|
||||
* 布局圆角
|
||||
*/
|
||||
.layout-sm-border-radius-1{border-radius:1px;}
|
||||
.layout-sm-border-radius-2{border-radius:2px;}
|
||||
.layout-sm-border-radius-3{border-radius:3px;}
|
||||
.layout-sm-border-radius-4{border-radius:4px;}
|
||||
.layout-sm-border-radius-5{border-radius:5px;}
|
||||
.layout-sm-border-radius-6{border-radius:6px;}
|
||||
.layout-sm-border-radius-7{border-radius:7px;}
|
||||
.layout-sm-border-radius-8{border-radius:8px;}
|
||||
.layout-sm-border-radius-9{border-radius:9px;}
|
||||
.layout-sm-border-radius-10{border-radius:10px;}
|
||||
.layout-sm-border-radius-11{border-radius:11px;}
|
||||
.layout-sm-border-radius-12{border-radius:12px;}
|
||||
.layout-sm-border-radius-13{border-radius:13px;}
|
||||
.layout-sm-border-radius-14{border-radius:14px;}
|
||||
.layout-sm-border-radius-15{border-radius:15px;}
|
||||
.layout-sm-border-radius-16{border-radius:16px;}
|
||||
.layout-sm-border-radius-17{border-radius:17px;}
|
||||
.layout-sm-border-radius-18{border-radius:18px;}
|
||||
.layout-sm-border-radius-19{border-radius:19px;}
|
||||
.layout-sm-border-radius-20{border-radius:20px;}
|
||||
.layout-sm-border-radius-21{border-radius:21px;}
|
||||
.layout-sm-border-radius-22{border-radius:22px;}
|
||||
.layout-sm-border-radius-23{border-radius:23px;}
|
||||
.layout-sm-border-radius-24{border-radius:24px;}
|
||||
.layout-sm-border-radius-25{border-radius:25px;}
|
||||
.layout-sm-border-radius-26{border-radius:26px;}
|
||||
.layout-sm-border-radius-27{border-radius:27px;}
|
||||
.layout-sm-border-radius-28{border-radius:28px;}
|
||||
.layout-sm-border-radius-29{border-radius:29px;}
|
||||
.layout-sm-border-radius-30{border-radius:30px;}
|
||||
|
||||
/**
|
||||
* 布局样式 - 边线大小
|
||||
*/
|
||||
.layout-sm-border-top-1{border-top:1px;}
|
||||
.layout-sm-border-top-2{border-top:2px;}
|
||||
.layout-sm-border-top-3{border-top:3px;}
|
||||
.layout-sm-border-top-4{border-top:4px;}
|
||||
.layout-sm-border-top-5{border-top:5px;}
|
||||
.layout-sm-border-top-6{border-top:6px;}
|
||||
.layout-sm-border-top-7{border-top:7px;}
|
||||
.layout-sm-border-top-8{border-top:8px;}
|
||||
.layout-sm-border-top-9{border-top:9px;}
|
||||
.layout-sm-border-top-10{border-top:10px;}
|
||||
|
||||
.layout-sm-border-right-1{border-right:1px;}
|
||||
.layout-sm-border-right-2{border-right:2px;}
|
||||
.layout-sm-border-right-3{border-right:3px;}
|
||||
.layout-sm-border-right-4{border-right:4px;}
|
||||
.layout-sm-border-right-5{border-right:5px;}
|
||||
.layout-sm-border-right-6{border-right:6px;}
|
||||
.layout-sm-border-right-7{border-right:7px;}
|
||||
.layout-sm-border-right-8{border-right:8px;}
|
||||
.layout-sm-border-right-9{border-right:9px;}
|
||||
.layout-sm-border-right-10{border-right:10px;}
|
||||
|
||||
.layout-sm-border-bottom-1{border-bottom:1px;}
|
||||
.layout-sm-border-bottom-2{border-bottom:2px;}
|
||||
.layout-sm-border-bottom-3{border-bottom:3px;}
|
||||
.layout-sm-border-bottom-4{border-bottom:4px;}
|
||||
.layout-sm-border-bottom-5{border-bottom:5px;}
|
||||
.layout-sm-border-bottom-6{border-bottom:6px;}
|
||||
.layout-sm-border-bottom-7{border-bottom:7px;}
|
||||
.layout-sm-border-bottom-8{border-bottom:8px;}
|
||||
.layout-sm-border-bottom-9{border-bottom:9px;}
|
||||
.layout-sm-border-bottom-10{border-bottom:10px;}
|
||||
|
||||
.layout-sm-border-left-1{border-left:1px;}
|
||||
.layout-sm-border-left-2{border-left:2px;}
|
||||
.layout-sm-border-left-3{border-left:3px;}
|
||||
.layout-sm-border-left-4{border-left:4px;}
|
||||
.layout-sm-border-left-5{border-left:5px;}
|
||||
.layout-sm-border-left-6{border-left:6px;}
|
||||
.layout-sm-border-left-7{border-left:7px;}
|
||||
.layout-sm-border-left-8{border-left:8px;}
|
||||
.layout-sm-border-left-9{border-left:9px;}
|
||||
.layout-sm-border-left-10{border-left:10px;}
|
||||
|
||||
/**
|
||||
* 布局边线 - 边线类型
|
||||
*/
|
||||
.layout-sm-border-top-solid{border-top-style:solid;}
|
||||
.layout-sm-border-top-dashed{border-top-style:dashed;}
|
||||
.layout-sm-border-top-dotted{border-top-style:dotted;}
|
||||
.layout-sm-border-top-double{border-top-style:double;}
|
||||
|
||||
.layout-sm-border-right-solid{border-right-style:solid;}
|
||||
.layout-sm-border-right-dashed{border-right-style:dashed;}
|
||||
.layout-sm-border-right-dotted{border-right-style:dotted;}
|
||||
.layout-sm-border-right-double{border-right-style:double;}
|
||||
|
||||
.layout-sm-border-bottom-solid{border-bottom-style:solid;}
|
||||
.layout-sm-border-bottom-dashed{border-bottom-style:dashed;}
|
||||
.layout-sm-border-bottom-dotted{border-bottom-style:dotted;}
|
||||
.layout-sm-border-bottom-double{border-bottom-style:double;}
|
||||
|
||||
.layout-sm-border-left-solid{border-left-style:solid;}
|
||||
.layout-sm-border-left-dashed{border-left-style:dashed;}
|
||||
.layout-sm-border-left-dotted{border-left-style:dotted;}
|
||||
.layout-sm-border-left-double{border-left-style:double;}
|
||||
|
||||
/**
|
||||
* 布局外边距
|
||||
*/
|
||||
.layout-sm-margin-top-1{margin-top:1px;}
|
||||
.layout-sm-margin-top-2{margin-top:2px;}
|
||||
.layout-sm-margin-top-3{margin-top:3px;}
|
||||
.layout-sm-margin-top-4{margin-top:4px;}
|
||||
.layout-sm-margin-top-5{margin-top:5px;}
|
||||
.layout-sm-margin-top-6{margin-top:6px;}
|
||||
.layout-sm-margin-top-7{margin-top:7px;}
|
||||
.layout-sm-margin-top-8{margin-top:8px;}
|
||||
.layout-sm-margin-top-9{margin-top:9px;}
|
||||
.layout-sm-margin-top-10{margin-top:10px;}
|
||||
.layout-sm-margin-top-11{margin-top:11px;}
|
||||
.layout-sm-margin-top-12{margin-top:12px;}
|
||||
.layout-sm-margin-top-13{margin-top:13px;}
|
||||
.layout-sm-margin-top-14{margin-top:14px;}
|
||||
.layout-sm-margin-top-15{margin-top:15px;}
|
||||
.layout-sm-margin-top-16{margin-top:16px;}
|
||||
.layout-sm-margin-top-17{margin-top:17px;}
|
||||
.layout-sm-margin-top-18{margin-top:18px;}
|
||||
.layout-sm-margin-top-19{margin-top:19px;}
|
||||
.layout-sm-margin-top-20{margin-top:20px;}
|
||||
.layout-sm-margin-top-21{margin-top:21px;}
|
||||
.layout-sm-margin-top-22{margin-top:22px;}
|
||||
.layout-sm-margin-top-23{margin-top:23px;}
|
||||
.layout-sm-margin-top-24{margin-top:24px;}
|
||||
.layout-sm-margin-top-25{margin-top:25px;}
|
||||
.layout-sm-margin-top-26{margin-top:26px;}
|
||||
.layout-sm-margin-top-27{margin-top:27px;}
|
||||
.layout-sm-margin-top-28{margin-top:28px;}
|
||||
.layout-sm-margin-top-29{margin-top:29px;}
|
||||
.layout-sm-margin-top-30{margin-top:30px;}
|
||||
.layout-sm-margin-top-31{margin-top:31px;}
|
||||
.layout-sm-margin-top-32{margin-top:32px;}
|
||||
.layout-sm-margin-top-33{margin-top:33px;}
|
||||
.layout-sm-margin-top-34{margin-top:34px;}
|
||||
.layout-sm-margin-top-35{margin-top:35px;}
|
||||
.layout-sm-margin-top-36{margin-top:36px;}
|
||||
.layout-sm-margin-top-37{margin-top:37px;}
|
||||
.layout-sm-margin-top-38{margin-top:38px;}
|
||||
.layout-sm-margin-top-39{margin-top:39px;}
|
||||
.layout-sm-margin-top-40{margin-top:40px;}
|
||||
.layout-sm-margin-top-41{margin-top:41px;}
|
||||
.layout-sm-margin-top-42{margin-top:42px;}
|
||||
.layout-sm-margin-top-43{margin-top:43px;}
|
||||
.layout-sm-margin-top-44{margin-top:44px;}
|
||||
.layout-sm-margin-top-45{margin-top:45px;}
|
||||
.layout-sm-margin-top-46{margin-top:46px;}
|
||||
.layout-sm-margin-top-47{margin-top:47px;}
|
||||
.layout-sm-margin-top-48{margin-top:48px;}
|
||||
.layout-sm-margin-top-49{margin-top:49px;}
|
||||
.layout-sm-margin-top-50{margin-top:50px;}
|
||||
.layout-sm-margin-top-51{margin-top:51px;}
|
||||
.layout-sm-margin-top-52{margin-top:52px;}
|
||||
.layout-sm-margin-top-53{margin-top:53px;}
|
||||
.layout-sm-margin-top-54{margin-top:54px;}
|
||||
.layout-sm-margin-top-55{margin-top:55px;}
|
||||
.layout-sm-margin-top-56{margin-top:56px;}
|
||||
.layout-sm-margin-top-57{margin-top:57px;}
|
||||
.layout-sm-margin-top-58{margin-top:58px;}
|
||||
.layout-sm-margin-top-59{margin-top:59px;}
|
||||
.layout-sm-margin-top-60{margin-top:60px;}
|
||||
|
||||
.layout-sm-margin-right-1{margin-right:1px;}
|
||||
.layout-sm-margin-right-2{margin-right:2px;}
|
||||
.layout-sm-margin-right-3{margin-right:3px;}
|
||||
.layout-sm-margin-right-4{margin-right:4px;}
|
||||
.layout-sm-margin-right-5{margin-right:5px;}
|
||||
.layout-sm-margin-right-6{margin-right:6px;}
|
||||
.layout-sm-margin-right-7{margin-right:7px;}
|
||||
.layout-sm-margin-right-8{margin-right:8px;}
|
||||
.layout-sm-margin-right-9{margin-right:9px;}
|
||||
.layout-sm-margin-right-10{margin-right:10px;}
|
||||
.layout-sm-margin-right-11{margin-right:11px;}
|
||||
.layout-sm-margin-right-12{margin-right:12px;}
|
||||
.layout-sm-margin-right-13{margin-right:13px;}
|
||||
.layout-sm-margin-right-14{margin-right:14px;}
|
||||
.layout-sm-margin-right-15{margin-right:15px;}
|
||||
.layout-sm-margin-right-16{margin-right:16px;}
|
||||
.layout-sm-margin-right-17{margin-right:17px;}
|
||||
.layout-sm-margin-right-18{margin-right:18px;}
|
||||
.layout-sm-margin-right-19{margin-right:19px;}
|
||||
.layout-sm-margin-right-20{margin-right:20px;}
|
||||
.layout-sm-margin-right-21{margin-right:21px;}
|
||||
.layout-sm-margin-right-22{margin-right:22px;}
|
||||
.layout-sm-margin-right-23{margin-right:23px;}
|
||||
.layout-sm-margin-right-24{margin-right:24px;}
|
||||
.layout-sm-margin-right-25{margin-right:25px;}
|
||||
.layout-sm-margin-right-26{margin-right:26px;}
|
||||
.layout-sm-margin-right-27{margin-right:27px;}
|
||||
.layout-sm-margin-right-28{margin-right:28px;}
|
||||
.layout-sm-margin-right-29{margin-right:29px;}
|
||||
.layout-sm-margin-right-30{margin-right:30px;}
|
||||
.layout-sm-margin-right-31{margin-right:31px;}
|
||||
.layout-sm-margin-right-32{margin-right:32px;}
|
||||
.layout-sm-margin-right-33{margin-right:33px;}
|
||||
.layout-sm-margin-right-34{margin-right:34px;}
|
||||
.layout-sm-margin-right-35{margin-right:35px;}
|
||||
.layout-sm-margin-right-36{margin-right:36px;}
|
||||
.layout-sm-margin-right-37{margin-right:37px;}
|
||||
.layout-sm-margin-right-38{margin-right:38px;}
|
||||
.layout-sm-margin-right-39{margin-right:39px;}
|
||||
.layout-sm-margin-right-40{margin-right:40px;}
|
||||
.layout-sm-margin-right-41{margin-right:41px;}
|
||||
.layout-sm-margin-right-42{margin-right:42px;}
|
||||
.layout-sm-margin-right-43{margin-right:43px;}
|
||||
.layout-sm-margin-right-44{margin-right:44px;}
|
||||
.layout-sm-margin-right-45{margin-right:45px;}
|
||||
.layout-sm-margin-right-46{margin-right:46px;}
|
||||
.layout-sm-margin-right-47{margin-right:47px;}
|
||||
.layout-sm-margin-right-48{margin-right:48px;}
|
||||
.layout-sm-margin-right-49{margin-right:49px;}
|
||||
.layout-sm-margin-right-50{margin-right:50px;}
|
||||
.layout-sm-margin-right-51{margin-right:51px;}
|
||||
.layout-sm-margin-right-52{margin-right:52px;}
|
||||
.layout-sm-margin-right-53{margin-right:53px;}
|
||||
.layout-sm-margin-right-54{margin-right:54px;}
|
||||
.layout-sm-margin-right-55{margin-right:55px;}
|
||||
.layout-sm-margin-right-56{margin-right:56px;}
|
||||
.layout-sm-margin-right-57{margin-right:57px;}
|
||||
.layout-sm-margin-right-58{margin-right:58px;}
|
||||
.layout-sm-margin-right-59{margin-right:59px;}
|
||||
.layout-sm-margin-right-60{margin-right:60px;}
|
||||
|
||||
.layout-sm-margin-bottom-1{margin-bottom:1px;}
|
||||
.layout-sm-margin-bottom-2{margin-bottom:2px;}
|
||||
.layout-sm-margin-bottom-3{margin-bottom:3px;}
|
||||
.layout-sm-margin-bottom-4{margin-bottom:4px;}
|
||||
.layout-sm-margin-bottom-5{margin-bottom:5px;}
|
||||
.layout-sm-margin-bottom-6{margin-bottom:6px;}
|
||||
.layout-sm-margin-bottom-7{margin-bottom:7px;}
|
||||
.layout-sm-margin-bottom-8{margin-bottom:8px;}
|
||||
.layout-sm-margin-bottom-9{margin-bottom:9px;}
|
||||
.layout-sm-margin-bottom-10{margin-bottom:10px;}
|
||||
.layout-sm-margin-bottom-11{margin-bottom:11px;}
|
||||
.layout-sm-margin-bottom-12{margin-bottom:12px;}
|
||||
.layout-sm-margin-bottom-13{margin-bottom:13px;}
|
||||
.layout-sm-margin-bottom-14{margin-bottom:14px;}
|
||||
.layout-sm-margin-bottom-15{margin-bottom:15px;}
|
||||
.layout-sm-margin-bottom-16{margin-bottom:16px;}
|
||||
.layout-sm-margin-bottom-17{margin-bottom:17px;}
|
||||
.layout-sm-margin-bottom-18{margin-bottom:18px;}
|
||||
.layout-sm-margin-bottom-19{margin-bottom:19px;}
|
||||
.layout-sm-margin-bottom-20{margin-bottom:20px;}
|
||||
.layout-sm-margin-bottom-21{margin-bottom:21px;}
|
||||
.layout-sm-margin-bottom-22{margin-bottom:22px;}
|
||||
.layout-sm-margin-bottom-23{margin-bottom:23px;}
|
||||
.layout-sm-margin-bottom-24{margin-bottom:24px;}
|
||||
.layout-sm-margin-bottom-25{margin-bottom:25px;}
|
||||
.layout-sm-margin-bottom-26{margin-bottom:26px;}
|
||||
.layout-sm-margin-bottom-27{margin-bottom:27px;}
|
||||
.layout-sm-margin-bottom-28{margin-bottom:28px;}
|
||||
.layout-sm-margin-bottom-29{margin-bottom:29px;}
|
||||
.layout-sm-margin-bottom-30{margin-bottom:30px;}
|
||||
.layout-sm-margin-bottom-31{margin-bottom:31px;}
|
||||
.layout-sm-margin-bottom-32{margin-bottom:32px;}
|
||||
.layout-sm-margin-bottom-33{margin-bottom:33px;}
|
||||
.layout-sm-margin-bottom-34{margin-bottom:34px;}
|
||||
.layout-sm-margin-bottom-35{margin-bottom:35px;}
|
||||
.layout-sm-margin-bottom-36{margin-bottom:36px;}
|
||||
.layout-sm-margin-bottom-37{margin-bottom:37px;}
|
||||
.layout-sm-margin-bottom-38{margin-bottom:38px;}
|
||||
.layout-sm-margin-bottom-39{margin-bottom:39px;}
|
||||
.layout-sm-margin-bottom-40{margin-bottom:40px;}
|
||||
.layout-sm-margin-bottom-41{margin-bottom:41px;}
|
||||
.layout-sm-margin-bottom-42{margin-bottom:42px;}
|
||||
.layout-sm-margin-bottom-43{margin-bottom:43px;}
|
||||
.layout-sm-margin-bottom-44{margin-bottom:44px;}
|
||||
.layout-sm-margin-bottom-45{margin-bottom:45px;}
|
||||
.layout-sm-margin-bottom-46{margin-bottom:46px;}
|
||||
.layout-sm-margin-bottom-47{margin-bottom:47px;}
|
||||
.layout-sm-margin-bottom-48{margin-bottom:48px;}
|
||||
.layout-sm-margin-bottom-49{margin-bottom:49px;}
|
||||
.layout-sm-margin-bottom-50{margin-bottom:50px;}
|
||||
.layout-sm-margin-bottom-51{margin-bottom:51px;}
|
||||
.layout-sm-margin-bottom-52{margin-bottom:52px;}
|
||||
.layout-sm-margin-bottom-53{margin-bottom:53px;}
|
||||
.layout-sm-margin-bottom-54{margin-bottom:54px;}
|
||||
.layout-sm-margin-bottom-55{margin-bottom:55px;}
|
||||
.layout-sm-margin-bottom-56{margin-bottom:56px;}
|
||||
.layout-sm-margin-bottom-57{margin-bottom:57px;}
|
||||
.layout-sm-margin-bottom-58{margin-bottom:58px;}
|
||||
.layout-sm-margin-bottom-59{margin-bottom:59px;}
|
||||
.layout-sm-margin-bottom-60{margin-bottom:60px;}
|
||||
|
||||
.layout-sm-margin-left-1{margin-left:1px;}
|
||||
.layout-sm-margin-left-2{margin-left:2px;}
|
||||
.layout-sm-margin-left-3{margin-left:3px;}
|
||||
.layout-sm-margin-left-4{margin-left:4px;}
|
||||
.layout-sm-margin-left-5{margin-left:5px;}
|
||||
.layout-sm-margin-left-6{margin-left:6px;}
|
||||
.layout-sm-margin-left-7{margin-left:7px;}
|
||||
.layout-sm-margin-left-8{margin-left:8px;}
|
||||
.layout-sm-margin-left-9{margin-left:9px;}
|
||||
.layout-sm-margin-left-10{margin-left:10px;}
|
||||
.layout-sm-margin-left-11{margin-left:11px;}
|
||||
.layout-sm-margin-left-12{margin-left:12px;}
|
||||
.layout-sm-margin-left-13{margin-left:13px;}
|
||||
.layout-sm-margin-left-14{margin-left:14px;}
|
||||
.layout-sm-margin-left-15{margin-left:15px;}
|
||||
.layout-sm-margin-left-16{margin-left:16px;}
|
||||
.layout-sm-margin-left-17{margin-left:17px;}
|
||||
.layout-sm-margin-left-18{margin-left:18px;}
|
||||
.layout-sm-margin-left-19{margin-left:19px;}
|
||||
.layout-sm-margin-left-20{margin-left:20px;}
|
||||
.layout-sm-margin-left-21{margin-left:21px;}
|
||||
.layout-sm-margin-left-22{margin-left:22px;}
|
||||
.layout-sm-margin-left-23{margin-left:23px;}
|
||||
.layout-sm-margin-left-24{margin-left:24px;}
|
||||
.layout-sm-margin-left-25{margin-left:25px;}
|
||||
.layout-sm-margin-left-26{margin-left:26px;}
|
||||
.layout-sm-margin-left-27{margin-left:27px;}
|
||||
.layout-sm-margin-left-28{margin-left:28px;}
|
||||
.layout-sm-margin-left-29{margin-left:29px;}
|
||||
.layout-sm-margin-left-30{margin-left:30px;}
|
||||
.layout-sm-margin-left-31{margin-left:31px;}
|
||||
.layout-sm-margin-left-32{margin-left:32px;}
|
||||
.layout-sm-margin-left-33{margin-left:33px;}
|
||||
.layout-sm-margin-left-34{margin-left:34px;}
|
||||
.layout-sm-margin-left-35{margin-left:35px;}
|
||||
.layout-sm-margin-left-36{margin-left:36px;}
|
||||
.layout-sm-margin-left-37{margin-left:37px;}
|
||||
.layout-sm-margin-left-38{margin-left:38px;}
|
||||
.layout-sm-margin-left-39{margin-left:39px;}
|
||||
.layout-sm-margin-left-40{margin-left:40px;}
|
||||
.layout-sm-margin-left-41{margin-left:41px;}
|
||||
.layout-sm-margin-left-42{margin-left:42px;}
|
||||
.layout-sm-margin-left-43{margin-left:43px;}
|
||||
.layout-sm-margin-left-44{margin-left:44px;}
|
||||
.layout-sm-margin-left-45{margin-left:45px;}
|
||||
.layout-sm-margin-left-46{margin-left:46px;}
|
||||
.layout-sm-margin-left-47{margin-left:47px;}
|
||||
.layout-sm-margin-left-48{margin-left:48px;}
|
||||
.layout-sm-margin-left-49{margin-left:49px;}
|
||||
.layout-sm-margin-left-50{margin-left:50px;}
|
||||
.layout-sm-margin-left-51{margin-left:51px;}
|
||||
.layout-sm-margin-left-52{margin-left:52px;}
|
||||
.layout-sm-margin-left-53{margin-left:53px;}
|
||||
.layout-sm-margin-left-54{margin-left:54px;}
|
||||
.layout-sm-margin-left-55{margin-left:55px;}
|
||||
.layout-sm-margin-left-56{margin-left:56px;}
|
||||
.layout-sm-margin-left-57{margin-left:57px;}
|
||||
.layout-sm-margin-left-58{margin-left:58px;}
|
||||
.layout-sm-margin-left-59{margin-left:59px;}
|
||||
.layout-sm-margin-left-60{margin-left:60px;}
|
||||
|
||||
/**
|
||||
* 布局内边距
|
||||
*/
|
||||
.layout-sm-padding-top-1{padding-top:1px;}
|
||||
.layout-sm-padding-top-2{padding-top:2px;}
|
||||
.layout-sm-padding-top-3{padding-top:3px;}
|
||||
.layout-sm-padding-top-4{padding-top:4px;}
|
||||
.layout-sm-padding-top-5{padding-top:5px;}
|
||||
.layout-sm-padding-top-6{padding-top:6px;}
|
||||
.layout-sm-padding-top-7{padding-top:7px;}
|
||||
.layout-sm-padding-top-8{padding-top:8px;}
|
||||
.layout-sm-padding-top-9{padding-top:9px;}
|
||||
.layout-sm-padding-top-10{padding-top:10px;}
|
||||
.layout-sm-padding-top-11{padding-top:11px;}
|
||||
.layout-sm-padding-top-12{padding-top:12px;}
|
||||
.layout-sm-padding-top-13{padding-top:13px;}
|
||||
.layout-sm-padding-top-14{padding-top:14px;}
|
||||
.layout-sm-padding-top-15{padding-top:15px;}
|
||||
.layout-sm-padding-top-16{padding-top:16px;}
|
||||
.layout-sm-padding-top-17{padding-top:17px;}
|
||||
.layout-sm-padding-top-18{padding-top:18px;}
|
||||
.layout-sm-padding-top-19{padding-top:19px;}
|
||||
.layout-sm-padding-top-20{padding-top:20px;}
|
||||
.layout-sm-padding-top-21{padding-top:21px;}
|
||||
.layout-sm-padding-top-22{padding-top:22px;}
|
||||
.layout-sm-padding-top-23{padding-top:23px;}
|
||||
.layout-sm-padding-top-24{padding-top:24px;}
|
||||
.layout-sm-padding-top-25{padding-top:25px;}
|
||||
.layout-sm-padding-top-26{padding-top:26px;}
|
||||
.layout-sm-padding-top-27{padding-top:27px;}
|
||||
.layout-sm-padding-top-28{padding-top:28px;}
|
||||
.layout-sm-padding-top-29{padding-top:29px;}
|
||||
.layout-sm-padding-top-30{padding-top:30px;}
|
||||
.layout-sm-padding-top-31{padding-top:31px;}
|
||||
.layout-sm-padding-top-32{padding-top:32px;}
|
||||
.layout-sm-padding-top-33{padding-top:33px;}
|
||||
.layout-sm-padding-top-34{padding-top:34px;}
|
||||
.layout-sm-padding-top-35{padding-top:35px;}
|
||||
.layout-sm-padding-top-36{padding-top:36px;}
|
||||
.layout-sm-padding-top-37{padding-top:37px;}
|
||||
.layout-sm-padding-top-38{padding-top:38px;}
|
||||
.layout-sm-padding-top-39{padding-top:39px;}
|
||||
.layout-sm-padding-top-40{padding-top:40px;}
|
||||
.layout-sm-padding-top-41{padding-top:41px;}
|
||||
.layout-sm-padding-top-42{padding-top:42px;}
|
||||
.layout-sm-padding-top-43{padding-top:43px;}
|
||||
.layout-sm-padding-top-44{padding-top:44px;}
|
||||
.layout-sm-padding-top-45{padding-top:45px;}
|
||||
.layout-sm-padding-top-46{padding-top:46px;}
|
||||
.layout-sm-padding-top-47{padding-top:47px;}
|
||||
.layout-sm-padding-top-48{padding-top:48px;}
|
||||
.layout-sm-padding-top-49{padding-top:49px;}
|
||||
.layout-sm-padding-top-50{padding-top:50px;}
|
||||
.layout-sm-padding-top-51{padding-top:51px;}
|
||||
.layout-sm-padding-top-52{padding-top:52px;}
|
||||
.layout-sm-padding-top-53{padding-top:53px;}
|
||||
.layout-sm-padding-top-54{padding-top:54px;}
|
||||
.layout-sm-padding-top-55{padding-top:55px;}
|
||||
.layout-sm-padding-top-56{padding-top:56px;}
|
||||
.layout-sm-padding-top-57{padding-top:57px;}
|
||||
.layout-sm-padding-top-58{padding-top:58px;}
|
||||
.layout-sm-padding-top-59{padding-top:59px;}
|
||||
.layout-sm-padding-top-60{padding-top:60px;}
|
||||
|
||||
.layout-sm-padding-right-1{padding-right:1px;}
|
||||
.layout-sm-padding-right-2{padding-right:2px;}
|
||||
.layout-sm-padding-right-3{padding-right:3px;}
|
||||
.layout-sm-padding-right-4{padding-right:4px;}
|
||||
.layout-sm-padding-right-5{padding-right:5px;}
|
||||
.layout-sm-padding-right-6{padding-right:6px;}
|
||||
.layout-sm-padding-right-7{padding-right:7px;}
|
||||
.layout-sm-padding-right-8{padding-right:8px;}
|
||||
.layout-sm-padding-right-9{padding-right:9px;}
|
||||
.layout-sm-padding-right-10{padding-right:10px;}
|
||||
.layout-sm-padding-right-11{padding-right:11px;}
|
||||
.layout-sm-padding-right-12{padding-right:12px;}
|
||||
.layout-sm-padding-right-13{padding-right:13px;}
|
||||
.layout-sm-padding-right-14{padding-right:14px;}
|
||||
.layout-sm-padding-right-15{padding-right:15px;}
|
||||
.layout-sm-padding-right-16{padding-right:16px;}
|
||||
.layout-sm-padding-right-17{padding-right:17px;}
|
||||
.layout-sm-padding-right-18{padding-right:18px;}
|
||||
.layout-sm-padding-right-19{padding-right:19px;}
|
||||
.layout-sm-padding-right-20{padding-right:20px;}
|
||||
.layout-sm-padding-right-21{padding-right:21px;}
|
||||
.layout-sm-padding-right-22{padding-right:22px;}
|
||||
.layout-sm-padding-right-23{padding-right:23px;}
|
||||
.layout-sm-padding-right-24{padding-right:24px;}
|
||||
.layout-sm-padding-right-25{padding-right:25px;}
|
||||
.layout-sm-padding-right-26{padding-right:26px;}
|
||||
.layout-sm-padding-right-27{padding-right:27px;}
|
||||
.layout-sm-padding-right-28{padding-right:28px;}
|
||||
.layout-sm-padding-right-29{padding-right:29px;}
|
||||
.layout-sm-padding-right-30{padding-right:30px;}
|
||||
.layout-sm-padding-right-31{padding-right:31px;}
|
||||
.layout-sm-padding-right-32{padding-right:32px;}
|
||||
.layout-sm-padding-right-33{padding-right:33px;}
|
||||
.layout-sm-padding-right-34{padding-right:34px;}
|
||||
.layout-sm-padding-right-35{padding-right:35px;}
|
||||
.layout-sm-padding-right-36{padding-right:36px;}
|
||||
.layout-sm-padding-right-37{padding-right:37px;}
|
||||
.layout-sm-padding-right-38{padding-right:38px;}
|
||||
.layout-sm-padding-right-39{padding-right:39px;}
|
||||
.layout-sm-padding-right-40{padding-right:40px;}
|
||||
.layout-sm-padding-right-41{padding-right:41px;}
|
||||
.layout-sm-padding-right-42{padding-right:42px;}
|
||||
.layout-sm-padding-right-43{padding-right:43px;}
|
||||
.layout-sm-padding-right-44{padding-right:44px;}
|
||||
.layout-sm-padding-right-45{padding-right:45px;}
|
||||
.layout-sm-padding-right-46{padding-right:46px;}
|
||||
.layout-sm-padding-right-47{padding-right:47px;}
|
||||
.layout-sm-padding-right-48{padding-right:48px;}
|
||||
.layout-sm-padding-right-49{padding-right:49px;}
|
||||
.layout-sm-padding-right-50{padding-right:50px;}
|
||||
.layout-sm-padding-right-51{padding-right:51px;}
|
||||
.layout-sm-padding-right-52{padding-right:52px;}
|
||||
.layout-sm-padding-right-53{padding-right:53px;}
|
||||
.layout-sm-padding-right-54{padding-right:54px;}
|
||||
.layout-sm-padding-right-55{padding-right:55px;}
|
||||
.layout-sm-padding-right-56{padding-right:56px;}
|
||||
.layout-sm-padding-right-57{padding-right:57px;}
|
||||
.layout-sm-padding-right-58{padding-right:58px;}
|
||||
.layout-sm-padding-right-59{padding-right:59px;}
|
||||
.layout-sm-padding-right-60{padding-right:60px;}
|
||||
|
||||
.layout-sm-padding-bottom-1{padding-bottom:1px;}
|
||||
.layout-sm-padding-bottom-2{padding-bottom:2px;}
|
||||
.layout-sm-padding-bottom-3{padding-bottom:3px;}
|
||||
.layout-sm-padding-bottom-4{padding-bottom:4px;}
|
||||
.layout-sm-padding-bottom-5{padding-bottom:5px;}
|
||||
.layout-sm-padding-bottom-6{padding-bottom:6px;}
|
||||
.layout-sm-padding-bottom-7{padding-bottom:7px;}
|
||||
.layout-sm-padding-bottom-8{padding-bottom:8px;}
|
||||
.layout-sm-padding-bottom-9{padding-bottom:9px;}
|
||||
.layout-sm-padding-bottom-10{padding-bottom:10px;}
|
||||
.layout-sm-padding-bottom-11{padding-bottom:11px;}
|
||||
.layout-sm-padding-bottom-12{padding-bottom:12px;}
|
||||
.layout-sm-padding-bottom-13{padding-bottom:13px;}
|
||||
.layout-sm-padding-bottom-14{padding-bottom:14px;}
|
||||
.layout-sm-padding-bottom-15{padding-bottom:15px;}
|
||||
.layout-sm-padding-bottom-16{padding-bottom:16px;}
|
||||
.layout-sm-padding-bottom-17{padding-bottom:17px;}
|
||||
.layout-sm-padding-bottom-18{padding-bottom:18px;}
|
||||
.layout-sm-padding-bottom-19{padding-bottom:19px;}
|
||||
.layout-sm-padding-bottom-20{padding-bottom:20px;}
|
||||
.layout-sm-padding-bottom-21{padding-bottom:21px;}
|
||||
.layout-sm-padding-bottom-22{padding-bottom:22px;}
|
||||
.layout-sm-padding-bottom-23{padding-bottom:23px;}
|
||||
.layout-sm-padding-bottom-24{padding-bottom:24px;}
|
||||
.layout-sm-padding-bottom-25{padding-bottom:25px;}
|
||||
.layout-sm-padding-bottom-26{padding-bottom:26px;}
|
||||
.layout-sm-padding-bottom-27{padding-bottom:27px;}
|
||||
.layout-sm-padding-bottom-28{padding-bottom:28px;}
|
||||
.layout-sm-padding-bottom-29{padding-bottom:29px;}
|
||||
.layout-sm-padding-bottom-30{padding-bottom:30px;}
|
||||
.layout-sm-padding-bottom-31{padding-bottom:31px;}
|
||||
.layout-sm-padding-bottom-32{padding-bottom:32px;}
|
||||
.layout-sm-padding-bottom-33{padding-bottom:33px;}
|
||||
.layout-sm-padding-bottom-34{padding-bottom:34px;}
|
||||
.layout-sm-padding-bottom-35{padding-bottom:35px;}
|
||||
.layout-sm-padding-bottom-36{padding-bottom:36px;}
|
||||
.layout-sm-padding-bottom-37{padding-bottom:37px;}
|
||||
.layout-sm-padding-bottom-38{padding-bottom:38px;}
|
||||
.layout-sm-padding-bottom-39{padding-bottom:39px;}
|
||||
.layout-sm-padding-bottom-40{padding-bottom:40px;}
|
||||
.layout-sm-padding-bottom-41{padding-bottom:41px;}
|
||||
.layout-sm-padding-bottom-42{padding-bottom:42px;}
|
||||
.layout-sm-padding-bottom-43{padding-bottom:43px;}
|
||||
.layout-sm-padding-bottom-44{padding-bottom:44px;}
|
||||
.layout-sm-padding-bottom-45{padding-bottom:45px;}
|
||||
.layout-sm-padding-bottom-46{padding-bottom:46px;}
|
||||
.layout-sm-padding-bottom-47{padding-bottom:47px;}
|
||||
.layout-sm-padding-bottom-48{padding-bottom:48px;}
|
||||
.layout-sm-padding-bottom-49{padding-bottom:49px;}
|
||||
.layout-sm-padding-bottom-50{padding-bottom:50px;}
|
||||
.layout-sm-padding-bottom-51{padding-bottom:51px;}
|
||||
.layout-sm-padding-bottom-52{padding-bottom:52px;}
|
||||
.layout-sm-padding-bottom-53{padding-bottom:53px;}
|
||||
.layout-sm-padding-bottom-54{padding-bottom:54px;}
|
||||
.layout-sm-padding-bottom-55{padding-bottom:55px;}
|
||||
.layout-sm-padding-bottom-56{padding-bottom:56px;}
|
||||
.layout-sm-padding-bottom-57{padding-bottom:57px;}
|
||||
.layout-sm-padding-bottom-58{padding-bottom:58px;}
|
||||
.layout-sm-padding-bottom-59{padding-bottom:59px;}
|
||||
.layout-sm-padding-bottom-60{padding-bottom:60px;}
|
||||
|
||||
.layout-sm-padding-left-1{padding-left:1px;}
|
||||
.layout-sm-padding-left-2{padding-left:2px;}
|
||||
.layout-sm-padding-left-3{padding-left:3px;}
|
||||
.layout-sm-padding-left-4{padding-left:4px;}
|
||||
.layout-sm-padding-left-5{padding-left:5px;}
|
||||
.layout-sm-padding-left-6{padding-left:6px;}
|
||||
.layout-sm-padding-left-7{padding-left:7px;}
|
||||
.layout-sm-padding-left-8{padding-left:8px;}
|
||||
.layout-sm-padding-left-9{padding-left:9px;}
|
||||
.layout-sm-padding-left-10{padding-left:10px;}
|
||||
.layout-sm-padding-left-11{padding-left:11px;}
|
||||
.layout-sm-padding-left-12{padding-left:12px;}
|
||||
.layout-sm-padding-left-13{padding-left:13px;}
|
||||
.layout-sm-padding-left-14{padding-left:14px;}
|
||||
.layout-sm-padding-left-15{padding-left:15px;}
|
||||
.layout-sm-padding-left-16{padding-left:16px;}
|
||||
.layout-sm-padding-left-17{padding-left:17px;}
|
||||
.layout-sm-padding-left-18{padding-left:18px;}
|
||||
.layout-sm-padding-left-19{padding-left:19px;}
|
||||
.layout-sm-padding-left-20{padding-left:20px;}
|
||||
.layout-sm-padding-left-21{padding-left:21px;}
|
||||
.layout-sm-padding-left-22{padding-left:22px;}
|
||||
.layout-sm-padding-left-23{padding-left:23px;}
|
||||
.layout-sm-padding-left-24{padding-left:24px;}
|
||||
.layout-sm-padding-left-25{padding-left:25px;}
|
||||
.layout-sm-padding-left-26{padding-left:26px;}
|
||||
.layout-sm-padding-left-27{padding-left:27px;}
|
||||
.layout-sm-padding-left-28{padding-left:28px;}
|
||||
.layout-sm-padding-left-29{padding-left:29px;}
|
||||
.layout-sm-padding-left-30{padding-left:30px;}
|
||||
.layout-sm-padding-left-31{padding-left:31px;}
|
||||
.layout-sm-padding-left-32{padding-left:32px;}
|
||||
.layout-sm-padding-left-33{padding-left:33px;}
|
||||
.layout-sm-padding-left-34{padding-left:34px;}
|
||||
.layout-sm-padding-left-35{padding-left:35px;}
|
||||
.layout-sm-padding-left-36{padding-left:36px;}
|
||||
.layout-sm-padding-left-37{padding-left:37px;}
|
||||
.layout-sm-padding-left-38{padding-left:38px;}
|
||||
.layout-sm-padding-left-39{padding-left:39px;}
|
||||
.layout-sm-padding-left-40{padding-left:40px;}
|
||||
.layout-sm-padding-left-41{padding-left:41px;}
|
||||
.layout-sm-padding-left-42{padding-left:42px;}
|
||||
.layout-sm-padding-left-43{padding-left:43px;}
|
||||
.layout-sm-padding-left-44{padding-left:44px;}
|
||||
.layout-sm-padding-left-45{padding-left:45px;}
|
||||
.layout-sm-padding-left-46{padding-left:46px;}
|
||||
.layout-sm-padding-left-47{padding-left:47px;}
|
||||
.layout-sm-padding-left-48{padding-left:48px;}
|
||||
.layout-sm-padding-left-49{padding-left:49px;}
|
||||
.layout-sm-padding-left-50{padding-left:50px;}
|
||||
.layout-sm-padding-left-51{padding-left:51px;}
|
||||
.layout-sm-padding-left-52{padding-left:52px;}
|
||||
.layout-sm-padding-left-53{padding-left:53px;}
|
||||
.layout-sm-padding-left-54{padding-left:54px;}
|
||||
.layout-sm-padding-left-55{padding-left:55px;}
|
||||
.layout-sm-padding-left-56{padding-left:56px;}
|
||||
.layout-sm-padding-left-57{padding-left:57px;}
|
||||
.layout-sm-padding-left-58{padding-left:58px;}
|
||||
.layout-sm-padding-left-59{padding-left:59px;}
|
||||
.layout-sm-padding-left-60{padding-left:60px;}
|
||||
|
||||
|
||||
/**
|
||||
* 模块基础样式
|
||||
*/
|
||||
.module-content,
|
||||
.module-images-container,
|
||||
.module-slider-container,
|
||||
.module-video-container,
|
||||
.module-title-container,
|
||||
.module-goods-container,
|
||||
.module-list-content,
|
||||
.module-list-content .item .module-item,
|
||||
.module-list-content .item .module-item .module-title,
|
||||
.module-list-content .item .module-item .module-price {overflow: hidden;}
|
||||
|
||||
/**
|
||||
* 模块类型样式 - 标题
|
||||
*/
|
||||
.module-title-container .module-title-content{position:relative}
|
||||
.module-title-container .title-main{font-size:16px;font-weight:600;color:#666}
|
||||
.module-title-container .title-vice{color:#999;font-size:12px;margin-left:10px}
|
||||
.module-title-container .more-content{position:absolute;top:calc(50% - 8px);right:0;font-size:12px;}
|
||||
|
||||
/**
|
||||
* 模块内容基础样式
|
||||
*/
|
||||
.layout-content image,
|
||||
.layout-content video{display:block;max-width:100%;max-height:100%}
|
||||
|
||||
/**
|
||||
* 不展示滚动导航点
|
||||
*/
|
||||
.layout-content .slides-rolling-not-dot{margin-bottom:0px}
|
||||
|
||||
/**
|
||||
* 媒体文件固定大小
|
||||
*/
|
||||
.module-fixed-doc{display:block;overflow:hidden;}
|
||||
.module-fixed-doc-ent-width{width:100% !important;}
|
||||
.module-fixed-doc-ent-height{height:100% !important;}
|
||||
.module-fixed-doc-ent-auto{margin:0 auto !important;}
|
||||
.module-fixed-doc-ent-cover{object-fit:cover !important;}
|
||||
|
||||
/**
|
||||
* 滚动列表
|
||||
*/
|
||||
.module-list-rolling{width:100%;white-space:nowrap;box-sizing:border-box}
|
||||
.module-list-rolling .item{display:inline-block;position:relative}
|
@ -1,125 +0,0 @@
|
||||
<block a:if="{{(data || null) != null && data.length > 0}}">
|
||||
<block a:for="{{data}}" a:key="key" a:for-item="v">
|
||||
<view a:if="{{(v.value || null) != null && (v.children || null) != null && v.children.length > 0 && (v.value_arr || null) != null && v.value_arr.length > 0 && v.children.length == v.value_arr.length && (v.status || 0) == 1}}" class="layout-view">
|
||||
<view class="layout-content-children {{((v.config || null) != null && (v.config.frontend_config || null) != null && (v.config.frontend_config.ent || null) != null) ? v.config.frontend_config.ent : ''}}" style="{{((v.config || null) != null && (v.config.frontend_config || null) != null && (v.config.frontend_config.style || null) != null) ? v.config.frontend_config.style : ''}}">
|
||||
<block a:for="{{v.children}}" a:key="keys" a:for-item="vs">
|
||||
<view class="layout-content-container {{((vs.config || null) != null && (vs.config.frontend_config || null) != null && (vs.config.frontend_config.ent || null) != null) ? vs.config.frontend_config.ent : ''}}" style="{{((vs.config || null) != null && (vs.config.frontend_config || null) != null && (vs.config.frontend_config.style || null) != null) ? vs.config.frontend_config.style : ''}}">
|
||||
<block a:if="{{(vs.children || null) != null && vs.children.length > 0}}">
|
||||
<view a:for="{{vs.children}}" a:key="keyss" a:for-item="vss" class="layout-content">
|
||||
<view a:if="{{(vss.config || null) != null}}" class="module-content">
|
||||
<view class="module-{{vss.value}}-container" style="{{((vss.config.frontend_config || null) != null && (vss.config.frontend_config.style || null) != null) ? vss.config.frontend_config.style : ''}}">
|
||||
<!-- 单图 -->
|
||||
<block a:if="{{vss.value == 'images'}}">
|
||||
<view class="module-images-content {{vss.config.frontend_config.media_fixed.media_container_ent}}" style="{{vss.config.frontend_config.media_fixed.media_container_style}}">
|
||||
<image onTap="layout_url_event" data-value="{{vss.config.url || ''}}" src="{{vss.config.images}}" mode="widthFix" class="{{vss.config.frontend_config.media_fixed.media_ent}}"></image>
|
||||
</view>
|
||||
</block>
|
||||
|
||||
<!-- 多图 -->
|
||||
<block a:elif="{{vss.value == 'many-images'}}">
|
||||
<block a:if="{{vss.config.view_list_show_style == 'rolling'}}">
|
||||
<!-- 滚动 -->
|
||||
<view class="module-list-rolling">
|
||||
<scroll-view scroll-x>
|
||||
<view a:for="{{vss.config.data_list}}" a:key="ik" class="item">
|
||||
<view class="module-item {{vss.config.frontend_config.media_fixed.media_container_ent}}" style="width:{{((vss.config.view_list_show_style_value_arr || null) == null || (vss.config.view_list_show_style_value_arr.item_width || null) == null) ? 200 : vss.config.view_list_show_style_value_arr.item_width}}px;margin-left:{{((vss.config.view_list_show_style_value_arr || null) == null || (vss.config.view_list_show_style_value_arr.item_margin || null) == null || index == 0) ? 0 : vss.config.view_list_show_style_value_arr.item_margin}}px;{{vss.config.frontend_config.item_style}}{{vss.config.frontend_config.media_fixed.media_container_style}}" onTap="layout_url_event" data-value="{{item.url || ''}}">
|
||||
<image src="{{item.images}}" mode="widthFix" class="{{vss.config.frontend_config.media_fixed.media_ent}}"></image>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</block>
|
||||
<block a:elif="{{vss.config.view_list_show_style == 'list'}}">
|
||||
<!-- 列表 -->
|
||||
<view class="module-list-content {{vss.config.frontend_config.list_ent}}">
|
||||
<view a:for="{{vss.config.data_list}}" a:key="ik" class="item">
|
||||
<view class="module-item" style="{{vss.config.frontend_config.item_style}}">
|
||||
<view class="{{vss.config.frontend_config.media_fixed.media_container_ent}}" style="{{vss.config.frontend_config.media_fixed.media_container_style}}" onTap="layout_url_event" data-value="{{item.url || ''}}">
|
||||
<image src="{{item.images}}" mode="widthFix" class="{{vss.config.frontend_config.media_fixed.media_ent}}"></image>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
<block a:else>
|
||||
<!-- 默认轮播 -->
|
||||
<swiper
|
||||
indicator-dots="{{vss.config.data_list.length > 0}}"
|
||||
indicator-color="{{indicator_color}}"
|
||||
indicator-active-color="{{indicator_active_color}}"
|
||||
autoplay="{{vss.config.data_list.length > 0}}"
|
||||
circular="{{circular}}" style="{{vss.config.frontend_config.media_fixed.media_container_style}}">
|
||||
<block a:for="{{vss.config.data_list}}" a:key="ik">
|
||||
<swiper-item class="{{vss.config.frontend_config.media_fixed.media_container_ent}}">
|
||||
<image src="{{item.images}}" mode="aspectFill" class="{{vss.config.frontend_config.media_fixed.media_ent}}" onTap="layout_url_event" data-value="{{item.url || ''}}"></image>
|
||||
</swiper-item>
|
||||
</block>
|
||||
</swiper>
|
||||
</block>
|
||||
</block>
|
||||
|
||||
<!-- 视频 -->
|
||||
<block a:elif="{{vss.value == 'video'}}">
|
||||
<view class="module-video-content {{vss.config.frontend_config.media_fixed.media_container_ent}}" style="{{vss.config.frontend_config.media_fixed.media_container_style}}">
|
||||
<video src="{{vss.config.video}}" autoplay="{{true}}" show-center-play-btn="{{true}}" controls="{{false}}" show-play-btn="{{false}}" enable-progress-gesture="{{false}}" show-fullscreen-btn="{{false}}" controls poster="{{(vss.config.content_images || null) != null ? vss.config.content_images : ''}}" class="{{vss.config.frontend_config.media_fixed.media_ent}}"></video>
|
||||
</view>
|
||||
</block>
|
||||
|
||||
<!-- 商品 -->
|
||||
<block a:elif="{{vss.value == 'goods'}}">
|
||||
<block a:if="{{(vss.config.data_list || null) != null && vss.config.data_list.length > 0}}">
|
||||
<block a:if="{{vss.config.view_list_show_style == 'rolling'}}">
|
||||
<!-- 滚动 -->
|
||||
<view class="module-goods-content module-list-rolling">
|
||||
<scroll-view scroll-x>
|
||||
<view a:for="{{vss.config.data_list}}" a:key="ik" class="item">
|
||||
<view class="module-item {{vss.config.frontend_config.media_fixed.media_container_ent}}" style="width:{{((vss.config.view_list_show_style_value_arr || null) == null || (vss.config.view_list_show_style_value_arr.item_width || null) == null) ? 200 : vss.config.view_list_show_style_value_arr.item_width}}px;margin-left:{{((vss.config.view_list_show_style_value_arr || null) == null || (vss.config.view_list_show_style_value_arr.item_margin || null) == null || index == 0) ? 0 : vss.config.view_list_show_style_value_arr.item_margin}}px;{{vss.config.frontend_config.item_style}}{{vss.config.frontend_config.media_fixed.media_container_style}}" onTap="layout_url_event" data-value="{{item.goods_url || ''}}">
|
||||
<image src="{{item.images}}" mode="widthFix" class="{{vss.config.frontend_config.media_fixed.media_ent}}"></image>
|
||||
<view class="item-bottom">
|
||||
<view class="module-title">{{item.title}}</view>
|
||||
<view class="module-price">{{currency_symbol}}{{item.price}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</block>
|
||||
<block a:else>
|
||||
<!-- 默认列表 -->
|
||||
<view class="module-goods-content module-list-content {{vss.config.frontend_config.list_ent}}">
|
||||
<view a:for="{{vss.config.data_list}}" a:key="ik" class="item">
|
||||
<view class="module-item" style="{{vss.config.frontend_config.item_style}}">
|
||||
<view class="{{vss.config.frontend_config.media_fixed.media_container_ent}}" style="{{vss.config.frontend_config.media_fixed.media_container_style}}" onTap="layout_url_event" data-value="{{item.goods_url || ''}}">
|
||||
<image src="{{item.images}}" mode="widthFix" class="{{vss.config.frontend_config.media_fixed.media_ent}}"></image>
|
||||
<view class="item-bottom">
|
||||
<view class="module-title">{{item.title}}</view>
|
||||
<view class="module-price">{{currency_symbol}}{{item.price}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</block>
|
||||
</block>
|
||||
|
||||
<!-- 标题 -->
|
||||
<block a:elif="{{vss.value == 'title'}}">
|
||||
<view class="module-title-content">
|
||||
<text class="title-main" style="{{vss.config.frontend_config.style_title_main}}">{{vss.config.title}}</text>
|
||||
<text a:if="{{(vss.config.title_vice || null) != null}}" class="title-vice" style="{{vss.config.frontend_config.style_title_vice}}">{{vss.config.title_vice}}</text>
|
||||
<view a:if="{{(vss.config.title_more || null) != null}}" class="more-content">
|
||||
<view style="{{vss.config.frontend_config.style_title_more}}" onTap="layout_url_event" data-value="{{vss.config.title_more_url || ''}}">{{vss.config.title_more}} ></view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</block>
|
@ -1,37 +0,0 @@
|
||||
const app = getApp();
|
||||
Component({
|
||||
data: {
|
||||
// 基础配置
|
||||
currency_symbol: app.data.currency_symbol,
|
||||
|
||||
// 轮播基础配置
|
||||
indicator_color: 'rgba(0, 0, 0, .3)',
|
||||
indicator_active_color: '#e31c55',
|
||||
circular: true,
|
||||
},
|
||||
props: {
|
||||
data: []
|
||||
},
|
||||
// 页面被展示
|
||||
didMount() {
|
||||
// 配置初始化
|
||||
this.init_config(true);
|
||||
},
|
||||
methods: {
|
||||
// 初始化配置
|
||||
init_config(status) {
|
||||
if((status || false) == true) {
|
||||
this.setData({
|
||||
currency_symbol: app.get_config('currency_symbol') || app.data.currency_symbol
|
||||
});
|
||||
} else {
|
||||
app.is_config(this, 'init_config');
|
||||
}
|
||||
},
|
||||
|
||||
// 链接地址事件
|
||||
layout_url_event(e) {
|
||||
app.url_event(e);
|
||||
},
|
||||
},
|
||||
});
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
"component": true
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
.am-popup-content {
|
||||
position: fixed;
|
||||
background:#fff;
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
.am-popup-mask {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(0, 0, 0, 0.75);
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.am-popup-left {
|
||||
transform: translateX(-100%);
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.am-popup-right {
|
||||
transform: translateX(100%);
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.am-popup-top {
|
||||
top: 0;
|
||||
width: 100vw;
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
|
||||
.am-popup-bottom {
|
||||
bottom: 0;
|
||||
width: 100vw;
|
||||
transform: translateY(100%);
|
||||
}
|
||||
|
||||
.am-popup-show .am-popup-content {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.am-popup-show .am-popup-mask {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.am-popup.animation .am-popup-content {
|
||||
transition: all 0.15s linear;
|
||||
}
|
||||
|
||||
.am-popup.animation .am-popup-mask {
|
||||
transition: all 0.15s linear;
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
<view class="am-popup {{propClassname || ''}} {{(propShow || false) ? 'am-popup-show' : ''}} {{ (propAnimation || true) ? 'animation': '' }}" disable-scroll="{{propDisablescroll}}">
|
||||
<view class="am-popup-mask" a:if="{{propMask || true}}" onTap="onMaskTap"></view>
|
||||
<view class="am-popup-content am-popup-{{propPosition || 'bottom'}}">
|
||||
<slot></slot>
|
||||
</view>
|
||||
</view>
|
@ -1,33 +0,0 @@
|
||||
// components/popup.js
|
||||
Component({
|
||||
/**
|
||||
* 组件的属性列表
|
||||
*/
|
||||
props: {
|
||||
propClassname: String,
|
||||
propShow: Boolean,
|
||||
propPosition: String,
|
||||
propMask: Boolean,
|
||||
propAnimation: Boolean,
|
||||
propDisablescroll: Boolean
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的方法列表
|
||||
*/
|
||||
methods: {
|
||||
onMaskTap: function onMaskTap() {
|
||||
var onClose = this.props.onClose;
|
||||
if (onClose) {
|
||||
onClose();
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
@ -1,101 +0,0 @@
|
||||
/**
|
||||
* 按钮
|
||||
*/
|
||||
.quick-nav-movable-container {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 150rpx;
|
||||
left: 0;
|
||||
background:transparent;
|
||||
pointer-events: none;
|
||||
z-index: 2;
|
||||
}
|
||||
.quick-nav-event-submit {
|
||||
pointer-events: auto;
|
||||
position: fixed;
|
||||
bottom: 150rpx;
|
||||
width: 100rpx;
|
||||
height: 100rpx;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
||||
background-color: rgb(210 54 76 / 80%);
|
||||
}
|
||||
.quick-nav-event-submit image {
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
margin: 25rpx auto 25rpx auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* 弹窗
|
||||
*/
|
||||
.quick-nav-popup-container {
|
||||
padding: 20rpx 10rpx 0 10rpx;
|
||||
background: #fff;
|
||||
}
|
||||
.quick-nav-popup-container .close {
|
||||
overflow: hidden;
|
||||
}
|
||||
.quick-nav-popup-container .close .icon-right {
|
||||
float: right;
|
||||
}
|
||||
.quick-nav-popup-content {
|
||||
max-height: 80vh;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
|
||||
/**
|
||||
* 内容
|
||||
*/
|
||||
.quick-nav-data-list {
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
}
|
||||
.quick-nav-data-list .items {
|
||||
width: calc(25% - 60rpx);
|
||||
float: left;
|
||||
padding: 30rpx;
|
||||
}
|
||||
.quick-nav-data-list .items-content {
|
||||
border-radius: 50%;
|
||||
padding: 20rpx;
|
||||
text-align: center;
|
||||
width: 70rpx;
|
||||
height: 70rpx;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.quick-nav-data-list .items image {
|
||||
width: 60rpx !important;
|
||||
height: 60rpx !important;
|
||||
margin-top: 5rpx;
|
||||
}
|
||||
.quick-nav-data-list .items .title {
|
||||
margin-top: 10rpx;
|
||||
font-size: 28rpx !important;
|
||||
text-align:center;
|
||||
-o-text-overflow: ellipsis;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/*
|
||||
* 没有数据
|
||||
*/
|
||||
.quick-nav-popup-container .no-data-box {
|
||||
padding: 80rpx 0;
|
||||
text-align: center;
|
||||
}
|
||||
.quick-nav-popup-container .no-data-box image {
|
||||
width: 160rpx;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
.quick-nav-popup-container .no-data-box .no-data-tips {
|
||||
font-size: 28rpx;
|
||||
color: #a6a6a6;
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
<!-- 开启事件 -->
|
||||
<movable-area a:if="{{quick_status == 1}}" class="quick-nav-movable-container">
|
||||
<movable-view direction="all" x="{{x}}" y="{{y}}" animation="{{false}}" class="quick-nav-event-submit" onTap="quick_open_event">
|
||||
<image src="/images/quick-submit-icon.png" mode="widthFix"></image>
|
||||
</movable-view>
|
||||
</movable-area>
|
||||
|
||||
<!-- 弹窗 -->
|
||||
<component-popup prop-show="{{popup_status}}" prop-position="bottom" onClose="quick_close_event">
|
||||
<view class="quick-nav-popup-container">
|
||||
<view class="close oh">
|
||||
<view class="icon-right" catchTap="quick_close_event">
|
||||
<icon type="clear" size="20" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="quick-nav-popup-content">
|
||||
<view a:if="{{data_list.length > 0}}" class="quick-nav-data-list">
|
||||
<view class="items" a:for="{{data_list}}">
|
||||
<view class="items-content" data-value="{{item.event_value}}" data-type="{{item.event_type}}" onTap="navigation_event" style="background-color:{{item.bg_color}}">
|
||||
<image src="{{item.images_url}}" mode="aspectFit" />
|
||||
</view>
|
||||
<view class="title">{{item.name}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view a:else>
|
||||
<import src="/pages/common/nodata.axml" />
|
||||
<template is="nodata" data="{{status: 0}}"></template>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</component-popup>
|
@ -1,53 +0,0 @@
|
||||
const app = getApp();
|
||||
Component({
|
||||
data: {
|
||||
popup_status: false,
|
||||
quick_status: 0,
|
||||
data_list: [],
|
||||
system: null,
|
||||
x: 0,
|
||||
y: 0,
|
||||
},
|
||||
|
||||
// 页面被展示
|
||||
didMount() {
|
||||
// 配置初始化
|
||||
this.init_config();
|
||||
|
||||
// 数据设置
|
||||
var system = app.get_system_info();
|
||||
this.setData({
|
||||
system: system,
|
||||
x: 5,
|
||||
y: (system.windowHeight || 450)-160,
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
// 初始化配置
|
||||
init_config(status) {
|
||||
if((status || false) == true) {
|
||||
this.setData({
|
||||
data_list: app.get_config('quick_nav') || [],
|
||||
quick_status: app.get_config('config.home_navigation_main_quick_status') || 0
|
||||
});
|
||||
} else {
|
||||
app.is_config(this, 'init_config');
|
||||
}
|
||||
},
|
||||
|
||||
// 弹层开启
|
||||
quick_open_event(e) {
|
||||
this.setData({popup_status: true, data_list: app.get_config('quick_nav') || []});
|
||||
},
|
||||
|
||||
// 弹层关闭
|
||||
quick_close_event(e) {
|
||||
this.setData({ popup_status: false });
|
||||
},
|
||||
|
||||
// 操作事件
|
||||
navigation_event(e) {
|
||||
app.operation_event(e);
|
||||
},
|
||||
},
|
||||
});
|
@ -1,6 +0,0 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"component-popup": "/components/popup/popup"
|
||||
}
|
||||
}
|
@ -1,10 +0,0 @@
|
||||
.banner {
|
||||
background: #fff;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.banner image {
|
||||
min-width: 100%;
|
||||
}
|
||||
.banner, .banner image {
|
||||
height: 320rpx !important;
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
<swiper
|
||||
indicator-dots="{{data.length > 1}}"
|
||||
indicator-color="{{indicator_color}}"
|
||||
indicator-active-color="{{indicator_active_color}}"
|
||||
autoplay="{{data.length > 1}}"
|
||||
circular="{{circular}}"
|
||||
class="banner bg-white spacing-mb"
|
||||
a:if="{{data.length > 0}}">
|
||||
<block a:for="{{data}}">
|
||||
<swiper-item>
|
||||
<image class="wh-auto" src="{{item.images_url}}" mode="widthFix" data-value="{{item.event_value}}" data-type="{{item.event_type}}" onTap="banner_event" />
|
||||
</swiper-item>
|
||||
</block>
|
||||
</swiper>
|
@ -1,21 +0,0 @@
|
||||
const app = getApp();
|
||||
Component({
|
||||
mixins: [],
|
||||
data: {
|
||||
indicator_color: 'rgba(0, 0, 0, .3)',
|
||||
indicator_active_color: '#e31c55',
|
||||
circular: true,
|
||||
},
|
||||
props: {
|
||||
data: []
|
||||
},
|
||||
didMount() {},
|
||||
didUpdate() {},
|
||||
didUnmount() {},
|
||||
methods: {
|
||||
// 操作事件
|
||||
banner_event(e) {
|
||||
app.operation_event(e);
|
||||
},
|
||||
}
|
||||
});
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
"component": true
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
{
|
||||
"name":"默认主题",
|
||||
"ver":"2.2.0",
|
||||
"author":"Devil",
|
||||
"home":"https://shopxo.net/"
|
||||
}
|
Before Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 378 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 822 B |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.4 KiB |