ソースを参照

Merge branch 'master' of http://116.255.223.226:3000/zhangzl/nsgk_wechat

 Conflicts:
	env/env.js
master
pangdongxu 3年前
コミット
e43eb825bc
5個のファイルの変更30行の追加16行の削除
  1. +19
    -11
      pages/apply/approval/approval.js
  2. +7
    -3
      pages/index/index.js
  3. +1
    -1
      pages/index/index.wxml
  4. +2
    -1
      pages/index/index.wxss
  5. +1
    -0
      pages/user/login/login.js

+ 19
- 11
pages/apply/approval/approval.js ファイルの表示

@@ -44,6 +44,7 @@ Page({
],
//事务总表对象
item:{},
detpId:187,
itemId:13,
active:0,
result:[],
@@ -62,8 +63,8 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad(options) {
this.setData({itemId:options.id});
console.log(options)
this.setData({itemId:options.id,deptId:options.deptId});
console.log(options);
//this.getApprovalItemList();
this.groupList();
this.townList();
@@ -87,7 +88,8 @@ Page({
let d = {
templateId : _this.data.item.templateId,
orderByColumn:"id",
isAsc:"asc"
isAsc:"asc",
method:"GET"
}
UTIL.httpRequest(API.URL_GET_TEMPLATEDETAIL, d, {
success: (r) => {
@@ -168,7 +170,8 @@ Page({
let data={
dataType:0,
pageNum:1,
pageSize:50
pageSize:50,
method:"GET"
}
UTIL.httpRequest(API.URL_GET_TEMPLATELIST, data, {
success: (res) => {
@@ -178,7 +181,8 @@ Page({
let d = {
templateId : res.rows[0].id,
orderByColumn:"id",
isAsc:"asc"
isAsc:"asc",
method:"GET"
}
UTIL.httpRequest(API.URL_GET_TEMPLATEDETAIL, d, {
success: (r) => {
@@ -201,7 +205,8 @@ Page({
let data = {
templateId : e.currentTarget.dataset.id,
orderByColumn:"id",
isAsc:"asc"
isAsc:"asc",
method:"GET"
}
UTIL.httpRequest(API.URL_GET_TEMPLATEDETAIL, data, {
success: (res) => {
@@ -241,7 +246,8 @@ Page({
success: function (response) {
let d = {
deptId:response.data.data.deptId,
deptLevel:3
deptLevel:3,
method:"GET"
}
UTIL.httpRequest(API.URL_GET_USERLIST,d,{
success: (res) => {
@@ -256,8 +262,9 @@ Page({
},
groupList:function(){
let data = {
deptId : 187,
deptLevel:1
deptId : this.data.deptId,
deptLevel:1,
method:"GET"
}
UTIL.httpRequest(API.URL_GET_USERLIST,data ,{
success: (res) => {
@@ -270,8 +277,9 @@ Page({
},
villageList:function(){
let data = {
deptId : 187,
deptLevel:2
deptId : this.data.deptId,
deptLevel:2,
method:"GET"
}
UTIL.httpRequest(API.URL_GET_USERLIST,data ,{
success: (res) => {


+ 7
- 3
pages/index/index.js ファイルの表示

@@ -275,6 +275,7 @@ Page({
success: (res) => {
if (res.code == API.SUCCESS_CODE) {
this.setData({userInfoObj:res.user})
console.log(res.user);
this.setData({region:res.user.deptName})
this.setData({item:JSON.stringify(res.user)})
this.getBookList()
@@ -306,7 +307,8 @@ Page({
/* 获取账套*/
getBookList:function(){
let d = {
loginDeptID : this.data.userInfoObj.loginDeptId
loginDeptID : this.data.userInfoObj.loginDeptId,
method:'GET'
}
UTIL.httpRequest(API.URL_GET_BOOKLISTBYDEPTID,d, {
success: (res) => {
@@ -332,7 +334,8 @@ Page({
bookName:this.data.bookList[e.detail.value].bookName
})
let data={
loginBookId:this.data.bookList[e.detail.value].id
loginBookId:this.data.bookList[e.detail.value].id,
method:'GET'
}
let _this = this
UTIL.httpRequest(API.URL_GET_CHANGEBOOK,data, {
@@ -454,7 +457,8 @@ Page({
bookId:""
}, () => {
let data={
loginDeptID : this.getRegionId('areas')
loginDeptID : this.getRegionId('areas'),
method:'GET'
}
let _this = this
UTIL.httpRequest(API.URL_GET_CHANGEDEPT,data, {


+ 1
- 1
pages/index/index.wxml ファイルの表示

@@ -11,7 +11,7 @@
<text class="name">{{userInfoObj.nickName}}</text>
<view class="jobs">
<view class="icon" style="background:url('https://dazu.nongshen.net/api/profile/wechat/header_job.png') no-repeat; background-size: 100% 100%;"></view>
{{userInfoObj.remark}}
{{userInfoObj.roles.length>0?userInfoObj.roles[0].roleName:""}}
</view>
</view>
<view class="task_wrap ">


+ 2
- 1
pages/index/index.wxss ファイルの表示

@@ -39,7 +39,7 @@
}
.information_header .name_wrap .jobs{
margin-left: 18rpx;
width: 155rpx;
/* width: 155rpx; */
height: 40rpx;
background: #5bae75;
border:2rpx solid #2c8e68;
@@ -49,6 +49,7 @@
font-size: 28rpx;
justify-content: center;
align-items: center;
padding: 0 20rpx;
}
.information_header .name_wrap .jobs .icon{
width: 26rpx;


+ 1
- 0
pages/user/login/login.js ファイルの表示

@@ -134,6 +134,7 @@ Page({
openId:STORAGE.getOpenId(),
phonenumber:phone
}
console.log(STORAGE.getOpenId());
UTIL.httpRequestNoneDetal(API.URL_POST_USERBAND, sendData,"POST",{
success: (res) => {
if (res.code == API.SUCCESS_CODE) {


読み込み中…
キャンセル
保存