index.jsx 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. import { Component } from 'react'
  2. import Taro from '@tarojs/taro'
  3. import { connect } from 'react-redux'
  4. import {View, Input} from '@tarojs/components'
  5. import {login} from '../../utils/servers/servers';
  6. import {setOpenId} from '../../utils/servers/servers';
  7. import { add, minus, asyncAdd } from '../../actions/counter'
  8. import { AtButton,AtIcon,AtModal } from 'taro-ui'
  9. import NavBar from '../../components/common/NavBar';
  10. import 'taro-ui/dist/style/components/button.scss';
  11. import 'taro-ui/dist/style/components/loading.scss';
  12. import 'taro-ui/dist/style/components/icon.scss';
  13. import 'taro-ui/dist/style/components/modal.scss';
  14. import './index.less'
  15. const list = [
  16. ]
  17. @connect(({ counter }) => ({
  18. counter
  19. }), (dispatch) => ({
  20. add () {
  21. dispatch(add())
  22. },
  23. dec () {
  24. dispatch(minus())
  25. },
  26. asyncAdd () {
  27. dispatch(asyncAdd())
  28. }
  29. }))
  30. class Login extends Component {
  31. constructor(props) {
  32. super(props);
  33. this.state={
  34. username:'',
  35. password:'',
  36. isOpened:false,
  37. openedType:0
  38. }
  39. this.login = this.login.bind(this);
  40. this.authorization = this.authorization.bind(this);
  41. }
  42. componentDidShow () {
  43. }
  44. componentDidMount() {
  45. }
  46. authorization(){
  47. this.setState({
  48. loading:true,
  49. })
  50. let _this= this;
  51. Taro.getSetting({
  52. withSubscriptions: true,
  53. success:(res)=>{
  54. console.log(res.subscriptionsSetting,'res.subscriptionsSetting')
  55. if(res.subscriptionsSetting.mainSwitch){
  56. if(res.subscriptionsSetting['j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I'] === "reject" || res.subscriptionsSetting['pWia-KJPFwDM8ReDu_BOa9FJn31VFc81bp3yxfBmIRI'] === "reject" || res.subscriptionsSetting['vo28uzT2sLS-9ioroNyZbMSvu0mMvf6le2pDZVN891U'] === "reject"){
  57. this.setState({
  58. isOpened:true,
  59. loading:false,
  60. openedType:1
  61. })
  62. return;
  63. }
  64. Taro.requestSubscribeMessage({ //获取下发权限
  65. tmplIds: [
  66. 'pWia-KJPFwDM8ReDu_BOa9FJn31VFc81bp3yxfBmIRI',
  67. 'j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I',
  68. 'vo28uzT2sLS-9ioroNyZbMSvu0mMvf6le2pDZVN891U'
  69. ], //此处写在后台获取的模板ID,可以写多个模板ID,看自己的需求
  70. success: function (s) {
  71. _this.setState({
  72. loading:false,
  73. })
  74. _this.login();
  75. },
  76. fail: function (err) {
  77. _this.setState({
  78. loading:false,
  79. })
  80. console.log(err)
  81. }
  82. })
  83. }else{
  84. this.setState({
  85. isOpened:true,
  86. loading:false,
  87. })
  88. }
  89. },
  90. fail:()=>{
  91. this.setState({
  92. loading:false,
  93. })
  94. }
  95. })
  96. }
  97. login(){
  98. if(!this.state.username){
  99. Taro.showToast({
  100. title: '请输入用户名',
  101. icon: 'none',
  102. duration: 2000
  103. })
  104. return;
  105. }
  106. if(!this.state.password){
  107. Taro.showToast({
  108. title: '请输入密码',
  109. icon: 'none',
  110. duration: 2000
  111. })
  112. return;
  113. }
  114. this.setState({
  115. loading:true,
  116. })
  117. login({
  118. username:this.state.username,
  119. password:this.state.password
  120. }).then((msg)=>{
  121. this.setState({
  122. loading:false
  123. });
  124. if(!msg.data.openId){
  125. Taro.login({
  126. success: (res)=>{
  127. setOpenId({
  128. code:res.code,
  129. }).then(v=>{
  130. if(v.error.length === 0){
  131. Taro.switchTab({
  132. url: '/pages/examine/index',
  133. })
  134. }else{
  135. Taro.showToast({title:v.error[0].message})
  136. }
  137. })
  138. },
  139. fail:()=>{
  140. Taro.showToast({title:'系统错误,请稍后重试'})
  141. }
  142. });
  143. }else{
  144. Taro.switchTab({
  145. url: '/pages/applyDepart/index',
  146. })
  147. }
  148. }).catch((err)=>{
  149. console.log(err)
  150. this.setState({
  151. loading:false
  152. })
  153. })
  154. }
  155. render () {
  156. return (
  157. <View className='login'>
  158. <NavBar
  159. extClass='NavBar'
  160. title='科德集团'
  161. background='#0000'
  162. color='#FFF'
  163. onHome={()=>{}}
  164. />
  165. <View className='welcome'>
  166. <View className='welcomeTitle'>科德信息管理</View>
  167. <View className='welcomeTitle'>欢迎您!</View>
  168. </View>
  169. <View className='loginContent'>
  170. <View className='loginItem'>
  171. <AtIcon value='user' size='20' color='#999999'/>
  172. <Input
  173. style={{marginLeft:'15px'}}
  174. type='text'
  175. placeholder='请输入您的系统账户'
  176. value={this.state.username}
  177. onInput={(v)=>{
  178. this.setState({
  179. username: v.detail.value
  180. })
  181. }}
  182. />
  183. </View>
  184. <View className='loginItem'>
  185. <AtIcon value='lock' size='20' color='#999999'/>
  186. <Input
  187. style={{marginLeft:'15px'}}
  188. type='password'
  189. placeholder='请输入密码'
  190. value={this.state.password}
  191. onInput={(v)=>{
  192. this.setState({
  193. password: v.detail.value
  194. })
  195. }}
  196. />
  197. </View>
  198. <AtButton type='primary' circle loading={this.state.loading} onClick={this.authorization}>登录</AtButton>
  199. </View>
  200. <AtModal
  201. isOpened={this.state.isOpened}
  202. title='提醒'
  203. cancelText='取消'
  204. confirmText='确认'
  205. onClose={()=>{
  206. this.setState({
  207. isOpened:false,
  208. openedType:0,
  209. })
  210. }}
  211. onCancel={()=>{
  212. this.setState({
  213. isOpened:false,
  214. openedType:0
  215. })
  216. }}
  217. onConfirm={()=>{
  218. this.setState({
  219. isOpened:false,
  220. openedType:0
  221. },()=>{
  222. Taro.openSetting({
  223. success:(value)=> {
  224. }
  225. })
  226. })
  227. }}
  228. content={this.state.openedType === 1 ? '您存在拒绝接收的消息类型,请点击确认按钮,前往设置页->通知管理,点击不接受的消息通知类型,调整为允许' : '您关闭了接收通知权限,将不能收到订阅通知,请点击确认按钮,前往设置页->通知管理->接收通知,打开接收通知权限'}
  229. />
  230. </View>
  231. )
  232. }
  233. }
  234. export default Login