Browse Source

设备导入添加模板

gzb
wangzhonglu 8 months ago
parent
commit
7d42415f40

BIN
public/doc/student.xls View File


BIN
public/doc/设备导入.xlsx View File


+ 19
- 6
src/views/platformSection/deviceImport/batch.vue View File

98
             </Upload>
98
             </Upload>
99
             <div style="margin-left: 16px; color: #7c8db5">
99
             <div style="margin-left: 16px; color: #7c8db5">
100
               支持格式:xlsx/xls文件
100
               支持格式:xlsx/xls文件
101
+              <span
102
+                style="margin-left: 16px; color: #339dff; cursor: pointer"
103
+                @click="toDownloadTemplate()"
104
+                >下载设备导入模板</span
105
+              >
101
             </div>
106
             </div>
102
           </div>
107
           </div>
103
           <div v-if="importInfo.file">{{ importInfo.file.name }}</div>
108
           <div v-if="importInfo.file">{{ importInfo.file.name }}</div>
140
         style="margin-bottom: 16px; font-size: 18px"
145
         style="margin-bottom: 16px; font-size: 18px"
141
         v-if="importErrorInfo.snDuplicate.length > 0"
146
         v-if="importErrorInfo.snDuplicate.length > 0"
142
       >
147
       >
143
-        以下SN重复:
148
+        以下设备号重复:
144
       </div>
149
       </div>
145
       <div
150
       <div
146
         style="margin-bottom: 16px; font-size: 18px"
151
         style="margin-bottom: 16px; font-size: 18px"
149
           importErrorInfo.snExisted.length > 0
154
           importErrorInfo.snExisted.length > 0
150
         "
155
         "
151
       >
156
       >
152
-        以下SN已存在:
157
+        以下设备号已存在:
153
       </div>
158
       </div>
154
       <div class="view_main" v-if="importErrorInfo.snDuplicate.length > 0">
159
       <div class="view_main" v-if="importErrorInfo.snDuplicate.length > 0">
155
         <div
160
         <div
226
       },
231
       },
227
       importErrorInfo: {
232
       importErrorInfo: {
228
         show: false,
233
         show: false,
229
-        // 重复SN列表
234
+        // 重复设备号列表
230
         snDuplicate: [],
235
         snDuplicate: [],
231
-        // 已存在SN列表
236
+        // 已存在设备号列表
232
         snExisted: []
237
         snExisted: []
233
       },
238
       },
234
       columns: [
239
       columns: [
291
     }
296
     }
292
   },
297
   },
293
   methods: {
298
   methods: {
299
+    // 下载模板
300
+    toDownloadTemplate() {
301
+      let url = "/doc/设备导入.xlsx";
302
+      let elementIftrame = document.createElement("iframe");
303
+      elementIftrame.src = url;
304
+      elementIftrame.style.display = "none";
305
+      document.body.appendChild(elementIftrame);
306
+    },
294
     // 获取搜索区域列表
307
     // 获取搜索区域列表
295
     getRegionList() {
308
     getRegionList() {
296
       region_list_sel_pt({}).then((data) => {
309
       region_list_sel_pt({}).then((data) => {
373
               if (data.obj.code === 1) {
386
               if (data.obj.code === 1) {
374
                 this.importErrorInfo = {
387
                 this.importErrorInfo = {
375
                   show: true,
388
                   show: true,
376
-                  // 重复SN列表
389
+                  // 重复设备号列表
377
                   snDuplicate: data.obj.snDuplicate || [],
390
                   snDuplicate: data.obj.snDuplicate || [],
378
-                  // 已存在SN列表
391
+                  // 已存在设备号列表
379
                   snExisted: data.obj.snExisted || []
392
                   snExisted: data.obj.snExisted || []
380
                 };
393
                 };
381
               } else {
394
               } else {

+ 5
- 5
src/views/schoolSection/deviceManage/breakRuleDevice.vue View File

230
           key: "sn",
230
           key: "sn",
231
           align: "center"
231
           align: "center"
232
         },
232
         },
233
-        {
234
-          title: "Rom版本",
235
-          key: "romVersion",
236
-          align: "center"
237
-        },
233
+        // {
234
+        //   title: "Rom版本",
235
+        //   key: "romVersion",
236
+        //   align: "center"
237
+        // },
238
         {
238
         {
239
           title: "更新时间",
239
           title: "更新时间",
240
           key: "updatetime",
240
           key: "updatetime",

Loading…
Cancel
Save