线索新增小计增加意向购车周期
This commit is contained in:
@@ -149,7 +149,7 @@
|
||||
showOverflowTooltip: true
|
||||
},
|
||||
{
|
||||
prop: 'orgTeamName',
|
||||
prop: 'orgName',
|
||||
label: '机构团队',
|
||||
align: 'center',
|
||||
width: 80,
|
||||
|
||||
@@ -103,8 +103,19 @@
|
||||
</template>
|
||||
</ele-pro-table>
|
||||
</el-card>
|
||||
<el-dialog title="新增小记" :visible.sync="addLogVisible" width="30%">
|
||||
<el-form ref="form" label-width="50px">
|
||||
<el-dialog title="新增小记" :visible.sync="addLogVisible" width="40%">
|
||||
<el-form ref="form" label-width="100px">
|
||||
<el-form-item label="意向购车周期:">
|
||||
<el-select clearable v-model="addForm.buy_time">
|
||||
<el-option
|
||||
v-for="(item, index) in buyTimeList"
|
||||
:key="index"
|
||||
:label="item"
|
||||
:value="index"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="内容:">
|
||||
<el-input
|
||||
clearable
|
||||
@@ -155,7 +166,8 @@
|
||||
},
|
||||
addForm: {
|
||||
id: '',
|
||||
content: ''
|
||||
content: '',
|
||||
buy_time: ''
|
||||
},
|
||||
title: '',
|
||||
// 表格列配置
|
||||
@@ -225,7 +237,8 @@
|
||||
showOverflowTooltip: true
|
||||
}
|
||||
],
|
||||
addLogVisible: false
|
||||
addLogVisible: false,
|
||||
buyTimeList: []
|
||||
};
|
||||
},
|
||||
created() {},
|
||||
@@ -240,6 +253,7 @@
|
||||
.then((data) => {
|
||||
this.loading = false;
|
||||
this.$util.assignObject(this.form, { ...data });
|
||||
this.buyTimeList = data.buyTimeList;
|
||||
})
|
||||
.catch((e) => {
|
||||
this.loading = false;
|
||||
|
||||
Reference in New Issue
Block a user