mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-24 05:46:04 +08:00
88 lines
1.5 KiB
JavaScript
88 lines
1.5 KiB
JavaScript
import {
|
|
requestNoAuth,request
|
|
} from '../../lib/java110/java110Request.js';
|
|
import
|
|
url
|
|
from '../../constant/url.js';
|
|
|
|
|
|
/**
|
|
* 查询业主小区
|
|
* @param {Object} dataObj 对象
|
|
*/
|
|
export function getExamineStaffs(dataObj) {
|
|
return new Promise(
|
|
(resolve, reject) => {
|
|
request({
|
|
url: url.listExamineStaff,
|
|
method: "GET",
|
|
data: dataObj,
|
|
//动态数据
|
|
success: function(res) {
|
|
if (res.statusCode == 200) {
|
|
let _data = res.data.data;
|
|
resolve(_data);
|
|
}
|
|
},
|
|
fail: function(e) {
|
|
reject(e);
|
|
}
|
|
});
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 物业人员考评
|
|
* @param {Object} dataObj
|
|
*/
|
|
export function saveExamineStaffValue(dataObj){
|
|
return new Promise((resolve, reject) => {
|
|
request({
|
|
url: url.saveExamineStaffValue,
|
|
method: "POST",
|
|
data: dataObj,
|
|
success: function(res) {
|
|
let data = res.data;
|
|
if (data.code == 0) {
|
|
resolve();
|
|
} else {
|
|
uni.showToast({
|
|
title: data.msg
|
|
})
|
|
}
|
|
},
|
|
fail: function(res) {
|
|
reject(res);
|
|
}
|
|
});
|
|
})
|
|
}
|
|
|
|
|
|
/**
|
|
* 查询用工考核
|
|
* @param {Object} dataObj 对象
|
|
*/
|
|
export function getExamineStaffValue(dataObj) {
|
|
return new Promise(
|
|
(resolve, reject) => {
|
|
request({
|
|
url: url.listExamineStaffValue,
|
|
method: "GET",
|
|
data: dataObj,
|
|
//动态数据
|
|
success: function(res) {
|
|
if (res.data.code == 0) {
|
|
let _data = res.data.data;
|
|
resolve(_data);
|
|
return;
|
|
}
|
|
reject(res.data.msg);
|
|
},
|
|
fail: function(e) {
|
|
reject(e);
|
|
}
|
|
});
|
|
})
|
|
}
|