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
| <template>
| <BaseCard size="middle-s" direction="down">
| <template #content>
| <el-form :inline="true">
| <OptionType v-model="formSearch.type"></OptionType>
| <OptionDevice
| :type="formSearch.type"
| v-model="formSearch.deviceCode"
| ></OptionDevice>
| <el-button type="primary" class="el-button-custom" @click="handleClick">
| 切换
| </el-button>
| </el-form>
| </template>
| </BaseCard>
| </template>
|
| <script>
| // 搜索框
| export default {
| data() {
| return {
| formSearch: {
| type: '',
| deviceCode: ''
| }
| };
| },
| emits: ['change'],
| methods: {
| handleClick() {
| this.$emit('change', this.formSearch);
| }
| },
| watch: {
| // 当设备编号首次从后端获取时,触发通知事件
| ['formSearch.deviceCode'](nV, oV) {
| if (oV == undefined && nV != oV) {
| this.handleClick();
| }
| }
| },
| mounted() {
| // 当设备编号已经从后端获取完成时,直接触发通知事件
| if (this.formSearch.deviceCode) {
| this.handleClick();
| }
| }
| };
| </script>
| <style scoped lang="scss">
| .el-form-item {
| margin-bottom: 0px;
| margin-right: 8px !important;
| }
| </style>
|
|