ShipmentPickManualCombineModal.vue
921 Bytes
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
<template>
<j-modal
:title="title"
:width="1400"
:visible="visible"
:maskClosable="false"
switchFullscreen
@ok="handleOk"
:okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
@cancel="handleCancel">
<!-- 弹窗内容... -->
</j-modal>
</template>
<script>
export default {
data() {
return {
title: '',
visible: false,
disableSubmit: false,
// 其他数据...
}
},
methods: {
// 点击按钮时的处理函数
edit(record) {
this.title = '手动发料';
this.shipmentHeaderId = record.id;
this.visible = true; // 打开弹窗
this.search(); // 加载数据
},
handleOk() {
this.$emit('ok');
this.close();
},
handleCancel() {
this.close();
},
close() {
this.visible = false;
},
// 其他方法...
},
created() {
this.loadForm();
}
}
</script>