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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
| <template>
| <basic-container>
| <avue-crud :addBtn="false" :option="option" :table-loading="loading" :data="data" ref="crud"
| @selection-change="selectionChange">
| <template #menu-left>
| <div style="display: flex;">
| <el-button type="primary" size="default" icon="el-icon-upload" @click="importData">导入</el-button>
| <el-button type="primary" :disabled="this.selection.length==0" size="default" icon="el-icon-checked" plain @click="handleWarehouse"
| style="margin-left: 12px;">入库</el-button>
| </div>
| </template>
| <template #menu="scope">
| <el-button type="primary" text size="default" @click.stop="fileView(scope.row, scope.index)">查看文件</el-button>
| </template>
| </avue-crud>
| <el-dialog title="工控网文件导入" append-to-body v-model="excelBox" width="555px">
| <avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter" :upload-error="uploadError">
| <!-- <template #excelTemplate> icon="el-icon-circle-plus"
| <el-button type="primary" @click="handleTemplate">
| 点击下载<i class="el-icon-download el-icon--right"></i>
| </el-button>
| </template> -->
| </avue-form>
| </el-dialog>
| <el-dialog title="查看文件" append-to-body v-model="fileViewModel">
| <el-table :data="tableData" ref="filesTable" border @row-click="showContent" max-height="200" highlight-current-row>
| <el-table-column type="index" label="#" width="40" align="center"/>
| <el-table-column prop="name" label="程序名称"></el-table-column>
| </el-table>
| <h4>程序内容</h4>
| <div v-html="appContent" class="app-content"></div>
| </el-dialog>
| </basic-container>
| </template>
|
| <script>
| import {
| getList,
| } from '@/api/system/user';
| export default {
| data() {
| return {
| appContent: '',//程序内容
| tableData: [],
| fileViewModel: false,
| selection: [],
| excelBox: false,
| loading: false,
| option: {
| addBtn: false,
| editBtn: false,
| delBtn: false,
| labelWidth: 120,
| emptyBtn: false,
| searchSpan: 8,
| menu: true,
| selection: true,
| column: [
| /*{
| label: '程序编号',
| prop: 'programNo'
| },*/
| {
| label: '程序包名',
| prop: 'programName',
| },
| {
| label: '文件到达时间',
| prop: 'fileBackTime',
| },
| ],
| },
| data: [],
| excelForm: {},
| excelOption: {
| submitBtn: false,
| emptyBtn: false,
| column: [
| {
| label: '文件导入',
| prop: 'excelFile',
| type: 'upload',
| drag: true,
| loadText: 'DNC文件导入,请稍等',
| span: 24,
| propsHttp: {
| res: 'data',
| },
| tip: '',
| action: '/blade-mdm/program/dncsendback/upload',
| },
| ],
| },
| };
| },
| methods: {
| showContent(row, column, event) {
| axios({
| url: '/blade-mdm/program/dncsendback/back-file-content',
| method: 'get',
| params: {entryName: row.entryName}
| }).then(
| res => {
| console.log(res)
| if(res.data.code === 200) {
| this.appContent = res.data.data;
| } else {
| this.appContent = '程序内容加载失败'
| }
| });
| },
| fileView(row) {
| this.tableData = row.files;
| this.fileViewModel = true;
| if(this.tableData.length > 0){
| this.showContent(this.tableData[0])
| this.$refs.filesTable.setCurrentRow(this.tableData[0]);
| }
|
| },
| selectionChange(selection) {
| this.selection = selection;
| },
| importData() {
| this.excelBox = true;
| },
| uploadAfter(res, done, loading, column) {
| console.log(res, done, loading, column, 2233)
| this.excelBox = false;
| this.data = res || []
| done();
| },
| uploadError(error, column) {
|
| },
| handleWarehouse() {
| if (this.selection.length == 0) {
| return this.$message.error("请选择数据")
| }
| let selection = [];
| this.selection.forEach(item => {
| selection.push(item.id);
| })
| this.loading = true;
| var obj = {
| ids: selection.join(","),
| }
| axios({
| url: '/blade-mdm/program/dncsendback/accept',
| method: 'post',
| params: obj,
| }).then(
| res => {
| console.log(res);
| if (res.data.code === 200) {
| this.$message.success("操作成功");
| this.loading = false;
| this.data = []
| } else {
| this.$message.error(res.data.msg || "操作失败");
| this.loading = false;
| }
|
| }
| ).finally(() => {
| this.loading = false;
| });
| }
| },
| };
| </script>
|
| <style lang="scss">
| .app-content {
| background-color: #fffee1;
| padding: 10px 30px;
| min-height: 100px;
| overflow: auto;
| max-height: 400px;
| white-space: pre-wrap;
| }
| </style>
|
|