xuxueyang
2024-08-09 78abd5572d7dbf45124ed30a06fbffbb236066b7
update质检
已修改3个文件
26 ■■■■ 文件已修改
pages/order/order-delivery-detail.vue 13 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
sub_pages/partner/delivery/delivery-detail.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
sub_pages/supplier/print/print-list.vue 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/order/order-delivery-detail.vue
@@ -19,7 +19,13 @@
                this.status = options.status || ''
                this.query.id = this.id
            }
            // // #ifdef PUB_PARTNER
            // this.listApi = '/api/partner/delivery/list/items'
            // // #endif
            // // #ifdef PUB_CUSTOMER
            // // #endif
            this.listApi = '/api/supplier/delivery/list/items'
            await this.getList()
        },
@@ -110,8 +116,9 @@
                        </image>
                        <view class="flex1">
                            <view class=" flex">
                                <view class="title"><span class="level" v-if="item.flowerCategory">{{ item.flowerCategory || ''}}</span><span
                                class="level">{{ item.flowerLevelStr || ''}}</span>{{item.flowerName }}
                                <view class="title"><span class="level"
                                        v-if="item.flowerCategory">{{ item.flowerCategory || ''}}</span><span
                                        class="level">{{ item.flowerLevelStr || ''}}</span>{{item.flowerName }}
                                </view>
                            </view>
                            <view class="each-list ">
@@ -265,6 +272,7 @@
                    font-size: 28rpx;
                    color: #000000;
                    line-height: 40rpx;
                    .level {
                        font-weight: 400;
                        font-size: 28rpx;
@@ -301,6 +309,7 @@
                        font-size: 28rpx;
                        color: #000000;
                        line-height: 40rpx;
                        .level {
                            font-weight: 400;
                            font-size: 28rpx;
sub_pages/partner/delivery/delivery-detail.vue
@@ -208,8 +208,8 @@
                <view class="line-gray">
                
                </view>
                <view class="buttons">
                    <view class="button button-0 m-r-0 m-l-a w-fit" @click="printDeliveryOrder(item)">打印</view>
                <view class="buttons m-r-0 m-l-a w-fit">
                    <view class="button button-0 " @click="printDeliveryOrder(item)">打印</view>
                </view>
            </view>
        </view>
sub_pages/supplier/print/print-list.vue
@@ -145,12 +145,19 @@
            var t = this.$storage.getItem('cache_delivery_order_print') || ''
            if (t) {
                this.item = JSON.parse(t)
                var apitype = ''
                // #ifdef PUB_SUPPLIER
                apitype = '/supplier'
                // #endif
                // #ifdef PUB_PARTNER
                // apitype = '/supplier'
                // #endif
                //获取详情接口
                this.$message.showLoading()
                const {
                    code,
                    data
                } = await this.$http.request('get', '/api/supplier/delivery/list/items/view', {
                } = await this.$http.request('get', `/api${apitype}/delivery/list/items/view`, {
                    params: {
                        id: this.item.id
                    }