142 lines
4.0 KiB
Vue
142 lines
4.0 KiB
Vue
![]() |
<template>
|
|||
|
<div>
|
|||
|
<!-- 对话框(添加 / 修改) -->
|
|||
|
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="60%" v-dialogDrag append-to-body>
|
|||
|
<el-card class="box-card">
|
|||
|
<div slot="header" class="clearfix">
|
|||
|
<span>客户基本信息</span>
|
|||
|
</div>
|
|||
|
<el-descriptions class="margin-top" :column="3" border>
|
|||
|
<el-descriptions-item>
|
|||
|
<template slot="label">
|
|||
|
客户名称
|
|||
|
</template>
|
|||
|
{{formData.cusName}}
|
|||
|
</el-descriptions-item>
|
|||
|
<el-descriptions-item>
|
|||
|
<template slot="label">
|
|||
|
性别
|
|||
|
</template>
|
|||
|
<dict-tag :type="DICT_TYPE.DICT_SYS_USER_SEX" :value="formData.sex" />
|
|||
|
</el-descriptions-item>
|
|||
|
<el-descriptions-item>
|
|||
|
<template slot="label">
|
|||
|
联系方式
|
|||
|
</template>
|
|||
|
{{formData.phoneNumber}}
|
|||
|
</el-descriptions-item>
|
|||
|
<el-descriptions-item>
|
|||
|
<template slot="label">
|
|||
|
生日
|
|||
|
</template>
|
|||
|
{{ parseTime(formData.birthday,'{y}-{m}-{d}') }}
|
|||
|
</el-descriptions-item>
|
|||
|
<el-descriptions-item>
|
|||
|
<template slot="label">
|
|||
|
客户来源
|
|||
|
</template>
|
|||
|
<dict-tag :type="DICT_TYPE.DICT_CUS_DATA_FROM" :value="formData.dataFrom" />
|
|||
|
</el-descriptions-item>
|
|||
|
<el-descriptions-item>
|
|||
|
<template slot="label">
|
|||
|
最近办理业务
|
|||
|
</template>
|
|||
|
<dict-tag :type="DICT_TYPE.DICT_CUS_BUSI_TYPE" :value="formData.nearDoContent" />
|
|||
|
</el-descriptions-item>
|
|||
|
<el-descriptions-item>
|
|||
|
<template slot="label">
|
|||
|
联系地址
|
|||
|
</template>
|
|||
|
{{formData.address}}
|
|||
|
</el-descriptions-item>
|
|||
|
</el-descriptions>
|
|||
|
</el-card>
|
|||
|
<el-card class="box-card">
|
|||
|
<div slot="header" class="clearfix">
|
|||
|
<span>车辆信息</span>
|
|||
|
<el-button @click="openChooseCar" style="float: right; padding: 3px 0" type="text">选择车辆</el-button>
|
|||
|
</div>
|
|||
|
<el-row>
|
|||
|
<el-col :span="8">
|
|||
|
<el-card shadow="hover">
|
|||
|
车辆1
|
|||
|
</el-card>
|
|||
|
</el-col>
|
|||
|
<el-col :span="8">
|
|||
|
<el-card shadow="hover">
|
|||
|
车辆2
|
|||
|
</el-card>
|
|||
|
</el-col>
|
|||
|
<el-col :span="8">
|
|||
|
<el-card shadow="hover">
|
|||
|
车辆3
|
|||
|
</el-card>
|
|||
|
</el-col>
|
|||
|
<el-col :span="8">
|
|||
|
<el-card shadow="hover">
|
|||
|
车辆4
|
|||
|
</el-card>
|
|||
|
</el-col>
|
|||
|
</el-row>
|
|||
|
</el-card>
|
|||
|
<div slot="footer" class="dialog-footer">
|
|||
|
<el-button type="primary" @click="submitForm" :disabled="formLoading">确 定</el-button>
|
|||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|||
|
</div>
|
|||
|
</el-dialog>
|
|||
|
<ChooseCarDraw ref="chooseCarForm"/>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
import * as CustomerMainApi from '@/api/base/customer';
|
|||
|
import ChooseCarDraw from '@/views/base/customer/ChooseCarDraw.vue';
|
|||
|
|
|||
|
export default {
|
|||
|
name: "CustomerMainForm",
|
|||
|
components: {
|
|||
|
ChooseCarDraw
|
|||
|
},
|
|||
|
data() {
|
|||
|
return {
|
|||
|
// 弹出层标题
|
|||
|
dialogTitle: "",
|
|||
|
// 是否显示弹出层
|
|||
|
dialogVisible: false,
|
|||
|
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|||
|
formLoading: false,
|
|||
|
//回参
|
|||
|
formData:{},
|
|||
|
|
|||
|
};
|
|||
|
},
|
|||
|
methods: {
|
|||
|
|
|||
|
/** 打开弹窗 */
|
|||
|
async open(row) {
|
|||
|
this.dialogVisible = true;
|
|||
|
this.formLoading = true;
|
|||
|
try{
|
|||
|
const res = await CustomerMainApi.getCustomerMain(row.id);
|
|||
|
this.formData = res.data
|
|||
|
console.log(this.formData)
|
|||
|
this.dialogTitle = "绑定车辆";
|
|||
|
}finally {
|
|||
|
this.formLoading = false;
|
|||
|
}
|
|||
|
},
|
|||
|
|
|||
|
openChooseCar(){
|
|||
|
this.$refs["chooseCarForm"].open();
|
|||
|
},
|
|||
|
|
|||
|
|
|||
|
/** 提交按钮 */
|
|||
|
async submitForm() {
|
|||
|
|
|||
|
},
|
|||
|
|
|||
|
}
|
|||
|
};
|
|||
|
</script>
|