handleparam.vue
4.13 KB
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
<template>
<div class="paramset-box">
<el-dialog
:title="curtype === 'export' ? '配置导出' : '配置导入'"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose"
>
<div class="setparams-box">
<el-form
label-width="80px"
:model="paramform"
v-show="curtype === 'upload'"
>
<!-- <el-form-item label="类型">
<el-select v-model="paramform.fileType">
<el-option
v-for="type in types"
:key="type.type_code"
:value="type.type_code"
:label="type.conf_name"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="名称">
<el-input v-model="paramform.name"></el-input>
</el-form-item> -->
<el-form-item label="文件">
<el-upload
class="upload-demo"
ref="paramsup"
:action="uploadurl"
:on-change="handlePreview"
multiple
:limit="1"
:auto-upload="false"
:on-success="sucessfile"
:file-list="fileList"
:on-error="errorfile"
>
<el-button size="small" slot="trigger" type="primary"
>点击上传</el-button
>
<div slot="tip" class="el-upload__tip">只能上传tar.gz文件.</div>
</el-upload>
</el-form-item>
</el-form>
<el-form
label-width="80px"
:model="exportform"
v-show="curtype === 'export'"
>
<el-form-item label="类型">
<el-select v-model="paramform.fileType">
<el-option
v-for="type in types"
:key="type.type_code"
:value="type.type_code"
:label="type.conf_name"
></el-option>
</el-select>
</el-form-item>
</el-form>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="handleClose()">取 消</el-button>
<el-button type="primary" @click="uploadparams()">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
export default {
data() {
return {
dialogVisible: false,
paramform: {
fileType: ""
},
exportform: {},
fileList: [],
types: [],
curtype: "",
upfile: "",
uploadurl: "",
subtaskid: "",
subtask_name:""
};
},
methods: {
show(type, subid, subdata) {
this.curtype = type;
this.subtaskid = subid;
this.subtask_name = subdata.subtask_name;
this.dialogVisible = true;
this.uploadurl = `http://${location.host}/api/v1/devconf_fx/import/${this.subtaskid}`;
this.fileList = [];
this.$store.commit("setocxstate", 0);
},
handlePreview(file, fileList) {
let modalFileExt = file.name.slice(-7);
if (modalFileExt !== ".tar.gz") {
this.$message({
type: "warning",
message: '仅支持"*.tar.gz"文件'
});
this.$refs.paramsup.clearFiles();
return false;
}
},
uploadparams() {
let file_text = "";
this.$refs.paramsup.submit();
},
sucessfile() {
this.$message({
message: "导入成功请重新点击任务查看!",
type: "success"
});
this.dialogVisible = false;
this.$store.commit("setocxstate", 1);
this.fileList = [];
this.$logs.oplogs(res,'serv_scene',`任务导入成功,任务名称:${this.subtask_name}`);
},
errorfile(err){
console.log(err);
},
submitParamSet() {},
handleClose(done) {
(this.dialogVisible = false), this.$store.commit("setocxstate", 1);
},
getTypes() {
let params = {
offset: 0,
limit: ""
};
this.$api.device.getConfParam(params).then(res => {
this.types = res.list_data;
});
}
}
};
</script>
<style lang="stylus" scoped>
.setparams-box{
width 400px
margin 0 auto
}
.paramset-box{
overflow hidden
}
</style>