|
@@ -20,6 +20,7 @@ Page({
|
|
|
unSetTaskModal:false,//未设置任务提醒
|
|
|
finishSetModal:false,//完成设置指引
|
|
|
noSetSerStan:false,//未设置服务标准
|
|
|
+ noReportShow:false,//没有月报
|
|
|
|
|
|
unSetBtn: [
|
|
|
{ text: '现在设置', extClass: 'buttonBold' },
|
|
@@ -62,6 +63,7 @@ Page({
|
|
|
console.log(query);
|
|
|
this.initCustomerInfo();
|
|
|
this.getEmployerNotice();
|
|
|
+ this.selectMonthlyReport();
|
|
|
},
|
|
|
// 获取雇佣关系详情
|
|
|
initCustomerInfo(){
|
|
@@ -337,6 +339,10 @@ Page({
|
|
|
// 点击开启体验按钮
|
|
|
onFinishButtonClick(e){
|
|
|
console.log(e.target);
|
|
|
+ // if(this.data.finishTitle==this.data.finishModalCase3[0]){
|
|
|
+ // // 复制关联码
|
|
|
+ // this.copyCode();
|
|
|
+ // }
|
|
|
if(e.target.dataset.index==0){
|
|
|
this.setData({
|
|
|
finishSetModal: false,
|
|
@@ -487,9 +493,41 @@ Page({
|
|
|
console.log(e);
|
|
|
}
|
|
|
|
|
|
- }
|
|
|
+ },
|
|
|
|
|
|
+ // 获取月报
|
|
|
|
|
|
+ selectMonthlyReport(){
|
|
|
+
|
|
|
+let params={
|
|
|
+ "employRelationNo":app.globalData.employRelationNo,
|
|
|
+ "reportType": '1',
|
|
|
+ }
|
|
|
+ request.httpServicePost(apiUrl.selectMonthlyReportPath,params).then(data=>{
|
|
|
+ console.log('月报信息response');
|
|
|
+ console.log(data);
|
|
|
+ let noReport=(data.length==0)
|
|
|
+ this.setData({
|
|
|
+ noReportShow: noReport,
|
|
|
+ });
|
|
|
+ if(!noReport){
|
|
|
+ app.globalData.reportList=data;
|
|
|
+ }
|
|
|
+
|
|
|
+ }).catch(e=>{
|
|
|
+ console.log(e);
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
+switchReportList(){
|
|
|
+ if(!this.data.noReportShow){
|
|
|
+ my.navigateTo({
|
|
|
+ url: '../reportList/reportList'
|
|
|
+ });
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
|
|
|
|