|
@@ -0,0 +1,321 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="app-container">
|
|
3
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
|
|
4
|
+ <el-form-item label="模型名称" prop="modelName">
|
|
5
|
+ <el-input
|
|
6
|
+ v-model="queryParams.modelName"
|
|
7
|
+ placeholder="请输入模型名称"
|
|
8
|
+ clearable
|
|
9
|
+ size="small"
|
|
10
|
+ @keyup.enter.native="handleQuery"
|
|
11
|
+ />
|
|
12
|
+ </el-form-item>
|
|
13
|
+ <el-form-item label="方案" prop="planId">
|
|
14
|
+ <template>
|
|
15
|
+ <el-select v-model="queryParams.planId" filterable placeholder="请选择">
|
|
16
|
+ <el-option
|
|
17
|
+ v-for="item in planList"
|
|
18
|
+ :key="item.planId"
|
|
19
|
+ :label="item.planName"
|
|
20
|
+ :value="item.planId">
|
|
21
|
+ </el-option>
|
|
22
|
+ </el-select>
|
|
23
|
+ </template>
|
|
24
|
+ </el-form-item>
|
|
25
|
+ <el-form-item>
|
|
26
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
27
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
28
|
+ </el-form-item>
|
|
29
|
+ </el-form>
|
|
30
|
+
|
|
31
|
+ <el-row :gutter="10" class="mb8">
|
|
32
|
+ <el-col :span="1.5">
|
|
33
|
+ <el-button
|
|
34
|
+ type="primary"
|
|
35
|
+ plain
|
|
36
|
+ icon="el-icon-plus"
|
|
37
|
+ size="mini"
|
|
38
|
+ @click="handleAdd"
|
|
39
|
+ v-hasPermi="['info:modelInfo:add']"
|
|
40
|
+ >新增</el-button>
|
|
41
|
+ </el-col>
|
|
42
|
+ <el-col :span="1.5">
|
|
43
|
+ <el-button
|
|
44
|
+ type="success"
|
|
45
|
+ plain
|
|
46
|
+ icon="el-icon-edit"
|
|
47
|
+ size="mini"
|
|
48
|
+ :disabled="single"
|
|
49
|
+ @click="handleUpdate"
|
|
50
|
+ v-hasPermi="['info:modelInfo:edit']"
|
|
51
|
+ >修改</el-button>
|
|
52
|
+ </el-col>
|
|
53
|
+ <el-col :span="1.5">
|
|
54
|
+ <el-button
|
|
55
|
+ type="danger"
|
|
56
|
+ plain
|
|
57
|
+ icon="el-icon-delete"
|
|
58
|
+ size="mini"
|
|
59
|
+ :disabled="multiple"
|
|
60
|
+ @click="handleDelete"
|
|
61
|
+ v-hasPermi="['info:modelInfo:remove']"
|
|
62
|
+ >删除</el-button>
|
|
63
|
+ </el-col>
|
|
64
|
+ <el-col :span="1.5">
|
|
65
|
+ <el-button
|
|
66
|
+ type="warning"
|
|
67
|
+ plain
|
|
68
|
+ icon="el-icon-download"
|
|
69
|
+ size="mini"
|
|
70
|
+ :loading="exportLoading"
|
|
71
|
+ @click="handleExport"
|
|
72
|
+ v-hasPermi="['info:modelInfo:export']"
|
|
73
|
+ >导出</el-button>
|
|
74
|
+ </el-col>
|
|
75
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
76
|
+ </el-row>
|
|
77
|
+
|
|
78
|
+ <el-table v-loading="loading" :data="modelInfoList" @selection-change="handleSelectionChange">
|
|
79
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
80
|
+ <el-table-column label="模型ID" align="center" prop="modelId" />
|
|
81
|
+ <el-table-column label="模型名称" align="center" prop="modelName" />
|
|
82
|
+ <el-table-column label="模型图标" align="center" prop="modelIcon">
|
|
83
|
+ <template slot-scope="scope">
|
|
84
|
+ <img :src="BASE_URL + scope.row.modelIcon" style="width: 50px; height: 50px;">
|
|
85
|
+ </template>
|
|
86
|
+ </el-table-column>
|
|
87
|
+ <el-table-column label="方案" align="center" prop="planId">
|
|
88
|
+ <template slot-scope="scope">
|
|
89
|
+ {{ getPlanTypeName(scope.row.planId) }}
|
|
90
|
+ </template>
|
|
91
|
+ </el-table-column>
|
|
92
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
|
|
93
|
+ <template slot-scope="scope">
|
|
94
|
+ <el-button
|
|
95
|
+ size="mini"
|
|
96
|
+ type="text"
|
|
97
|
+ icon="el-icon-edit"
|
|
98
|
+ @click="handleUpdate(scope.row)"
|
|
99
|
+ v-hasPermi="['info:modelInfo:edit']"
|
|
100
|
+ >修改</el-button>
|
|
101
|
+ <el-button
|
|
102
|
+ size="mini"
|
|
103
|
+ type="text"
|
|
104
|
+ icon="el-icon-delete"
|
|
105
|
+ @click="handleDelete(scope.row)"
|
|
106
|
+ v-hasPermi="['info:modelInfo:remove']"
|
|
107
|
+ >删除</el-button>
|
|
108
|
+ </template>
|
|
109
|
+ </el-table-column>
|
|
110
|
+ </el-table>
|
|
111
|
+
|
|
112
|
+ <pagination
|
|
113
|
+ v-show="total>0"
|
|
114
|
+ :total="total"
|
|
115
|
+ :page.sync="queryParams.pageNum"
|
|
116
|
+ :limit.sync="queryParams.pageSize"
|
|
117
|
+ @pagination="getList"
|
|
118
|
+ />
|
|
119
|
+
|
|
120
|
+ <!-- 添加或修改模型信息对话框 -->
|
|
121
|
+ <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
|
122
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
123
|
+ <el-form-item label="模型名称" prop="modelName">
|
|
124
|
+ <el-input v-model="form.modelName" placeholder="请输入模型名称" />
|
|
125
|
+ </el-form-item>
|
|
126
|
+ <el-form-item label="原始模型文件">
|
|
127
|
+ <fileUpload v-model="form.originalPath"/>
|
|
128
|
+ </el-form-item>
|
|
129
|
+ <el-form-item label="模型图标文件">
|
|
130
|
+ <imageUpload v-model="form.modelIcon"/>
|
|
131
|
+ </el-form-item>
|
|
132
|
+ <el-form-item label="方案id" prop="planId">
|
|
133
|
+ <template>
|
|
134
|
+ <el-select v-model="form.planId" filterable placeholder="请选择">
|
|
135
|
+ <el-option
|
|
136
|
+ v-for="item in planList"
|
|
137
|
+ :key="item.planId"
|
|
138
|
+ :label="item.planName"
|
|
139
|
+ :value="item.planId">
|
|
140
|
+ </el-option>
|
|
141
|
+ </el-select>
|
|
142
|
+ </template>
|
|
143
|
+ </el-form-item>
|
|
144
|
+ </el-form>
|
|
145
|
+ <div slot="footer" class="dialog-footer">
|
|
146
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
147
|
+ <el-button @click="cancel">取 消</el-button>
|
|
148
|
+ </div>
|
|
149
|
+ </el-dialog>
|
|
150
|
+ </div>
|
|
151
|
+</template>
|
|
152
|
+
|
|
153
|
+<script>
|
|
154
|
+import { listModelInfo, getModelInfo, delModelInfo, addModelInfo, updateModelInfo, exportModelInfo } from "@/api/info/modelInfo";
|
|
155
|
+import { listPlanInfo, getPlanInfo } from "@/api/info/planInfo";
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+export default {
|
|
159
|
+ name: "ModelInfo",
|
|
160
|
+ data() {
|
|
161
|
+ return {
|
|
162
|
+ BASE_URL: BASE_URL,
|
|
163
|
+ planList: [],
|
|
164
|
+ // 遮罩层
|
|
165
|
+ loading: true,
|
|
166
|
+ // 导出遮罩层
|
|
167
|
+ exportLoading: false,
|
|
168
|
+ // 选中数组
|
|
169
|
+ ids: [],
|
|
170
|
+ // 非单个禁用
|
|
171
|
+ single: true,
|
|
172
|
+ // 非多个禁用
|
|
173
|
+ multiple: true,
|
|
174
|
+ // 显示搜索条件
|
|
175
|
+ showSearch: true,
|
|
176
|
+ // 总条数
|
|
177
|
+ total: 0,
|
|
178
|
+ // 模型信息表格数据
|
|
179
|
+ modelInfoList: [],
|
|
180
|
+ // 弹出层标题
|
|
181
|
+ title: "",
|
|
182
|
+ // 是否显示弹出层
|
|
183
|
+ open: false,
|
|
184
|
+ // 查询参数
|
|
185
|
+ queryParams: {
|
|
186
|
+ pageNum: 1,
|
|
187
|
+ pageSize: 10,
|
|
188
|
+ modelName: null,
|
|
189
|
+ planId: null
|
|
190
|
+ },
|
|
191
|
+ queryPlanParams: {
|
|
192
|
+ pageNum: 1,
|
|
193
|
+ pageSize: 999999,
|
|
194
|
+ },
|
|
195
|
+ // 表单参数
|
|
196
|
+ form: {},
|
|
197
|
+ // 表单校验
|
|
198
|
+ rules: {
|
|
199
|
+ modelId: [
|
|
200
|
+ { required: true, message: "模型ID不能为空", trigger: "blur" }
|
|
201
|
+ ],
|
|
202
|
+ }
|
|
203
|
+ };
|
|
204
|
+ },
|
|
205
|
+ created() {
|
|
206
|
+ this.getList();
|
|
207
|
+ this.getPlanList();
|
|
208
|
+ },
|
|
209
|
+ methods: {
|
|
210
|
+
|
|
211
|
+ getPlanTypeName(planId) {
|
|
212
|
+ const name = this.planList.find(b => b.planId === planId);
|
|
213
|
+ return name ? name.planName : '未知';
|
|
214
|
+ },
|
|
215
|
+
|
|
216
|
+ getPlanList() {
|
|
217
|
+ listPlanInfo(this.queryPlanParams).then(response => {
|
|
218
|
+ this.planList = response.data.list;
|
|
219
|
+ });
|
|
220
|
+ },
|
|
221
|
+ /** 查询模型信息列表 */
|
|
222
|
+ getList() {
|
|
223
|
+ this.loading = true;
|
|
224
|
+ listModelInfo(this.queryParams).then(response => {
|
|
225
|
+ this.modelInfoList = response.data.list;
|
|
226
|
+ this.total = response.data.total;
|
|
227
|
+ this.loading = false;
|
|
228
|
+ });
|
|
229
|
+ },
|
|
230
|
+ // 取消按钮
|
|
231
|
+ cancel() {
|
|
232
|
+ this.open = false;
|
|
233
|
+ this.reset();
|
|
234
|
+ },
|
|
235
|
+ // 表单重置
|
|
236
|
+ reset() {
|
|
237
|
+ this.form = {
|
|
238
|
+ modelId: null,
|
|
239
|
+ modelName: null,
|
|
240
|
+ originalPath: null,
|
|
241
|
+ modelIcon: null,
|
|
242
|
+ planId: null
|
|
243
|
+ };
|
|
244
|
+ this.resetForm("form");
|
|
245
|
+ },
|
|
246
|
+ /** 搜索按钮操作 */
|
|
247
|
+ handleQuery() {
|
|
248
|
+ this.queryParams.pageNum = 1;
|
|
249
|
+ this.getList();
|
|
250
|
+ },
|
|
251
|
+ /** 重置按钮操作 */
|
|
252
|
+ resetQuery() {
|
|
253
|
+ this.resetForm("queryForm");
|
|
254
|
+ this.handleQuery();
|
|
255
|
+ },
|
|
256
|
+ // 多选框选中数据
|
|
257
|
+ handleSelectionChange(selection) {
|
|
258
|
+ this.ids = selection.map(item => item.modelId)
|
|
259
|
+ this.single = selection.length!==1
|
|
260
|
+ this.multiple = !selection.length
|
|
261
|
+ },
|
|
262
|
+ /** 新增按钮操作 */
|
|
263
|
+ handleAdd() {
|
|
264
|
+ this.reset();
|
|
265
|
+ this.open = true;
|
|
266
|
+ this.title = "添加模型信息";
|
|
267
|
+ },
|
|
268
|
+ /** 修改按钮操作 */
|
|
269
|
+ handleUpdate(row) {
|
|
270
|
+ this.reset();
|
|
271
|
+ const modelId = row.modelId || this.ids
|
|
272
|
+ getModelInfo(modelId).then(response => {
|
|
273
|
+ this.form = response.data;
|
|
274
|
+ this.open = true;
|
|
275
|
+ this.title = "修改模型信息";
|
|
276
|
+ });
|
|
277
|
+ },
|
|
278
|
+ /** 提交按钮 */
|
|
279
|
+ submitForm() {
|
|
280
|
+ this.$refs["form"].validate(valid => {
|
|
281
|
+ if (valid) {
|
|
282
|
+ if (this.form.modelId != null) {
|
|
283
|
+ updateModelInfo(this.form).then(response => {
|
|
284
|
+ this.$modal.msgSuccess("修改成功");
|
|
285
|
+ this.open = false;
|
|
286
|
+ this.getList();
|
|
287
|
+ });
|
|
288
|
+ } else {
|
|
289
|
+ addModelInfo(this.form).then(response => {
|
|
290
|
+ this.$modal.msgSuccess("新增成功");
|
|
291
|
+ this.open = false;
|
|
292
|
+ this.getList();
|
|
293
|
+ });
|
|
294
|
+ }
|
|
295
|
+ }
|
|
296
|
+ });
|
|
297
|
+ },
|
|
298
|
+ /** 删除按钮操作 */
|
|
299
|
+ handleDelete(row) {
|
|
300
|
+ const modelIds = row.modelId || this.ids;
|
|
301
|
+ this.$modal.confirm('是否确认删除模型信息编号为"' + modelIds + '"的数据项?').then(function() {
|
|
302
|
+ return delModelInfo(modelIds);
|
|
303
|
+ }).then(() => {
|
|
304
|
+ this.getList();
|
|
305
|
+ this.$modal.msgSuccess("删除成功");
|
|
306
|
+ }).catch(() => {});
|
|
307
|
+ },
|
|
308
|
+ /** 导出按钮操作 */
|
|
309
|
+ handleExport() {
|
|
310
|
+ const queryParams = this.queryParams;
|
|
311
|
+ this.$modal.confirm('是否确认导出所有模型信息数据项?').then(() => {
|
|
312
|
+ this.exportLoading = true;
|
|
313
|
+ return exportModelInfo(queryParams);
|
|
314
|
+ }).then(response => {
|
|
315
|
+ this.$download.name(response.msg);
|
|
316
|
+ this.exportLoading = false;
|
|
317
|
+ }).catch(() => {});
|
|
318
|
+ }
|
|
319
|
+ }
|
|
320
|
+};
|
|
321
|
+</script>
|