Commit c4e36ac6 authored by 罗超's avatar 罗超
parents 9925ab10 02b8b5b0
...@@ -439,5 +439,24 @@ export function RemoveStudentAssist(data) { ...@@ -439,5 +439,24 @@ export function RemoveStudentAssist(data) {
}); });
} }
//获取客户来源
export function CreateTypeList(data) {
return request({
url: '/user/CreateTypeList',
method: 'post',
data
});
}
//验证手机号
export function CheckExistsStu(data) {
return request({
url: '/user/CheckExistsStu',
method: 'post',
data
});
}
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
<q-banner v-if="isShowEdit"> <q-banner v-if="isShowEdit">
<div class="row wrap" style="margin-top:10px;width:300px;"> <div class="row wrap" style="margin-top:10px;width:300px;">
<q-input filled v-model="feedBackMsg.Feedback" :rows="3" type="textarea" <q-input filled v-model="feedBackMsg.Feedback" :rows="3" type="textarea"
class="col-12 q-pb-lg" label="反馈"> class="col-12 q-pb-lg" label="请输入反馈内容">
</q-input> </q-input>
</div> </div>
<div class="row wrap" style="margin-top:10px;width:300px;"> <div class="row wrap" style="margin-top:10px;width:300px;">
...@@ -175,7 +175,7 @@ ...@@ -175,7 +175,7 @@
Id: 0, //编号 Id: 0, //编号
IsVisit: 0, //到访状态(1-已到访,0-未到访) IsVisit: 0, //到访状态(1-已到访,0-未到访)
Feedback: '' //反馈 Feedback: '' //反馈
} },
} }
}, },
created() { created() {
...@@ -189,9 +189,8 @@ ...@@ -189,9 +189,8 @@
this.getList(); this.getList();
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
if(userInfo){ if(userInfo){
this.VisitMsg.ReceptionPersion = parseInt(userInfo.AccountId); this.VisitMsg.ReceptionPersion = parseInt(userInfo.Id);
} }
}, },
methods: { methods: {
//点击到访 //点击到访
...@@ -303,7 +302,7 @@ ...@@ -303,7 +302,7 @@
this.VisitMsg.School_Id = 0; this.VisitMsg.School_Id = 0;
this.VisitMsg.Date = ''; this.VisitMsg.Date = '';
this.VisitMsg.VisitTime = ''; this.VisitMsg.VisitTime = '';
this.VisitMsg.ReceptionPersion = ''; // this.VisitMsg.ReceptionPersion = '';
this.VisitMsg.Remark = ''; this.VisitMsg.Remark = '';
this.VisitMsg.Feedback = ''; this.VisitMsg.Feedback = '';
this.isShowAdd = false; this.isShowAdd = false;
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
<q-banner v-if="isShowEdit"> <q-banner v-if="isShowEdit">
<div class="row wrap" style="margin-top:10px;width:300px;"> <div class="row wrap" style="margin-top:10px;width:300px;">
<q-input filled v-model="feedBackMsg.Feedback" :rows="3" type="textarea" <q-input filled v-model="feedBackMsg.Feedback" :rows="3" type="textarea"
class="col-12 q-pb-lg" label="反馈"> class="col-12 q-pb-lg" label="请输入反馈内容">
</q-input> </q-input>
</div> </div>
<div class="row wrap" style="float:right;margin-bottom:10px;"> <div class="row wrap" style="float:right;margin-bottom:10px;">
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment