Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
W
wechatapp.shangjiadao.com
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxuelai
wechatapp.shangjiadao.com
Commits
d7f968c3
Commit
d7f968c3
authored
Nov 07, 2019
by
lvtz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
da60e5d0
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
111 additions
and
53 deletions
+111
-53
index.js
business/pages/circleeditor/index.js
+32
-0
index.js
business/pages/deskcenter/index.js
+26
-29
index.wxml
business/pages/exchangebusiness/index.wxml
+18
-18
info.js
business/pages/organizationalmgt/info.js
+1
-0
setting.js
business/pages/organizationalmgt/setting.js
+1
-0
index.js
components/btabbar/index.js
+29
-2
constants.js
constants/constants.js
+4
-4
No files found.
business/pages/circleeditor/index.js
View file @
d7f968c3
...
...
@@ -300,6 +300,8 @@ Page({
formIdCreate
({
formId
})
// this.getMemberMeInfo(this.data.sid)//班级操作后查看是否还有老师身份
let
pages
=
getCurrentPages
();
let
currPage
=
null
;
//当前页面
let
prevPage
=
null
;
//上一个页面
...
...
@@ -327,6 +329,28 @@ Page({
})
})
},
// 班级操作后查看是否还有老师身份
getMemberMeInfo
(
sid
){
let
that
=
this
;
const
user
=
LocalStorage
.
getItem
(
'user'
);
wx
.
request
({
url
:
apis
.
business
.
common
.
memberMe
,
data
:
{
school_id
:
sid
,
show_assign_class_status
:
1
},
header
:
{
'Authorization'
:
user
&&
user
.
token
,
},
success
(
res
)
{
if
(
res
.
data
.
code
==
200
)
{
LocalStorage
.
setItem
(
'memberMeHasClass'
,
res
.
data
.
data
.
assign_class_status
);
}
else
{
}
}
})
},
// 跟录音相关的操作
addVoice
(
e
)
{
const
{
show
,
src
}
=
e
.
detail
;
...
...
@@ -696,4 +720,12 @@ Page({
current
:
current
})
},
formIdCreate
(
e
)
{
const
{
formId
}
=
e
.
detail
;
formIdCreate
({
formId
})
},
})
\ No newline at end of file
business/pages/deskcenter/index.js
View file @
d7f968c3
...
...
@@ -40,40 +40,37 @@ Page({
sid
:
sid
||
0
},()
=>
{
this
.
getschoolList
();
// this.getMemberMeInfo();
})
},
// getMemberMeInfo(){
// let that = this;
// const user = LocalStorage.getItem('user');
// wx.request({
// url: apis.business.common.memberMe,
// data: {
// school_id: that.data.sid,
// show_assign_class_status: 1
// },
// header: {
// 'Authorization': user && user.token,
// },
// success(res) {
// if (res.data.code == 200) {
// LocalStorage.setItem('memberMeHasClass',res.data.data.assign_class_status);
// that.setData({
// memberChange: res.data.data.assign_class_status
// })
// }else{
// }
// }
// })
// },
onShow
:
function
()
{
this
.
getMemberMeInfo
();
app
.
watch
(
this
.
watchBack
,
this
)
this
.
getCommonwaitJob
()
this
.
getCommonwaitJob
();
},
getMemberMeInfo
(){
let
that
=
this
;
const
user
=
LocalStorage
.
getItem
(
'user'
);
wx
.
request
({
url
:
apis
.
business
.
common
.
memberMe
,
data
:
{
school_id
:
that
.
data
.
sid
,
show_assign_class_status
:
1
},
header
:
{
'Authorization'
:
user
&&
user
.
token
,
},
success
(
res
)
{
if
(
res
.
data
.
code
==
200
)
{
LocalStorage
.
setItem
(
'memberMeHasClass'
,
res
.
data
.
data
.
assign_class_status
);
that
.
setData
({
memberChange
:
res
.
data
.
data
.
assign_class_status
})
}
else
{
}
}
})
},
/**
* 生命周期函数--监听页面隐藏
*/
...
...
business/pages/exchangebusiness/index.wxml
View file @
d7f968c3
business/pages/organizationalmgt/info.js
View file @
d7f968c3
...
...
@@ -539,6 +539,7 @@ Page({
wx
.
hideLoading
();
if
(
res
.
code
==
200
)
{
// 成功的操作
if
(
this
.
data
.
sid
==
0
)
{
// 新增的操作
LocalStorage
.
setItem
(
'dakarole'
,
1
);
wx
.
reLaunch
({
url
:
`/business/pages/classmgt/index?sid=
${
res
.
data
.
id
}
&newcreate=1`
,
})
...
...
business/pages/organizationalmgt/setting.js
View file @
d7f968c3
...
...
@@ -44,6 +44,7 @@ Page({
LocalStorage
.
removeItem
(
'user'
);
LocalStorage
.
removeItem
(
'dakarole'
);
LocalStorage
.
removeItem
(
'teacher'
);
LocalStorage
.
removeItem
(
'memberMeHasClass'
);
wx
.
reLaunch
({
url
:
'/business/pages/loginregistermgt/login'
})
...
...
components/btabbar/index.js
View file @
d7f968c3
...
...
@@ -4,6 +4,8 @@ import {
import
{
LocalStorage
,
}
from
'../../utilities/index.js'
;
import
apis
from
'../../constants/api.js'
;
var
app
=
getApp
();
Component
({
properties
:
{
...
...
@@ -47,7 +49,6 @@ Component({
dakarole
:
dakarole
,
memberMeHasClass
:
memberMeHasClass
},()
=>
{
console
.
log
(
111111111
,
'this.data.dakarole'
,
this
.
data
.
dakarole
,
this
.
data
.
memberMeHasClass
)
})
},
hide
:
function
()
{
...
...
@@ -72,6 +73,10 @@ Component({
if
(
dataset
.
type
==
this
.
data
.
current
)
{
return
}
if
(
this
.
data
.
dakarole
==
1
){
this
.
getMemberMeInfo
(
this
.
data
.
sid
)
}
let
url
=
''
;
switch
(
dataset
.
type
)
{
case
'dc'
:
// 跳转数据中心
...
...
@@ -106,6 +111,28 @@ Component({
// this.setData({
// currentTab: dataset.type
// })
},
getMemberMeInfo
(
sid
){
let
that
=
this
;
const
user
=
LocalStorage
.
getItem
(
'user'
);
wx
.
request
({
url
:
apis
.
business
.
common
.
memberMe
,
data
:
{
school_id
:
sid
,
show_assign_class_status
:
1
},
header
:
{
'Authorization'
:
user
&&
user
.
token
,
},
success
(
res
)
{
if
(
res
.
data
.
code
==
200
)
{
LocalStorage
.
setItem
(
'memberMeHasClass'
,
res
.
data
.
data
.
assign_class_status
);
}
else
{
}
}
})
},
}
})
\ No newline at end of file
constants/constants.js
View file @
d7f968c3
export
default
{
imageRoot
:
'https://cdn.img.shangjiadao.cn/qingxiao/daka/images/'
,
host
:
'https://qxapi.qingxiao.online/daka'
,
host2
:
'https://wx.m.shangjiadao.cn'
,
//
host: 'https://qxapi.qingxiao.online/daka',
//
host2: 'https://wx.m.shangjiadao.cn',
storageVersion
:
'4.0'
,
imageVersion
:
'20191104'
,
//
host: 'https://clock.wp53.cn',
//
host2: 'https://test.wp53.cn',
host
:
'https://clock.wp53.cn'
,
host2
:
'https://test.wp53.cn'
,
appId
:
'wxc1246ea029394785'
,
miniProgram
:
{
clock
:
'wxdeee20e52a1fd7ee'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment