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
<template>
    <basic-container>
      <avue-crud ref="crud"
                 v-model="form"
                 :data="data"
                 :option="option"
                 :page.sync="page"
                 @on-load="getList"
                 @row-update="rowUpdate"
                 @row-save="rowSave"
                 @row-del="rowDel"
                 @refresh-change="refreshChange"
                 @search-reset="searchChange"
                 @search-change="searchChange">
        <template slot="menuLeft">
          <el-tooltip class="item" effect="dark" content="查找状态池使用范围" placement="top">
            <el-button size="small"
                       plain
                       type="primary"
                       icon="el-icon-zoom-in"
                       @click="handleSearch">查看使用范围
            </el-button>
          </el-tooltip>
        </template>>
      </avue-crud>
      <el-dialog title="查看使用范围"
                 append-to-body
                 :visible.sync="packageSearchBox"
                 width="1200px">
        <versionpackage></versionpackage>
      </el-dialog>
    </basic-container>
  
  </template>
  
  <script>
  import { getPage,add,update,remove } from '../../api/omd/status';
  export default {
    name: "status",
    data(){
      return {
        //查看使用范围
        packageSearchBox:false,
        //分页数据
        page: {
          pageSize: 10,
          currentPage: 1,
          total: 100
        },
        data:[
        ],
        form:{},
        option:{
          headerAlign:'center',
          align: 'center',
          border: true,
          index: true,
          searchMenuSpan:5,
          column:[
            {
              label:'英文名称',
              prop: 'id',
              search: true
            },
            {
              label:'中文名称',
              prop:'name',
              search:true,
            },
            {
              label: '描述',
              prop:'description',
              type:'textarea'
            }
          ]
        }
      }
    },
    methods:{
      handleSearch(){
        // this.packageSearchBox=true
      },
      getList() {
        this.loading = true;
        getPage(this.page.currentPage,this.page.pageSize,this.params).then(res => {
          const data = res.data.data
          this.loading = false;
          this.page.total = data.total;
          this.data = data.records;
        })
      },
      rowSave(row, done, loading) {
        add(row).then(() => {
          this.$message.success('新增成功')
          done();
          this.getList();
        }).catch(() => {
          loading()
        })
      },
      rowUpdate(row, index, done, loading) {
        update(row).then(() => {
          this.$message.success('修改成功')
          done()
          this.getList();
        }).catch(() => {
          loading()
        })
      },
      rowDel(row) {
        this.$confirm('此操作将永久删除, 是否继续?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          console.log(row);
          return remove({oid : row.oid})
        }).then(() => {
          this.$message.success('删除成功')
          this.getList();
        })
      },
      searchChange(params, done) {
        if (done) done();
        this.params = params;
        this.page.currentPage = 1;
        this.getList();
        this.$message.success('搜索成功')
      },
      refreshChange() {
        this.getList();
        this.$message.success('刷新成功')
      }
    }
  }
  </script>
  
  <style scoped>
  
  </style>