diff --git a/pages/massif/agrSpecs.vue b/pages/massif/agrSpecs.vue index 16e7449..6807de1 100644 --- a/pages/massif/agrSpecs.vue +++ b/pages/massif/agrSpecs.vue @@ -168,23 +168,9 @@ - - {{row.agriculturalGoods}}{{row.substanceName}}(袋) + {{row.agriculturalGoods}}{{row.substanceName}}({{row.specDescribe}}) @@ -205,7 +191,6 @@ export default { }, agrList:[], - show:false, } }, onLoad(){ diff --git a/pages/purchase/specs.vue b/pages/purchase/specs.vue index 00e0f16..de051c6 100644 --- a/pages/purchase/specs.vue +++ b/pages/purchase/specs.vue @@ -110,6 +110,50 @@ } } } + + .purcahse-picker{ + padding:0 30rpx; + display:flex; + flex-direction: column; + justify-content: space-evenly; + .name{ + display:flex; + align-items: center; + text{ + font-size:16rpx; + &:first-child{ + color:#fff; + background:#10C176; + border-radius:0 20rpx 0 20rpx; + width:80rpx; + height:34rpx; + text-align: center; + line-height: 34rpx; + margin-right:16rpx; + } + &:nth-child(2){ + font-weight: bold; + font-size:20rpx; + } + &:nth-child(3){ + color:#999; + margin-left:6rpx; + } + } + } + .company{ + font-size:16rpx; + &:before{ + content:attr(data-name); + color:#FBA83C; + margin-right:20rpx; + } + &:after{ + content:attr(data-company); + color:#999999; + } + } + } }