线索新增小计增加意向购车周期

This commit is contained in:
lcc
2025-07-24 11:40:31 +08:00
parent 5074bfca1f
commit b78a0656df
2 changed files with 19 additions and 5 deletions
+1 -1
View File
@@ -149,7 +149,7 @@
showOverflowTooltip: true
},
{
prop: 'orgTeamName',
prop: 'orgName',
label: '机构团队',
align: 'center',
width: 80,
+18 -4
View File
@@ -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;