visit 修改提交
This commit is contained in:
parent
ee23a453d5
commit
5ce1147080
|
@ -135,14 +135,16 @@ export default {
|
|||
{ id: 20, name: "拜访" },
|
||||
{ id: 30, name: "面试" },
|
||||
{ id: 40, name: "开会" },
|
||||
{ id: 50, value: "拉送货" },
|
||||
{ id: 60, value: "其他" },
|
||||
{ id: 50, name: "拉送货" },
|
||||
{ id: 60, name: "其他" },
|
||||
],
|
||||
purpose_: {
|
||||
10: "参观",
|
||||
20: "拜访",
|
||||
30: "面试",
|
||||
40: "开会",
|
||||
50: "拉送货",
|
||||
60: "其他"
|
||||
},
|
||||
levelOptions: {
|
||||
10: "一般",
|
||||
|
|
|
@ -167,6 +167,7 @@ export default {
|
|||
.then((res) => {
|
||||
this.$message.success("创建成功");
|
||||
this.dialogcart = false;
|
||||
this.$refs.table.refresh();
|
||||
return res;
|
||||
})
|
||||
.catch((err) => {
|
||||
|
@ -178,6 +179,7 @@ export default {
|
|||
.then((res) => {
|
||||
this.$message.success("修改成功");
|
||||
this.dialogcart = false;
|
||||
this.$refs.table.refresh();
|
||||
return res;
|
||||
})
|
||||
.catch((err) => {
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :md="8" :sm="24" :xs="24">
|
||||
<el-form-item label="接待人" prop="receptionist">
|
||||
<el-form-item label="接待人">
|
||||
<span style="display:flex">
|
||||
<el-input readonly v-model="form.receptionist_name"></el-input>
|
||||
<ehsUserSelect :multiple="false" @submit="getReceptionist"/>
|
||||
|
@ -248,7 +248,7 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :md="12" :sm="12" :xs="24">
|
||||
<el-form-item label="形成轨迹" prop="trip_desc">
|
||||
<el-form-item label="行程轨迹" prop="trip_desc">
|
||||
<el-input v-model="formpeople.trip_desc" type="text" clearable></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
@ -361,8 +361,8 @@ export default {
|
|||
{ id: 20, name: "拜访" },
|
||||
{ id: 30, name: "面试" },
|
||||
{ id: 40, name: "开会" },
|
||||
{ id: 50, value: "拉送货" },
|
||||
{ id: 60, value: "其他" },
|
||||
{ id: 50, name: "拉送货" },
|
||||
{ id: 60, name: "其他" },
|
||||
],
|
||||
search: {
|
||||
keyword: null,
|
||||
|
|
Loading…
Reference in New Issue