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
| <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"
| @row-click="rowClick">
| <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="applyRangeSearch">查看使用范围
| </el-button>
| </el-tooltip>
| </template>
| <template slot="radio"
| slot-scope="{row}">
| <el-radio v-model="selectRow"
| :label="row.$index">
| </el-radio>
| </template>
| </avue-crud>
| <versionpackage :rangeData="applyRangeData" ref="applyRange"></versionpackage>
| </basic-container>
|
| </template>
|
| <script>
| import { getPage,add,update,remove,getApplyRange } from '../../api/omd/status';
| export default {
| name: "status",
| data(){
| return {
| //查看使用范围
| packageSearchBox:false,
| // 点击数据
| selectRow: '',
| selectRowData: {},
| //分页数据
| page: {
| pageSize: 10,
| currentPage: 1,
| total: 100
| },
| data:[
| ],
| form:{},
| option:{
| headerAlign:'center',
| align: 'center',
| border: true,
| index: true,
| searchMenuSpan:5,
| highlightCurrentRow: true,
| stripe:true,
| column:[
| {
| label: '',
| prop: 'radio',
| width: 120
| },
| {
| label:'英文名称',
| prop: 'id',
| search: true
| },
| {
| label:'中文名称',
| prop:'name',
| search:true,
| },
| {
| label: '描述',
| prop:'description',
| type:'textarea'
| }
| ]
| },
| applyRangeData: []
| }
| },
| methods:{
| rowClick(row){
| this.selectRow = row.$index;
| this.selectRowData = row;
| },
| applyRangeSearch(){
| if (!this.selectRow && this.selectRow != 0){
| console.log(this.selectRow);
| this.$message({
| type:"warning",
| message: "请先选择属性"
| })
| }
| getApplyRange(this.selectRowData.id).then(res => {
| this.applyRangeData = res.data.data;
| this.$refs.applyRange.rangeData = this.applyRangeData;
| this.$refs.applyRange.showDialog = 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>
|
|