Authored by 王水玲

微信群控软件

... ... @@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
<script>
(function(d,c){var e=d.documentElement,a="orientationchange" in window?"orientationchange":"resize",b=function(){var f=e.clientWidth;if(!f){return}if(f>=750){e.style.fontSize="40px"}else{e.style.fontSize=40*(f/750)+"px"}};if(!d.addEventListener){return}b();c.addEventListener(a,b,false);d.addEventListener("DOMContentLoaded",b,false)})(document,window);
(function(d,c){var e=d.documentElement,a="orientationchange" in window?"orientationchange":"resize",b=function(){var f=e.clientWidth;if(!f){return}if(f>=397){e.style.fontSize="40px"}else{e.style.fontSize=40*(f/397)+"px"}};if(!d.addEventListener){return}b();c.addEventListener(a,b,false);d.addEventListener("DOMContentLoaded",b,false)})(document,window);
</script>
</head>
<body>
... ...
... ... @@ -65,6 +65,7 @@
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.1.0",
"iview-loader": "^1.0.0",
"postcss-pxtorem": "^4.0.1",
"stylelint": "^8.0.0",
"stylelint-config-yoho": "^1.4.0",
"stylelint-formatter-table": "^1.0.3",
... ...
const postImport = require('postcss-import');
const autoprefixer = require('autoprefixer');
const postPxtorem = require('postcss-pxtorem');
module.exports = {
plugins: [
postImport({}),
autoprefixer()
postPxtorem({
rootValue: 40,
unitPrecision: 5, // 保留5位小数字
minPixelValue: 2, // 小于 2 时,不转换
selectorBlackList: [], // 选择器黑名单,可以使用正则
propWhiteList: [] // 属性名称为空,表示替换所有属性的值
}),
autoprefixer({
remove: false
})
]
};
... ...
<template>
<ul class="base-info-list">
<li v-for="(item,index) in list" :key="index"><span class="label">{{item.label}}:</span>{{item.value}}</li>
</ul>
</template>
<script>
export default {
name: 'baseInfoList',
props: {
list: {
type: Array,
default: []
}
}
}
</script>
<style lang="scss" scoped>
.base-info-list {
margin: 10px 0 25px;
li {
font-family: PingFang-SC-Regular;
font-size: 18px;
color: #000;
text-align: left;
margin-top: 10px;
}
.label {
color: #979797;
}
}
</style>
... ...
<template>
<div class="coupon-item coupon-activity">
<div class="left">
<p class="price">100</p>
<p class="condition">满499可用</p>
</div>
<div class="right">
<p class="name"><span>[店铺券]</span> Origins店铺使用</p>
<p class="time">2018.1.12-2018.5.20</p>
<p class="coupon-info">
<span>券号:</span>
<span>券ID:</span>
</p>
</div>
</div>
</template>
<script>
export default {
name: 'couponItem',
data() {
return {
};
},
mounted() {
},
methods: {
},
components: {
}
}
</script>
<style lang="scss" scoped>
.coupon-item {
margin: 10px auto 0;
width: 355px;
height: 100px;
p {
margin: 0;
}
&:first-child {
margin: 0 auto;
}
.left {
width: 105px;
float: left;
text-align: center;
margin-top: 15px;
}
.right {
width: 240px;
float: left;
position: relative;
}
.price {
font-family: PingFang-SC-Semibold;
font-size: 36px;
}
.condition {
font-family: PingFang-SC-Regular;
font-size: 12px;
}
.name {
font-family: PingFang-SC-Regular;
font-size: 12px;
color: #444;
margin-top: 10px;
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.time,
.coupon-info {
font-family: PingFang-SC-Regular;
font-size: 11px;
color: #B0B0B0;
}
.time {
position: absolute;
top: 45px;
}
.coupon-info {
position: absolute;
top: 74px;
}
}
.coupon-shop {
.price,
.condition {
color: #FFA72E;
}
.name {
span {
color: #FFA72E;
}
}
}
.coupon-activity {
.price,
.condition {
color: #FC5960;
}
.name {
span {
color: #FC5960;
}
}
}
</style>
... ...
... ... @@ -3,11 +3,17 @@
<NavTitle :more="more">
<template slot="title">最近10张优惠券</template>
</NavTitle>
<div class="coupon-status-title">未使用优惠券</div>
<CouponItem></CouponItem>
<div class="coupon-status-title">已使用优惠券</div>
<CouponItem class="gray"></CouponItem>
</div>
</template>
<script>
import NavTitle from './nav-title';
import CouponItem from './coupon-item';
import homeModel from '../../../models/home';
export default {
... ... @@ -22,74 +28,52 @@ export default {
methods: {
},
components: {
NavTitle
NavTitle,
CouponItem
}
}
</script>
<style lang="scss" scoped>
.exchange-container {
.original-order-code {
float: left;
}
.order-code {
float: right;
}
.coupon-container {
background: #fff;
height: auto;
overflow: hidden;
.lg {
float: left;
.gray {
filter: grayscale(100%);
filter: gray;
}
}
.goods-info {
height: 66px;
display: flex;
img {
width: 56px;
height: 66px;
}
.right {
flex: 1;
margin-left: 10px;
}
.goods-name {
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.number {
span {
width: 50%;
text-align: left;
float: left;
}
}
.coupon-status-title {
font-family: PingFang-SC-Regular;
font-size: 12px;
color: #979797;
position: relative;
width: 75px;
margin: 20px auto 15px;
.remark {
width: 100%;
}
&:before {
content: "";
height: 1px;
width: 80px;
background: #E0E0E0;
display: block;
position: absolute;
left: -90px;
top: 10px;
}
.user-info {
height: auto;
overflow: hidden;
span {
width: 50%;
float: left;
line-height: 30px;
}
.address {
width: 100%;
}
&:after {
content: "";
height: 1px;
width: 80px;
background: #E0E0E0;
display: block;
position: absolute;
right: -90px;
top: 10px;
}
}
</style>
... ...
... ... @@ -4,10 +4,10 @@
<NavTitle :more="more">
<template slot="title">{{getTitleCont}}</template>
</NavTitle>
<Modal>
<Modal class="list-cont">
<template slot="label">
<div class="original-order-code" v-if="curTabs === '换货'">原订单号:<span class="red">2222</span></div>
<div class="order-code" :class="{lg: curTabs === '退货'}">订单号:<span class="red">11111</span></div>
<div class="original-order-code" v-if="curTabs === '换货'">原订单号:2222</div>
<div class="order-code" :class="{lg: curTabs === '退货'}">订单号:11111</div>
</template>
<template slot="cont">
<div class="order-cont" >
... ... @@ -23,14 +23,14 @@
</div>
</div>
<div class="user-info">
<span>收货人:</span>
<span>手机号:</span>
<span v-if="curTabs === '退货'">退款金额:</span>
<span v-if="curTabs === '退货'">退款方式:</span>
<span>申请类型:</span>
<span>申请人:</span>
<span>当前状态:</span>
<span class="address">地址:</span>
<div class="item"><span class="item-label">收货人:</span></div>
<div class="item"><span class="item-label">手机号:</span></div>
<div class="item" v-if="curTabs === '退货'"><span class="item-label">退款金额:</span></div>
<div class="item" v-if="curTabs === '退货'"><span class="item-label">退款方式:</span></div>
<div class="item"><span class="item-label">申请类型:</span></div>
<div class="item"><span class="item-label">申请人:</span></div>
<div class="item"><span class="item-label">当前状态:</span></div>
<div class="item address"><span class="item-label">地址:</span></div>
</div>
</div>
</template>
... ... @@ -87,13 +87,18 @@ export default {
float: left;
}
.list-cont {
padding-bottom: 20px;
background: #fff;
}
.goods-info {
height: 66px;
display: flex;
padding: 15px 20px;
img {
width: 56px;
height: 66px;
width: 77px;
height: 104px;
}
.right {
... ... @@ -108,29 +113,55 @@ export default {
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
font-family: PingFang-SC-Medium;
font-size: 18px;
}
.number {
margin-top: 9px;
height: auto;
overflow: hidden;
span {
width: 50%;
text-align: left;
float: left;
font-family: PingFang-SC-Regular;
font-size: 14px;
color: #979797;
line-height: 20px;
}
}
.remark {
width: 100%;
font-family: PingFang-SC-Regular;
font-size: 14px;
color: #979797;
margin-top: 5px;
line-height: 20px;
}
}
.user-info {
height: auto;
overflow: hidden;
font-family: PingFang-SC-Regular;
font-size: 18px;
width: 100%;
border-top: 1px solid #EAEBEB;
padding: 0 20px;
span {
.item {
width: 50%;
float: left;
line-height: 30px;
line-height: 30px;
line-height: 25px;
margin-top: 15px;
}
.item-label {
color: #979797;
}
.address {
... ...
... ... @@ -7,7 +7,7 @@
<script>
export default {
name: 'modal-have-title',
name: 'modalHaveTitle',
props: {
title: {
type: String,
... ... @@ -19,17 +19,17 @@ export default {
<style lang="scss" scoped>
.modal-cont {
width: 90%;
margin: 10px auto 0;
background: #eee;
border-radius: 5px;
padding: 10px;
width: 100%;
padding: 20px;
box-sizing: border-box;
background: #fff;
h5 {
text-align: center;
padding: 0;
margin: 0;
font-family: PingFang-SC-Medium;
font-size: 20px;
}
}
</style>
... ...
<template>
<div class="modal">
<div class="label">
<div class="modal-label">
<slot name="label"></slot>
</div>
<div class="cont">
... ... @@ -17,20 +17,22 @@ export default {
<style lang="scss" scoped>
.modal {
width: 90%;
margin: 20px auto 0;
width: 100%;
margin: 0 auto;
.label {
background: #e0e0e0;
.modal-label {
background: #fff;
border-radius: 5px 5px 0 0;
height: 30px;
line-height: 30px;
height: 52px;
line-height: 52px;
padding: 0 20px;
border-bottom: 1px solid #EAEBEB;
font-family: PingFang-SC-Regular;
font-size: 16px;
}
.cont {
background: #eee;
padding: 10px 20px;
background: #fff;
}
}
</style>
... ...
... ... @@ -4,7 +4,7 @@
<script>
export default {
name: 'nav-button',
name: 'navButton',
props: {
text: {
type: String,
... ... @@ -22,16 +22,18 @@ export default {
<style lang="scss" scoped>
.nav-button {
width: 100%;
background: #000;
background: #444;
color: #fff;
text-align: center;
border: none;
outline: none;
margin: 10px auto 0;
margin: 15px auto 0;
display: block;
height: 24px;
line-height: 24px;
border-radius: 5px;
height: 44px;
line-height: 44px;
border-radius: 2px;
font-family: PingFang-SC-Medium;
font-size: 18px;
}
</style>
... ...
... ... @@ -3,13 +3,13 @@
<span class="title">
<slot name="title"></slot>
</span>
<a :href="more" class="more" v-if="more != ''">MORE></a>
<a :href="more" class="more" v-if="more != ''">&nbsp;</a>
</div>
</template>
<script>
export default {
name: 'nav-title',
name: 'navTitle',
props: {
more: {
type: String,
... ... @@ -21,20 +21,28 @@ export default {
<style lang="scss" scoped>
.title-container {
width: 90%;
width: 100%;
text-align: center;
position: relative;
margin: 15px auto 0;
height: 68px;
line-height: 68px;
border-bottom: 1px solid #EAEBEB;
background: #fff;
.title {
border: 1px solid #ddd;
padding: 3px 20px;
font-family: PingFang-SC-Medium;
font-size: 20px;
}
.more {
position: absolute;
right: 0;
right: 23px;
top: 24px;
background: url(../../../static/images/arrow-right.png) no-repeat;
background-size: contain;
width: 12px;
height: 20px;
}
}
</style>
... ...
... ... @@ -3,10 +3,10 @@
<NavTitle :more="more">
<template slot="title">最近10笔订单</template>
</NavTitle>
<Modal>
<Modal class="order-list">
<template slot="label">
<div class="time">2018-10-31 16:51:22</div>
<div class="order-code">订单号:<span class="red">11111</span></div>
<div class="order-code">订单号:11111</div>
</template>
<template slot="cont">
<div class="order-cont" >
... ... @@ -21,11 +21,9 @@
</div>
</div>
<div class="order-info">
<div class="order-price">订单金额:</div>
<div class="order-dec">
<div>订单状态:</div>
<div>订单来源:</div>
</div>
<div class="item"><span class="item-label">订单金额:</span></div>
<div class="item"><span class="item-label">订单状态:</span></div>
<div class="item"><span class="item-label">订单来源:</span></div>
</div>
</div>
</template>
... ... @@ -39,7 +37,7 @@ import NavTitle from './nav-title';
import homeModel from '../../../models/home';
export default {
name: 'order-list',
name: 'orderList',
data() {
return {
more: 'http://www.baidu.com'
... ... @@ -66,18 +64,34 @@ export default {
float: right;
}
.order-list {
margin-bottom: 15px;
&:last-child {
margin-bottom: 0;
}
}
.goods-info {
height: 66px;
height: 103px;
display: flex;
padding: 15px 20px;
border-top: 1px solid #EAEBEB;
&:first-child {
border-top: none;
}
img {
width: 56px;
height: 66px;
width: 78px;
height: 103px;
}
.right {
flex: 1;
height: 103px;
margin-left: 10px;
position: relative;
}
.goods-name {
... ... @@ -87,18 +101,53 @@ export default {
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
font-family: PingFang-SC-Medium;
font-size: 18px;
line-height: 25px;
}
.number {
font-family: PingFang-SC-Regular;
font-size: 18px;
display: flex;
justify-content: space-between;
position: absolute;
bottom: 0;
right: 0;
left: 0;
.goods-price {
float: left;
}
.goods-num {
float: right;
}
}
}
.order-info {
border-top: 1px solid #ddd;
border-top: 1px solid #EAEBEB;
margin-top: 10px;
padding-top: 10px;
}
padding: 10px 20px;
font-family: PingFang-SC-Regular;
font-size: 18px;
height: auto;
overflow: hidden;
.order-dec {
display: flex;
justify-content: space-between;
.item {
font-family: PingFang-SC-Regular;
font-size: 18px;
width: 50%;
float: left;
line-height: 25px;
margin: 5px 0;
.item-label {
color: #979797;
}
}
}
}
</style>
... ...
... ... @@ -40,35 +40,37 @@ export default {
<style lang="scss" scoped>
.tabs {
display: flex;
margin: 20px auto 0;
width: 80%;
padding: 20px;
background: #fff;
.tabs-item {
border-top: 1px solid #3a3a3a;
border-bottom: 1px solid #3a3a3a;
height: 26px;
line-height: 26px;
border-top: 1px solid #444;
border-bottom: 1px solid #444;
height: 35px;
line-height: 35px;
text-align: center;
flex: 1;
border-right: 1px solid #3a3a3a;
border-right: 1px solid #444;
font-family: PingFang-SC-Regular;
font-size: 16px;
&:last-child {
border-right: none;
}
&.actived {
background: #3a3a3a;
background: #444;
color: #fff;
}
&.start {
border-left: 1px solid #3a3a3a;
border-radius: 5px 0 0 5px;
border-left: 1px solid #444;
border-radius: 2px 0 0 2px;
}
&.end {
border-right: 1px solid #3a3a3a;
border-radius: 0 5px 5px 0;
border-right: 1px solid #444;
border-radius: 0 2px 2px 0;
}
}
}
... ...
<template>
<div class="user-info-container">
<ModalHaveTitle class="notes" :title="'用户备忘录'">
<textarea name="" id="" rows="5"></textarea>
<textarea name="" id="" placeholder="备忘录(非必填)"></textarea>
<NavButton :text="'更新备忘录'" @click-btn="updateNote"></NavButton>
</ModalHaveTitle>
<ModalHaveTitle class="bind-user" :title="'绑定用户'">
<div>用户微信号:</div>
<div class="label">用户微信号:</div>
<div class="search">
<input type="text" value="" placeholder="用户UID查询(请输入有货手机号/订单编号)">
<span class="search-btn"></span>
</div>
<div>用户UID:</div>
<textarea name="" id="" rows="6" placeholder="备注(非必填)"></textarea>
<input type="text" value="" placeholder="用户UID" class="input-uid">
<textarea name="" id="" placeholder="备注(非必填)"></textarea>
<NavButton :text="'绑定用户'" @click-btn="bindUser"></NavButton>
</ModalHaveTitle>
<ModalHaveTitle class="user-base-info" :title="'用户基本信息'">
<ul class="info-list">
<li><span class="lable">用户UID:</span></li>
<li><span class="lable">昵称:</span></li>
<li><span class="lable">手机号:</span></li>
<li><span class="lable">注册:</span></li>
<li><span class="lable">生日:</span></li>
<li><span class="lable">等级:</span></li>
<li><span class="lable">365天累计消费:</span></li>
</ul>
<BaseInfoList :list="userInfo"></BaseInfoList>
</ModalHaveTitle>
</div>
</template>
... ... @@ -35,11 +27,21 @@
import homeModel from '../../../models/home';
import NavButton from './nav-button';
import ModalHaveTitle from './modal-have-title';
import BaseInfoList from './base-info-list';
export default {
name: 'user-info',
name: 'userInfo',
data() {
return {
userInfo: [
{label: '用户UID', value: ''},
{label: '昵称', value: ''},
{label: '手机号', value: ''},
{label: '注册', value: ''},
{label: '生日', value: ''},
{label: '等级', value: ''},
{label: '365天累计消费', value: ''}
]
};
},
mounted() {
... ... @@ -54,33 +56,131 @@ export default {
},
components: {
NavButton,
ModalHaveTitle
ModalHaveTitle,
BaseInfoList
}
}
</script>
<style lang="scss" scoped>
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
color:#B0B0B0;
font-family: PingFang-SC-Regular;
font-size: 16px;
}
textarea::-moz-placeholder,
input::-moz-placeholder {
color:#B0B0B0;
font-family: PingFang-SC-Regular;
font-size: 16px;
}
textarea:-moz-placeholder,
input:-moz-placeholder {
color:#B0B0B0;
font-family: PingFang-SC-Regular;
font-size: 16px;
}
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
color:#B0B0B0;
font-family: PingFang-SC-Regular;
font-size: 16px;
}
.user-info-container {
textarea {
width: 100%;
margin: 15px 0 0;
box-sizing: border-box;
resize: none;
background: #F3F3F3;
padding: 10px;
box-sizing: border-box;
border-radius: 2px;
border: none;
font-family: PingFang-SC-Regular;
font-size: 16px;
outline: none;
}
.notes {
textarea {
width: 100%;
margin: 10px 0 0;
box-sizing: border-box;
resize: none;
height: 130px;
}
}
.bind-user {
border-top: 1px solid #EAEBEB;
.search {
width: 100%;
background: #fff;
margin: 10px 0;
background: #F3F3F3;
margin: 15px 0;
height: 44PX;
padding: 0 10px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
&:after {
content: "";
display: block;
width: 100%;
height: 1px;
background: #EAEBEB;
clear: both;
position: absolute;
left: 0;
bottom: -15px;
}
input {
height: 44PX;
line-height: 45PX;
background: transparent;
border: none;
outline: none;
font-family: PingFang-SC-Regular;
font-size: 16px;
flex: 1;
}
.search-btn {
width: 20PX;
height: 20PX;
background: url(../../../static/images/search.png) no-repeat;
background-size: contain;
display: block;
}
}
.input-uid {
width: 100%;
background: #F3F3F3;
height: 44PX;
border: none;
outline: none;
margin-top: 15px;
padding: 0 10px;
box-sizing: border-box;
font-family: PingFang-SC-Regular;
font-size: 16px;
}
.label {
font-family: PingFang-SC-Regular;
font-size: 18px;
margin-top: 20px;
}
textarea {
width: 100%;
margin: 10px 0 0;
resize: none;
height: 151px;
}
}
}
... ...
<template>
<div class="home-page">
<ModalHaveTitle class="base-info" :title="'顾问基本信息'">
<ul class="info-list">
<li><span class="lable">微信号:</span></li>
<li><span class="lable">微信昵称:</span></li>
<li><span class="lable">微信手机号:</span></li>
<li><span class="lable">机器码:</span></li>
<li><span class="lable">有货账号:</span></li>
<li><span class="lable">有货UID:</span></li>
<li><span class="lable">所属分组:</span></li>
<li><span class="lable">运营人员:</span></li>
</ul>
<BaseInfoList :list="serviceInfo"></BaseInfoList>
<NavButton :text="'复制活动链接'" @click-btn="copyLink"></NavButton>
</ModalHaveTitle>
... ... @@ -31,8 +22,9 @@
</template>
<script>
import BaseInfoList from './components/base-info-list';
import Knowledge from './components/knowledge';
import OrderList from './components/orderList';
import OrderList from './components/order-list';
import Exchange from './components/exchange';
import Coupon from './components/coupon';
import UserInfo from './components/user-info';
... ... @@ -50,7 +42,17 @@ export default {
{text: '优惠券'},
{text: '知识库'}
],
curMenu: '用户信息'
curMenu: '用户信息',
serviceInfo: [
{label: '微信号', value: ''},
{label: '微信昵称', value: ''},
{label: '微信手机号', value: ''},
{label: '机器码', value: ''},
{label: '有货账号', value: ''},
{label: '有货UID', value: ''},
{label: '所属分组', value: ''},
{label: '运营人员', value: ''}
]
};
},
methods: {
... ... @@ -62,6 +64,7 @@ export default {
}
},
components: {
BaseInfoList,
Knowledge,
OrderList,
Exchange,
... ... @@ -79,8 +82,12 @@ html, body {
margin: 0;
padding: 0;
font-size: 12px;
max-width: 750px;
margin: 0 auto;
background: #f6f6f6;
font-family: helvetica,Arial,"\9ED1\4F53",sans-serif;
}
* {
-webkit-tap-highlight-color: transparent;
}
a {
... ... @@ -98,20 +105,13 @@ ul, li {
color: #d8021a;
}
.base-info {
width: 90%;
background: #efefef;
border-radius: 5px;
margin: 20px auto 0;
padding: 10px;
box-sizing: border-box;
h5 {
text-align: center;
padding: 0;
margin: 0;
}
.home-page {
max-width: 794px;
width: 100%;
margin: 0 auto;
}
.base-info {
.copy-link-btn {
width: 100%;
margin: 0 auto;
... ... @@ -144,15 +144,23 @@ ul, li {
display: flex;
justify-content: space-evenly;
margin-top: 20px;
background: #fff;
height: 61px;
line-height: 52px;
border-bottom: 1px solid #EAEBEB;
box-sizing: border-box;
.menu-item {
background: #efefef;
padding: 5px;
border-radius: 5px;
font-family: PingFang-SC-Regular;
font-size: 16px;
cursor: pointer;
color: #979797;
&.actived {
background: #d8021a;
color: #fff;
color: #000;
font-family: PingFang-SC-Medium;
}
}
}
... ...

768 Bytes | W: | H:

1.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
... ... @@ -6886,6 +6886,13 @@ postcss-ordered-values@^4.1.1:
postcss "^7.0.0"
postcss-value-parser "^3.0.0"
postcss-pxtorem@^4.0.1:
version "4.0.1"
resolved "http://npm.yohops.com/postcss-pxtorem/-/postcss-pxtorem-4.0.1.tgz#9c64d0efe4885473cc1cb0305c6ffc3ebb45b1cd"
dependencies:
object-assign "^4.1.0"
postcss "^5.2.10"
postcss-reduce-idents@^2.2.2:
version "2.4.0"
resolved "http://npm.yohops.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
... ... @@ -7101,7 +7108,7 @@ postcss-zindex@^2.0.1:
postcss "^5.0.4"
uniqs "^2.0.0"
postcss@^5.0.0, postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.18, postcss@^5.0.2, postcss@^5.0.20, postcss@^5.0.21, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.13, postcss@^5.2.16, postcss@^5.2.4:
postcss@^5.0.0, postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.18, postcss@^5.0.2, postcss@^5.0.20, postcss@^5.0.21, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.10, postcss@^5.2.13, postcss@^5.2.16, postcss@^5.2.4:
version "5.2.18"
resolved "http://npm.yohops.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
dependencies:
... ...