Commit c4e36ac6 authored by 罗超's avatar 罗超
parents 9925ab10 02b8b5b0
......@@ -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 @@
<q-banner v-if="isShowEdit">
<div class="row wrap" style="margin-top:10px;width:300px;">
<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>
</div>
<div class="row wrap" style="margin-top:10px;width:300px;">
......@@ -175,7 +175,7 @@
Id: 0, //编号
IsVisit: 0, //到访状态(1-已到访,0-未到访)
Feedback: '' //反馈
}
},
}
},
created() {
......@@ -189,9 +189,8 @@
this.getList();
let userInfo = this.getLocalStorage();
if(userInfo){
this.VisitMsg.ReceptionPersion = parseInt(userInfo.AccountId);
this.VisitMsg.ReceptionPersion = parseInt(userInfo.Id);
}
},
methods: {
//点击到访
......@@ -303,7 +302,7 @@
this.VisitMsg.School_Id = 0;
this.VisitMsg.Date = '';
this.VisitMsg.VisitTime = '';
this.VisitMsg.ReceptionPersion = '';
// this.VisitMsg.ReceptionPersion = '';
this.VisitMsg.Remark = '';
this.VisitMsg.Feedback = '';
this.isShowAdd = false;
......
......@@ -56,7 +56,7 @@
<q-banner v-if="isShowEdit">
<div class="row wrap" style="margin-top:10px;width:300px;">
<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>
</div>
<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