123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <template>
- <block>
- <view class="nav-right-item flex" v-for="item in list" :key="item.productSn">
- <view class="uni-col-2">
- <u-image :src="item.images+'?x-oss-process=image/resize,m_fixed,h_60,w_60,color_ffffff'"
- @click="viewImg(item)" border-radius="30" width="100" height="100" bg-color="#EBEBEB"></u-image>
- </view>
- <view class="item-info uni-col-10">
- <view class="item-name">
- <text>{{item.name}}</text>
- </view>
- <view class="item-detail">
- <view class="item-detail-info">
- <view class="flex justify_between">
- <text class="item-detail-text flex_1">{{item.code}}</text>
- <text class="item-detail-text" style="width: 50%;text-align: right;">库存:{{item.currentInven?item.currentInven:0}}{{item.unit}}</text>
- </view>
- <view class="flex" v-if="item.productTypeSn=='543766811373752320'">
- <uni-tag :text="item.origCode" inverted circle type="success"></uni-tag>
- </view>
- <view class="flex justify_between">
- <view class="item-detail-text flex align_center"
- @click="openPriceModal(item,0,showShelfDetial)">
- <view class="item-price" :style="{color:!item.price?'#666':''}"
- v-if="showCarPrice&&configPrice&&configPrice.shelf_price_show == '1'">
- {{item.price?'¥'+item.price:'暂无价格'}}
- </view>
- <view class="item-price" :style="{color:!item.cost?'#666':''}"
- v-if="showCostPrice&&configPrice&&configPrice.shelf_cost_show == '1'">
- {{item.cost?'¥'+item.cost:'暂无价格'}}
- </view>
- <uni-icons type="arrowright" color="#00aaff" size="12"
- v-if="priceShowVal&&showShelfDetial"></uni-icons>
- </view>
- <view class="item-detail-text flex align_center" v-if="item.currentInven">
- <button @click="addPart(item)" v-if="!item.checked"
- :style="{width:'48rpx',height:'48rpx',background:'#066cff',borderRadius:'50px',padding:0,border:'none'}"
- type="primary" size="mini">
- <uni-icons type="plusempty" color="#fff" size="20"></uni-icons>
- </button>
- <uni-number-box v-else @change="e=>updateNums(e,item.productSn)" v-model="item.qty"
- :min="0" :max="item.currentInven"></uni-number-box>
- </view>
- <view class="item-detail-text flex align_center" v-else>
- <text @click="addPart(item)" v-if="!item.checked" class="phtxt">我要急送</text>
- <uni-number-box v-else @change="e=>updateNums(e,item.productSn)" v-model="item.qty"
- :min="0"></uni-number-box>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </block>
- </template>
- <script>
- export default {
- props: {
- list: {
- type: Array,
- default: () => {
- return []
- }
- },
- configPrice: {
- type: Object,
- default: () => {
- return {}
- }
- },
- showCarPrice: {
- type: Boolean,
- default: false
- },
- showCostPrice: {
- type: Boolean,
- default: false
- },
- showShelfDetial: {
- type: Boolean,
- default: false
- },
- showNonShelfDetial: {
- type: Boolean,
- default: false
- },
- priceShowVal: {
- type: Boolean,
- default: false
- },
- },
- data() {
- return {}
- },
- methods: {
- openPriceModal(item, type, show) {
- this.$emit('openPrice', item, type, show)
- },
- addPart(item) {
- this.$emit('addPart', item, 'other')
- },
- updateNums(value, id) {
- this.$emit('updateNums', {
- value: value,
- index: id
- })
- },
- viewImg(item) {
- this.$emit('viewImg', item)
- }
- }
- }
- </script>
- <style lang="less">
- @import '/flex.css';
- .nav-right-item {
- padding: 15upx 25upx;
- border-bottom: 2rpx solid #f5f5f5;
- .uni-col-2 {
- width: 50px;
- }
- .item-info {
- padding-left: 10upx;
- width: 80%;
- flex-grow: 1;
- .item-name {
- font-size: 30upx;
- color: #191919;
- display: flex;
- align-items: center;
- >image {
- width: 38rpx;
- height: 38rpx;
- margin-right: 10rpx;
- }
- >text {
- flex: 1;
- word-break: break-all;
- }
- }
- .item-detail {
- .item-detail-info {
- padding: 10upx 0 4upx;
- /deep/ .uni-tag {
- word-break: break-all;
- font-size: 28rpx;
- color: #0fab04eee;
- border: 0;
- padding: 0.2rem 0.3rem;
- }
- >view {
- padding-bottom: 10rpx;
- align-items: center;
- .item-detail-text {
- color: #999;
- .phtxt {
- color: #0485F6;
- font-size: 28upx;
- }
- .item-price {
- color: #FB1E1E;
- font-size: 28upx;
- }
- }
- }
- }
- }
- }
- }
- </style>
|