|
|
|
<template>
|
|
|
|
<el-dialog
|
|
|
|
:title="!dataForm.ticketsId ? '新增' : '修改'"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:visible.sync="visible"
|
|
|
|
width="500px">
|
|
|
|
<el-form :model="dataForm" :rules="dataRule" label-width="100px" size="mini" ref="dataForm" @keyup.enter.native="dataFormSubmit()">
|
|
|
|
<el-form-item label="小车类型" prop="carType">
|
|
|
|
<el-select v-model="dataForm.carType" placeholder="小车类型">
|
|
|
|
<el-option
|
|
|
|
v-for="item in dictsOpt['car_type']"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.value">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="异常类型" prop="errorType">
|
|
|
|
<el-select v-model="dataForm.carType" placeholder="异常类型">
|
|
|
|
<el-option
|
|
|
|
v-for="item in dictsOpt['error_type']"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.value">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="合同编号" prop="contractNumber">
|
|
|
|
<el-select v-model="dataForm.contractNumber" placeholder="合同编号">
|
|
|
|
<el-option
|
|
|
|
v-for="item in contractOpt"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.value">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="客户" prop="clientId">
|
|
|
|
<el-select v-model="dataForm.clientId" placeholder="客户">
|
|
|
|
<el-option
|
|
|
|
v-for="item in clientIdOpt"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.value">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="故障描述" prop="description">
|
|
|
|
<el-input type="textarea" :rows="2" placeholder="故障描述" v-model="dataForm.description"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="客户联系电话" prop="deptPhone">
|
|
|
|
<el-input v-model="dataForm.deptPhone" placeholder="客户联系电话"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
|
<el-button size="mini" @click="visible = false">取消</el-button>
|
|
|
|
<el-button size="mini" type="primary" @click="dataFormSubmit()">确定</el-button>
|
|
|
|
</span>
|
|
|
|
</el-dialog>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
visible: false,
|
|
|
|
carTypeOpt: [],
|
|
|
|
errorTypeOpt: [],
|
|
|
|
dataForm: {
|
|
|
|
ticketsId: null,
|
|
|
|
carType: '',
|
|
|
|
errorType: '',
|
|
|
|
contractNumber: '',
|
|
|
|
clientId: '',
|
|
|
|
description: '',
|
|
|
|
deptPhone: ''
|
|
|
|
},
|
|
|
|
dataRule: {
|
|
|
|
carType: [
|
|
|
|
{ required: true, message: '小车类型不能为空', trigger: 'blur' }
|
|
|
|
],
|
|
|
|
errorType: [
|
|
|
|
{ required: true, message: '异常类型不能为空', trigger: 'blur' }
|
|
|
|
],
|
|
|
|
clientId: [
|
|
|
|
{ required: true, message: '客户id不能为空', trigger: 'blur' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
contractOpt: Array,
|
|
|
|
clientIdOpt: Array,
|
|
|
|
dictsOpt: Object
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
init (id) {
|
|
|
|
this.dataForm.ticketsId = id || 0
|
|
|
|
this.visible = true
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$refs['dataForm'].resetFields()
|
|
|
|
if (this.dataForm.ticketsId) {
|
|
|
|
this.$http({
|
|
|
|
url: this.$http.adornUrl(`/tickets/tickets/info/${this.dataForm.ticketsId}`),
|
|
|
|
method: 'get',
|
|
|
|
params: this.$http.adornParams()
|
|
|
|
}).then(({data}) => {
|
|
|
|
if (data && data.code === 0) {
|
|
|
|
this.dataForm.carType = data.tickets.carType
|
|
|
|
this.dataForm.errorType = data.tickets.errorType
|
|
|
|
this.dataForm.contractNumber = data.tickets.contractNumber
|
|
|
|
this.dataForm.clientId = data.tickets.clientId
|
|
|
|
this.dataForm.description = data.tickets.description
|
|
|
|
this.dataForm.deptPhone = data.tickets.deptPhone
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 表单提交
|
|
|
|
dataFormSubmit () {
|
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
|
if (valid) {
|
|
|
|
this.$http({
|
|
|
|
url: this.$http.adornUrl(`/tickets/tickets/${!this.dataForm.ticketsId ? 'save' : 'update'}`),
|
|
|
|
method: 'post',
|
|
|
|
data: this.$http.adornData(this.dataForm)
|
|
|
|
}).then(({data}) => {
|
|
|
|
if (data && data.code === 0) {
|
|
|
|
this.$message({
|
|
|
|
message: '操作成功',
|
|
|
|
type: 'success',
|
|
|
|
duration: 1500,
|
|
|
|
onClose: () => {
|
|
|
|
this.visible = false
|
|
|
|
this.$emit('refreshDataList')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.$message.error(data.msg)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|