付延余
2023-03-16 1ab29b3567574a721bd37d5ff9d7e9db386272d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<template>
    <!-- 转发 -->
    <view class="forward">
        <view class="forward-card">
            <u--form labelPosition="top" :model="forwardForm" ref="form1">
                <u-form-item label="转发对象" labelWidth="20%" ref="item1" @click="forwardObjectClick"><u--input v-model="name" placeholder="点击选择转发对象"></u--input></u-form-item>
                <u-form-item label="输入数量" labelWidth="20%" ref="item1">
                    <view class="forward-card-amount">
                        <view class="forward-card-amount-input"><u--input v-model="forwardForm.nums" placeholder="请输入转发数量"></u--input></view>
                        <u-checkbox-group v-model="checkboxValue1" placement="column" @change="checkboxChange">
                            <u-checkbox :customStyle="{ marginBottom: '8px' }" size="30" labelSize="30" label="全部转发" name="全部转发"></u-checkbox>
                        </u-checkbox-group>
                    </view>
                </u-form-item>
            </u--form>
        </view>
        <!-- 按钮 -->
        <view class="forwardBtn"><u-button text="提交" :hairline="false" type="primary" @click="submitForm"></u-button></view>
 
        <!-- 选择货代或车队弹出框 -->
        <view class="selectHuoDaiOrFleet-container">
            <u-popup :show="selectPopupShow" mode="bottom" @close="selectPopupClose" @open="selectPopupOpen">
                <view class="selectHuoDaiOrFleet-container-box">
                    <u-tabs :list="list1" @click="tabClick"></u-tabs>
                    <view class="" v-if="!tabHuoDai">
                        <u-cell-group>
                            <u-cell v-for="(item, index) in fleetData" :key="index" :title="item.name">
                                <view class="cell-util" slot="value"><u-button @click="forwardFleetObjectSelect(item)" text="选择" type="primary" size="mini"></u-button></view>
                            </u-cell>
                        </u-cell-group>
                    </view>
                    <view class="" v-else-if="tabHuoDai">
                        <u-cell-group>
                            <u-cell v-for="(item, index) in huoDaiData" :key="index" :title="item.name">
                                <view class="cell-util" slot="value"><u-button @click="forwardHuoDaiObjectSelect(item)" text="选择" type="primary" size="mini"></u-button></view>
                            </u-cell>
                        </u-cell-group>
                    </view>
                </view>
            </u-popup>
        </view>
    </view>
</template>
 
<script>
import { customerId } from '@/utils/status';
 
export default {
    onLoad(params) {
        console.log('转发的提煤单id', params.orderPlanId, params.carNum);
        this.forwardForm.orderPlanId = params.orderPlanId;
        this.carNumTatal = params.carNum;
    },
    data() {
        return {
            paramsName: {},
            huoDaiData: [],
            fleetData: [],
            carNumTatal: null,
            name: '',
            forwardForm: {
                orderPlanId: null,
                nums: null,
                userId: 0,
                fleetId: 0
            },
            checkboxValue1: '',
            selectPopupShow: false,
            list1: [
                {
                    name: '车队'
                },
                {
                    name: '货代'
                }
            ],
            tabHuoDai: false
        };
    },
    onShow() {
        this.init();
        if (this.roleType == 2) {
            this.list1.splice(1, 1);
            this.tabHuoDai = false;
        }
    },
    computed: {
        roleType() {
            return uni.getStorageSync('roleType');
        }
    },
    methods: {
        init() {
            console.log('roleType', this.roleType);
            switch (this.roleType) {
                case 1:
                    this.getAllHuoDaiByCustomerId();
                    this.getFleet();
                    break;
                case 2:
                    this.getFleet();
                    break;
                default:
                    break;
            }
        },
        checkboxChange(value) {
            console.log('复选框变化', value);
            if (value.length != 0) {
                this.forwardForm.nums = this.carNumTatal;
            } else {
                this.forwardForm.nums = null;
            }
        },
        // 获取货代列表
        getAllHuoDaiByCustomerId() {
            this.$reqGet('getAllHuoDaiByCustomerId').then(res => {
                this.huoDaiData = res.data;
                console.log('货代列表', res);
            });
        },
        // 获取车队列表
        getFleet() {
            this.$reqGet('getFleet').then(res => {
                this.fleetData = res.data;
                console.log('车队列表', res);
            });
        },
        // 转发
        forwardObjectClick() {
            console.log('hahah');
            this.selectPopupShow = true;
            console.log(this.huoDaiData, this.fleetData, '转发');
        },
        selectPopupClose() {
            this.selectPopupShow = false;
        },
        selectPopupOpen() {
            console.log('弹出框打开了');
        },
        // 转发选择货代
        forwardHuoDaiObjectSelect(item) {
            this.selectPopupShow = false;
            this.forwardForm.userId = item.userId;
            this.name = item.name;
            this.forwardForm.fleetId = 0;
            console.log('货代选择', this.forwardForm);
        },
        // 转发选择车队
        forwardFleetObjectSelect(item) {
            this.selectPopupShow = false;
            this.forwardForm.fleetId = item.id;
            this.name = item.name;
            this.forwardForm.userId = 0;
            console.log('车队选择', this.forwardForm);
        },
        // 提交
        submitForm() {
            this.$reqPost('forward', this.forwardForm, 'params').then(res => {
                if (res.code == 0) {
                    this.$u.toast('提交成功');
                    setTimeout(() => {
                        uni.navigateBack({ delta: 1 });
                    }, 1000);
                }
            });
        },
        tabClick(item) {
            console.log('tab点击', item);
            if (item.name == '货代') {
                this.tabHuoDai = true;
            } else {
                this.tabHuoDai = false;
            }
        }
    }
};
</script>
 
<style lang="scss" scoped>
::v-deep.forward {
    width: 90%;
    margin: 0 auto;
 
    // 卡片
    .forward-card {
        margin-top: vww(24);
 
        .u-form {
            .u-form-item {
                .u-form-item__body {
                    .u-form-item__body__right {
                        .u-form-item__body__right__content {
                            .u-form-item__body__right__content__slot {
                                .forward-card-amount {
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: flex-end;
                                    .forward-card-amount-input {
                                        width: vww(245);
                                    }
                                }
                                .u-input {
                                    border: 1px solid #dddddd;
                                }
                            }
                        }
                    }
                }
            }
        }
        .forward-card-amount {
            display: flex;
        }
    }
 
    .forwardBtn {
        width: 90%;
        position: fixed;
        bottom: vww(50);
    }
 
    .selectHuoDaiOrFleet-container {
        .u-popup {
            .u-transition {
                height: 95%;
 
                .u-popup__content {
                    overflow: scroll !important;
                    .selectHuoDaiOrFleet-container-box {
                        width: 90%;
                        margin: 0 auto;
                    }
                }
            }
        }
    }
}
</style>