Commit f5a272b30f768ebfb011245648e0f2723744f783
1 parent
01e87291
Exists in
master
and in
1 other branch
fix: 货源分享按钮
Showing
1 changed file
with
10 additions
and
3 deletions
Show diff stats
pages/goodSource/card.vue
| ... | ... | @@ -4,9 +4,9 @@ |
| 4 | 4 | <view class="title"> |
| 5 | 5 | <view class="order-no"> |
| 6 | 6 | <field-copy :value="item.code" v-if="item.code">{{ item.code }} </field-copy> |
| 7 | - <view v-if="!onlyShow" class="image" @click.stop="qrShow"> | |
| 8 | - <image style="height: 30upx; width: 30upx" src="/static/qr.png"></image> | |
| 9 | - </view> | |
| 7 | + <!-- <view v-if="!onlyShow" class="image" @click.stop="qrShow">--> | |
| 8 | + <!-- <image style="height: 30upx; width: 30upx" src="/static/qr.png"></image>--> | |
| 9 | + <!-- </view>--> | |
| 10 | 10 | </view> |
| 11 | 11 | <view style="display: flex; align-items: center"> |
| 12 | 12 | <render-dict v-if="item.status" class="status" :style="{ color: colorMap[item.status] }" dict="FREIGHT_GOODS_SOURCE_STATUS" :value="item.status"></render-dict> |
| ... | ... | @@ -89,6 +89,7 @@ |
| 89 | 89 | </view> |
| 90 | 90 | </view> |
| 91 | 91 | </zb-tooltip> |
| 92 | + <view class="button plain" @click.stop="qrShow">分享</view> | |
| 92 | 93 | <view class="button primary" @click.stop="toGrabPage">抢单管理</view> |
| 93 | 94 | </view> |
| 94 | 95 | </view> |
| ... | ... | @@ -379,6 +380,12 @@ export default { |
| 379 | 380 | background: $color-primary; |
| 380 | 381 | color: #ffffff; |
| 381 | 382 | } |
| 383 | + .plain { | |
| 384 | + width: 90rpx; | |
| 385 | + border: 2rpx solid $color-primary !important; | |
| 386 | + background: #ffffff; | |
| 387 | + color: $color-primary; | |
| 388 | + } | |
| 382 | 389 | } |
| 383 | 390 | } |
| 384 | 391 | } | ... | ... |