|
|
@@ -0,0 +1,446 @@
|
|
|
1
|
+<template>
|
|
|
2
|
+ <el-drawer
|
|
|
3
|
+ title="商品入库"
|
|
|
4
|
+ :visible.sync="localVisible"
|
|
|
5
|
+ direction="rtl"
|
|
|
6
|
+ size="85%"
|
|
|
7
|
+ append-to-body
|
|
|
8
|
+ :wrapper-closable="false"
|
|
|
9
|
+ custom-class="inbound-form-drawer"
|
|
|
10
|
+ @close="handleClose"
|
|
|
11
|
+ >
|
|
|
12
|
+ <div class="drawer-body">
|
|
|
13
|
+ <h4 class="section-header">基本信息</h4>
|
|
|
14
|
+ <el-form ref="baseFormRef" :model="form" :rules="baseRules" label-width="90px" size="small" class="base-form">
|
|
|
15
|
+ <el-form-item label="入库类型" prop="inboundType">
|
|
|
16
|
+ <el-radio-group v-model="form.inboundType">
|
|
|
17
|
+ <el-radio label="1">采购入库</el-radio>
|
|
|
18
|
+ <el-radio label="2">退货入库</el-radio>
|
|
|
19
|
+ <el-radio label="3">其他入库</el-radio>
|
|
|
20
|
+ </el-radio-group>
|
|
|
21
|
+ </el-form-item>
|
|
|
22
|
+ <el-form-item label="备注" prop="remark">
|
|
|
23
|
+ <el-input
|
|
|
24
|
+ v-model="form.remark"
|
|
|
25
|
+ type="textarea"
|
|
|
26
|
+ :rows="3"
|
|
|
27
|
+ placeholder="请输入备注"
|
|
|
28
|
+ maxlength="200"
|
|
|
29
|
+ show-word-limit
|
|
|
30
|
+ style="max-width: 640px"
|
|
|
31
|
+ />
|
|
|
32
|
+ </el-form-item>
|
|
|
33
|
+ </el-form>
|
|
|
34
|
+
|
|
|
35
|
+ <h4 class="section-header">入库商品</h4>
|
|
|
36
|
+ <div class="goods-toolbar">
|
|
|
37
|
+ <el-button type="primary" size="mini" icon="el-icon-goods" @click="openGoodsPicker">选择商品</el-button>
|
|
|
38
|
+ <!-- <el-button size="mini" icon="el-icon-upload2" @click="handleImportTip">导入商品</el-button> -->
|
|
|
39
|
+ <!-- <div class="barcode-wrap">
|
|
|
40
|
+ <el-input
|
|
|
41
|
+ v-model="barcodeInput"
|
|
|
42
|
+ placeholder="请输入商品条码"
|
|
|
43
|
+ clearable
|
|
|
44
|
+ size="small"
|
|
|
45
|
+ style="width: 280px"
|
|
|
46
|
+ @keyup.enter.native="handleBarcodeConfirm"
|
|
|
47
|
+ >
|
|
|
48
|
+ <i slot="prefix" class="el-input__icon el-icon-full-screen" />
|
|
|
49
|
+ <el-button slot="append" type="primary" @click="handleBarcodeConfirm">确定(Enter)</el-button>
|
|
|
50
|
+ </el-input>
|
|
|
51
|
+ </div> -->
|
|
|
52
|
+ </div>
|
|
|
53
|
+
|
|
|
54
|
+ <el-table border size="small" :data="formItems" class="items-table" empty-text="请添加入库商品">
|
|
|
55
|
+ <el-table-column label="商品信息" min-width="220">
|
|
|
56
|
+ <template slot-scope="scope">
|
|
|
57
|
+ <div class="goods-cell">
|
|
|
58
|
+ <image-preview v-if="scope.row.mainPic" :src="scope.row.mainPic" :width="44" :height="44" />
|
|
|
59
|
+ <span>{{ scope.row.goodsName || '—' }}</span>
|
|
|
60
|
+ </div>
|
|
|
61
|
+ </template>
|
|
|
62
|
+ </el-table-column>
|
|
|
63
|
+ <el-table-column label="商品规格" width="120" align="center">
|
|
|
64
|
+ <template slot-scope="scope">
|
|
|
65
|
+ <span>{{ specText(scope.row.specText) }}</span>
|
|
|
66
|
+ </template>
|
|
|
67
|
+ </el-table-column>
|
|
|
68
|
+ <el-table-column label="当前可用库存" width="120" align="center">
|
|
|
69
|
+ <template slot-scope="scope">
|
|
|
70
|
+ <span>{{ scope.row.stock != null ? scope.row.stock : '—' }}</span>
|
|
|
71
|
+ </template>
|
|
|
72
|
+ </el-table-column>
|
|
|
73
|
+ <el-table-column label="入库数量" width="160" align="center">
|
|
|
74
|
+ <template slot-scope="scope">
|
|
|
75
|
+ <el-input-number
|
|
|
76
|
+ v-model="scope.row.quantity"
|
|
|
77
|
+ :min="1"
|
|
|
78
|
+ :precision="0"
|
|
|
79
|
+ controls-position="right"
|
|
|
80
|
+ size="small"
|
|
|
81
|
+ style="width: 120px"
|
|
|
82
|
+ />
|
|
|
83
|
+ </template>
|
|
|
84
|
+ </el-table-column>
|
|
|
85
|
+ <el-table-column label="操作" width="80" align="center">
|
|
|
86
|
+ <template slot-scope="scope">
|
|
|
87
|
+ <el-button type="text" size="mini" @click="removeItem(scope.$index)">删除</el-button>
|
|
|
88
|
+ </template>
|
|
|
89
|
+ </el-table-column>
|
|
|
90
|
+ </el-table>
|
|
|
91
|
+ </div>
|
|
|
92
|
+
|
|
|
93
|
+ <div class="drawer-footer">
|
|
|
94
|
+ <el-button @click="handleCancel">取 消</el-button>
|
|
|
95
|
+ <el-button type="primary" :loading="submitting" @click="handleSubmit">确 认</el-button>
|
|
|
96
|
+ </div>
|
|
|
97
|
+
|
|
|
98
|
+ <!-- 商品选择器 -->
|
|
|
99
|
+ <el-dialog title="选择商品" :visible.sync="pickerOpen" width="820px" append-to-body @close="resetPicker">
|
|
|
100
|
+ <el-form :inline="true" size="small" @submit.native.prevent>
|
|
|
101
|
+ <el-form-item label="商品名称">
|
|
|
102
|
+ <el-input v-model="pickerQuery.keyword" placeholder="名称/编号" clearable style="width: 200px" @keyup.enter.native="searchGoodsOptions" />
|
|
|
103
|
+ </el-form-item>
|
|
|
104
|
+ <el-form-item>
|
|
|
105
|
+ <el-button type="primary" icon="el-icon-search" @click="searchGoodsOptions">搜索</el-button>
|
|
|
106
|
+ </el-form-item>
|
|
|
107
|
+ </el-form>
|
|
|
108
|
+ <el-table
|
|
|
109
|
+ ref="pickerTable"
|
|
|
110
|
+ border
|
|
|
111
|
+ v-loading="pickerLoading"
|
|
|
112
|
+ :data="pickerList"
|
|
|
113
|
+ max-height="360"
|
|
|
114
|
+ @selection-change="handlePickerSelection"
|
|
|
115
|
+ >
|
|
|
116
|
+ <el-table-column type="selection" width="50" align="center" />
|
|
|
117
|
+ <el-table-column label="商品信息" min-width="200">
|
|
|
118
|
+ <template slot-scope="scope">
|
|
|
119
|
+ <div class="goods-cell">
|
|
|
120
|
+ <image-preview v-if="scope.row.mainPic" :src="scope.row.mainPic" :width="40" :height="40" />
|
|
|
121
|
+ <span>{{ scope.row.goodsName || '—' }}</span>
|
|
|
122
|
+ </div>
|
|
|
123
|
+ </template>
|
|
|
124
|
+ </el-table-column>
|
|
|
125
|
+ <el-table-column label="规格" width="100" align="center">
|
|
|
126
|
+ <template slot-scope="scope">
|
|
|
127
|
+ <span>{{ specText(scope.row.specText) }}</span>
|
|
|
128
|
+ </template>
|
|
|
129
|
+ </el-table-column>
|
|
|
130
|
+ <el-table-column label="编号" prop="goodsSn" width="120" :show-overflow-tooltip="true" />
|
|
|
131
|
+ <el-table-column label="可用库存" prop="stock" width="90" align="center" />
|
|
|
132
|
+ </el-table>
|
|
|
133
|
+ <pagination
|
|
|
134
|
+ v-show="pickerTotal > 0"
|
|
|
135
|
+ :total="pickerTotal"
|
|
|
136
|
+ :page.sync="pickerQuery.pageNum"
|
|
|
137
|
+ :limit.sync="pickerQuery.pageSize"
|
|
|
138
|
+ @pagination="loadGoodsOptions"
|
|
|
139
|
+ />
|
|
|
140
|
+ <div slot="footer" class="dialog-footer">
|
|
|
141
|
+ <el-button type="primary" @click="confirmPicker">确 定</el-button>
|
|
|
142
|
+ <el-button @click="pickerOpen = false">取 消</el-button>
|
|
|
143
|
+ </div>
|
|
|
144
|
+ </el-dialog>
|
|
|
145
|
+
|
|
|
146
|
+ <!-- 条码多匹配选择 -->
|
|
|
147
|
+ <el-dialog title="选择商品规格" :visible.sync="barcodePickOpen" width="640px" append-to-body>
|
|
|
148
|
+ <p class="pick-tip">该条码匹配到多个商品,请选择其一:</p>
|
|
|
149
|
+ <el-table border :data="barcodeCandidates" @row-click="selectBarcodeCandidate">
|
|
|
150
|
+ <el-table-column label="商品信息" min-width="180">
|
|
|
151
|
+ <template slot-scope="scope">
|
|
|
152
|
+ <div class="goods-cell">
|
|
|
153
|
+ <image-preview v-if="scope.row.mainPic" :src="scope.row.mainPic" :width="40" :height="40" />
|
|
|
154
|
+ <span>{{ scope.row.goodsName || '—' }}</span>
|
|
|
155
|
+ </div>
|
|
|
156
|
+ </template>
|
|
|
157
|
+ </el-table-column>
|
|
|
158
|
+ <el-table-column label="规格" width="100" align="center">
|
|
|
159
|
+ <template slot-scope="scope">
|
|
|
160
|
+ <span>{{ specText(scope.row.specText) }}</span>
|
|
|
161
|
+ </template>
|
|
|
162
|
+ </el-table-column>
|
|
|
163
|
+ <el-table-column label="可用库存" prop="stock" width="90" align="center" />
|
|
|
164
|
+ <el-table-column label="操作" width="80" align="center">
|
|
|
165
|
+ <template slot-scope="scope">
|
|
|
166
|
+ <el-button type="text" size="mini" @click.stop="selectBarcodeCandidate(scope.row)">选择</el-button>
|
|
|
167
|
+ </template>
|
|
|
168
|
+ </el-table-column>
|
|
|
169
|
+ </el-table>
|
|
|
170
|
+ </el-dialog>
|
|
|
171
|
+ </el-drawer>
|
|
|
172
|
+</template>
|
|
|
173
|
+
|
|
|
174
|
+<script>
|
|
|
175
|
+import {
|
|
|
176
|
+ createSellerStockInbound,
|
|
|
177
|
+ listStockInboundGoodsOptions,
|
|
|
178
|
+ getStockInboundGoodsByBarcode
|
|
|
179
|
+} from "@/api/agri/seller/stock/inbound"
|
|
|
180
|
+
|
|
|
181
|
+export default {
|
|
|
182
|
+ name: "SellerStockInboundForm",
|
|
|
183
|
+ props: {
|
|
|
184
|
+ visible: { type: Boolean, default: false }
|
|
|
185
|
+ },
|
|
|
186
|
+ data() {
|
|
|
187
|
+ return {
|
|
|
188
|
+ localVisible: false,
|
|
|
189
|
+ submitting: false,
|
|
|
190
|
+ form: {
|
|
|
191
|
+ inboundType: "1",
|
|
|
192
|
+ remark: undefined
|
|
|
193
|
+ },
|
|
|
194
|
+ formItems: [],
|
|
|
195
|
+ barcodeInput: "",
|
|
|
196
|
+ baseRules: {
|
|
|
197
|
+ inboundType: [{ required: true, message: "请选择入库类型", trigger: "change" }]
|
|
|
198
|
+ },
|
|
|
199
|
+ pickerOpen: false,
|
|
|
200
|
+ pickerLoading: false,
|
|
|
201
|
+ pickerList: [],
|
|
|
202
|
+ pickerTotal: 0,
|
|
|
203
|
+ pickerSelection: [],
|
|
|
204
|
+ pickerQuery: {
|
|
|
205
|
+ pageNum: 1,
|
|
|
206
|
+ pageSize: 10,
|
|
|
207
|
+ keyword: undefined
|
|
|
208
|
+ },
|
|
|
209
|
+ barcodePickOpen: false,
|
|
|
210
|
+ barcodeCandidates: []
|
|
|
211
|
+ }
|
|
|
212
|
+ },
|
|
|
213
|
+ watch: {
|
|
|
214
|
+ visible(val) {
|
|
|
215
|
+ this.localVisible = val
|
|
|
216
|
+ if (val) {
|
|
|
217
|
+ this.resetForm()
|
|
|
218
|
+ }
|
|
|
219
|
+ },
|
|
|
220
|
+ localVisible(val) {
|
|
|
221
|
+ this.$emit("update:visible", val)
|
|
|
222
|
+ }
|
|
|
223
|
+ },
|
|
|
224
|
+ methods: {
|
|
|
225
|
+ specText(text) {
|
|
|
226
|
+ const val = text ? String(text).trim() : ""
|
|
|
227
|
+ return val || "—"
|
|
|
228
|
+ },
|
|
|
229
|
+ resetForm() {
|
|
|
230
|
+ this.form = {
|
|
|
231
|
+ inboundType: "1",
|
|
|
232
|
+ remark: undefined
|
|
|
233
|
+ }
|
|
|
234
|
+ this.formItems = []
|
|
|
235
|
+ this.barcodeInput = ""
|
|
|
236
|
+ this.submitting = false
|
|
|
237
|
+ this.$nextTick(() => {
|
|
|
238
|
+ if (this.$refs.baseFormRef) {
|
|
|
239
|
+ this.$refs.baseFormRef.clearValidate()
|
|
|
240
|
+ }
|
|
|
241
|
+ })
|
|
|
242
|
+ },
|
|
|
243
|
+ handleClose() {
|
|
|
244
|
+ this.resetForm()
|
|
|
245
|
+ },
|
|
|
246
|
+ handleCancel() {
|
|
|
247
|
+ this.localVisible = false
|
|
|
248
|
+ },
|
|
|
249
|
+ openGoodsPicker() {
|
|
|
250
|
+ this.pickerOpen = true
|
|
|
251
|
+ this.pickerQuery.pageNum = 1
|
|
|
252
|
+ this.loadGoodsOptions()
|
|
|
253
|
+ },
|
|
|
254
|
+ resetPicker() {
|
|
|
255
|
+ this.pickerSelection = []
|
|
|
256
|
+ this.pickerQuery.keyword = undefined
|
|
|
257
|
+ if (this.$refs.pickerTable) {
|
|
|
258
|
+ this.$refs.pickerTable.clearSelection()
|
|
|
259
|
+ }
|
|
|
260
|
+ },
|
|
|
261
|
+ searchGoodsOptions() {
|
|
|
262
|
+ this.pickerQuery.pageNum = 1
|
|
|
263
|
+ this.loadGoodsOptions()
|
|
|
264
|
+ },
|
|
|
265
|
+ loadGoodsOptions() {
|
|
|
266
|
+ this.pickerLoading = true
|
|
|
267
|
+ listStockInboundGoodsOptions(this.pickerQuery).then(response => {
|
|
|
268
|
+ this.pickerList = response.rows || []
|
|
|
269
|
+ this.pickerTotal = response.total || 0
|
|
|
270
|
+ this.pickerLoading = false
|
|
|
271
|
+ }).catch(() => {
|
|
|
272
|
+ this.pickerLoading = false
|
|
|
273
|
+ })
|
|
|
274
|
+ },
|
|
|
275
|
+ handlePickerSelection(rows) {
|
|
|
276
|
+ this.pickerSelection = rows || []
|
|
|
277
|
+ },
|
|
|
278
|
+ confirmPicker() {
|
|
|
279
|
+ if (!this.pickerSelection.length) {
|
|
|
280
|
+ this.$modal.msgWarning("请选择商品")
|
|
|
281
|
+ return
|
|
|
282
|
+ }
|
|
|
283
|
+ this.pickerSelection.forEach(row => {
|
|
|
284
|
+ this.appendGoodsRow(row)
|
|
|
285
|
+ })
|
|
|
286
|
+ this.pickerOpen = false
|
|
|
287
|
+ },
|
|
|
288
|
+ handleImportTip() {
|
|
|
289
|
+ this.$modal.msgWarning("批量导入功能暂未开放,请使用选择商品或条码录入")
|
|
|
290
|
+ },
|
|
|
291
|
+ handleBarcodeConfirm() {
|
|
|
292
|
+ const code = this.barcodeInput ? String(this.barcodeInput).trim() : ""
|
|
|
293
|
+ if (!code) {
|
|
|
294
|
+ this.$modal.msgWarning("请输入商品条码")
|
|
|
295
|
+ return
|
|
|
296
|
+ }
|
|
|
297
|
+ getStockInboundGoodsByBarcode(code).then(response => {
|
|
|
298
|
+ const rows = response.data || []
|
|
|
299
|
+ if (!rows.length) {
|
|
|
300
|
+ this.$modal.msgError("未找到该条码对应的商品")
|
|
|
301
|
+ return
|
|
|
302
|
+ }
|
|
|
303
|
+ if (rows.length === 1) {
|
|
|
304
|
+ this.appendGoodsRow(rows[0])
|
|
|
305
|
+ this.barcodeInput = ""
|
|
|
306
|
+ return
|
|
|
307
|
+ }
|
|
|
308
|
+ this.barcodeCandidates = rows
|
|
|
309
|
+ this.barcodePickOpen = true
|
|
|
310
|
+ })
|
|
|
311
|
+ },
|
|
|
312
|
+ selectBarcodeCandidate(row) {
|
|
|
313
|
+ this.appendGoodsRow(row)
|
|
|
314
|
+ this.barcodePickOpen = false
|
|
|
315
|
+ this.barcodeCandidates = []
|
|
|
316
|
+ this.barcodeInput = ""
|
|
|
317
|
+ },
|
|
|
318
|
+ itemKey(row) {
|
|
|
319
|
+ const skuId = row.skuId != null ? row.skuId : ""
|
|
|
320
|
+ return `${row.goodsId}_${skuId}`
|
|
|
321
|
+ },
|
|
|
322
|
+ appendGoodsRow(row) {
|
|
|
323
|
+ if (!row || row.goodsId == null) {
|
|
|
324
|
+ return
|
|
|
325
|
+ }
|
|
|
326
|
+ const key = this.itemKey(row)
|
|
|
327
|
+ const exist = this.formItems.find(item => this.itemKey(item) === key)
|
|
|
328
|
+ if (exist) {
|
|
|
329
|
+ exist.quantity = (exist.quantity || 0) + 1
|
|
|
330
|
+ this.$modal.msgSuccess("该商品已在明细中,已合并数量")
|
|
|
331
|
+ return
|
|
|
332
|
+ }
|
|
|
333
|
+ this.formItems.push({
|
|
|
334
|
+ goodsId: row.goodsId,
|
|
|
335
|
+ skuId: row.skuId || null,
|
|
|
336
|
+ goodsName: row.goodsName,
|
|
|
337
|
+ mainPic: row.mainPic,
|
|
|
338
|
+ specText: row.specText,
|
|
|
339
|
+ stock: row.stock,
|
|
|
340
|
+ quantity: 1
|
|
|
341
|
+ })
|
|
|
342
|
+ },
|
|
|
343
|
+ removeItem(index) {
|
|
|
344
|
+ this.formItems.splice(index, 1)
|
|
|
345
|
+ },
|
|
|
346
|
+ validateItems() {
|
|
|
347
|
+ if (!this.formItems.length) {
|
|
|
348
|
+ this.$modal.msgWarning("请添加入库商品")
|
|
|
349
|
+ return false
|
|
|
350
|
+ }
|
|
|
351
|
+ for (let i = 0; i < this.formItems.length; i++) {
|
|
|
352
|
+ const qty = this.formItems[i].quantity
|
|
|
353
|
+ if (qty == null || !Number.isInteger(Number(qty)) || Number(qty) < 1) {
|
|
|
354
|
+ this.$modal.msgWarning("请输入正确的入库数量")
|
|
|
355
|
+ return false
|
|
|
356
|
+ }
|
|
|
357
|
+ }
|
|
|
358
|
+ return true
|
|
|
359
|
+ },
|
|
|
360
|
+ handleSubmit() {
|
|
|
361
|
+ this.$refs.baseFormRef.validate(valid => {
|
|
|
362
|
+ if (!valid || !this.validateItems()) {
|
|
|
363
|
+ return
|
|
|
364
|
+ }
|
|
|
365
|
+ const payload = {
|
|
|
366
|
+ inboundType: this.form.inboundType,
|
|
|
367
|
+ remark: this.form.remark ? String(this.form.remark).trim() : undefined,
|
|
|
368
|
+ items: this.formItems.map(item => ({
|
|
|
369
|
+ goodsId: item.goodsId,
|
|
|
370
|
+ skuId: item.skuId || null,
|
|
|
371
|
+ quantity: Number(item.quantity)
|
|
|
372
|
+ }))
|
|
|
373
|
+ }
|
|
|
374
|
+ this.submitting = true
|
|
|
375
|
+ createSellerStockInbound(payload).then(response => {
|
|
|
376
|
+ const data = response.data || {}
|
|
|
377
|
+ this.$modal.msgSuccess("入库成功")
|
|
|
378
|
+ this.localVisible = false
|
|
|
379
|
+ this.$emit("success", data)
|
|
|
380
|
+ this.submitting = false
|
|
|
381
|
+ }).catch(() => {
|
|
|
382
|
+ this.submitting = false
|
|
|
383
|
+ })
|
|
|
384
|
+ })
|
|
|
385
|
+ }
|
|
|
386
|
+ }
|
|
|
387
|
+}
|
|
|
388
|
+</script>
|
|
|
389
|
+
|
|
|
390
|
+<style scoped lang="scss">
|
|
|
391
|
+.drawer-body {
|
|
|
392
|
+ padding: 0 20px 72px;
|
|
|
393
|
+}
|
|
|
394
|
+.section-header {
|
|
|
395
|
+ margin: 8px 0 12px;
|
|
|
396
|
+ font-size: 15px;
|
|
|
397
|
+ color: #303133;
|
|
|
398
|
+ border-left: 3px solid #409EFF;
|
|
|
399
|
+ padding-left: 8px;
|
|
|
400
|
+}
|
|
|
401
|
+.base-form {
|
|
|
402
|
+ margin-bottom: 8px;
|
|
|
403
|
+}
|
|
|
404
|
+.goods-toolbar {
|
|
|
405
|
+ display: flex;
|
|
|
406
|
+ flex-wrap: wrap;
|
|
|
407
|
+ align-items: center;
|
|
|
408
|
+ gap: 10px;
|
|
|
409
|
+ margin-bottom: 12px;
|
|
|
410
|
+}
|
|
|
411
|
+.barcode-wrap {
|
|
|
412
|
+ margin-left: auto;
|
|
|
413
|
+}
|
|
|
414
|
+.items-table {
|
|
|
415
|
+ margin-top: 4px;
|
|
|
416
|
+}
|
|
|
417
|
+.goods-cell {
|
|
|
418
|
+ display: flex;
|
|
|
419
|
+ align-items: center;
|
|
|
420
|
+ gap: 8px;
|
|
|
421
|
+}
|
|
|
422
|
+.drawer-footer {
|
|
|
423
|
+ position: absolute;
|
|
|
424
|
+ right: 0;
|
|
|
425
|
+ bottom: 0;
|
|
|
426
|
+ left: 0;
|
|
|
427
|
+ z-index: 10;
|
|
|
428
|
+ padding: 12px 20px;
|
|
|
429
|
+ text-align: right;
|
|
|
430
|
+ background: #fff;
|
|
|
431
|
+ border-top: 1px solid #EBEEF5;
|
|
|
432
|
+}
|
|
|
433
|
+.pick-tip {
|
|
|
434
|
+ margin: 0 0 12px;
|
|
|
435
|
+ font-size: 13px;
|
|
|
436
|
+ color: #606266;
|
|
|
437
|
+}
|
|
|
438
|
+</style>
|
|
|
439
|
+
|
|
|
440
|
+<style lang="scss">
|
|
|
441
|
+.inbound-form-drawer .el-drawer__body {
|
|
|
442
|
+ position: relative;
|
|
|
443
|
+ padding: 0;
|
|
|
444
|
+ overflow: auto;
|
|
|
445
|
+}
|
|
|
446
|
+</style>
|