add.vue
4.86 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
<template>
<div>
<el-dialog :title="isEdit=='add'?$t('dialog.addDevice'):$t('dialog.editDevice')":visible.sync="isShow" v-if="isShow" :close-on-click-modal='false' class="manage-dialog dialog_lj" :before-close="closeDialog">
<el-form :model="addForm" :rules="rules" ref="addForm">
<el-form-item :label="$t('table.deviceName')" prop="name">
<el-input v-model.trim="addForm.name" maxlength="10" :placeholder="$t('pholder.input')" @input='nameChange'></el-input>
<i class="error-tip">*</i>
</el-form-item>
<el-form-item :label="$t('table.videoSource')" prop="platform">
<el-select v-model="addForm.platform" :placeholder="$t('pholder.select')" :disabled="isEdit=='edit'?true:false">
<el-option label="拾联" :value="1"></el-option>
<el-option label="萤石云" :value="2"></el-option>
</el-select>
<i class="error-tip">*</i>
</el-form-item>
<el-form-item :label="$t('table.deviceSerial')" prop="deviceSerial">
<el-input v-model.trim="addForm.deviceSerial" :placeholder="$t('pholder.deviceSerial')" :disabled="isEdit=='edit'?true:false"></el-input>
<i class="error-tip">*</i>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="closeDialog" class="dialog-btn">{{$t('dialog.cancel')}}</el-button>
<el-button type="primary" @click="addSubmit('addForm')" class="dialog-btn dialog-confirm-btn">
{{$t('dialog.confirm')}}</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
export default {
data() {
return {
isEdit:'add',
isShow: false,
addForm: {
accountId: this.$cookie.get('accountId'),
name: '',
mallId: null,
deviceSerial: null,
platform: null,
},
rules: {
name: [{
required: true,
message: this.$t("pholder.input"),
trigger: 'blur'
}],
platform: [{
required: true,
message: this.$t("pholder.select"),
trigger: 'blur'
}],
deviceSerial: [{
required: true,
message: this.$t("pholder.input"),
trigger: 'blur'
}],
},
}
},
methods: {
dialogInit(val,type,row) {
this.isEdit = type;
this.isShow = true;
this.addForm.mallId = val;
this.addForm.accountId = this.$cookie.get('accountId');
if(row){
this.addForm.name = row.name;
this.addForm.deviceSerial = row.deviceSerial;
this.addForm.platform = row.platform;
this.addForm.id = row.id;
}
},
nameChange(val){
this.$forceUpdate()
},
addSubmit(formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
if(this.isEdit=='add'){
this.$api.videoShopTourReport.addDevice(this.addForm)
.then((res) => {
let result = res.data;
if(result.code==200){
this.$message({
message: result.msg,
type: 'success'
});
this.$parent.getTableData();
this.$refs.addForm.resetFields();
this.addForm = {
accountId: this.$cookie.get('accountId')
}
this.isShow = false
}else{
this.$message({
message: result.msg,
type: 'error'
});
}
})
}else{
this.$api.videoShopTourReport.editDevice(this.addForm)
.then((res) => {
let result = res.data;
if(result.code==200){
this.$message({
message: result.msg,
type: 'success'
});
this.$parent.getTableData();
this.$refs.addForm.resetFields();
this.addForm = {
accountId: this.$cookie.get('accountId')
}
this.isShow = false
}else{
this.$message({
message: result.msg,
type: 'error'
});
}
})
}
} else {
return false;
}
});
},
closeDialog() {
this.$refs.addForm.resetFields();
this.addForm = {}
this.isShow = false;
}
}
}
</script>
<style lang="less" scoped="scoped">
.dialog_lj{
/deep/.el-form-item__label{
width: 80px;
}
/deep/.el-select{
width: 100%;
}
}
</style>