mixin.js 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. import Vue from "vue";
  2. export default {
  3. data() {
  4. return {
  5. configAll: {
  6. disable_send_province: [],
  7. }, //公共配置
  8. login_show: false,
  9. login_content:
  10. "美美号源将获取您的头像丶昵称丶手机号等信息为您提供优质的服务.",
  11. chanId: "", //站点id
  12. mixin_code: "", //授权code
  13. mixin_type: "", //小程序区别
  14. };
  15. },
  16. onLaunch() {
  17. console.log("onLaunch");
  18. },
  19. onShow() {
  20. this.login_content = "美美号源将登录账号为您提供优质的服务.";
  21. //#ifdef MP-TOUTIAO
  22. this.mixin_type = "TOUTIAO";
  23. this.login_content =
  24. "美美号源将获取您的头像丶昵称等信息为您提供优质的服务.";
  25. tt.showShareMenu({
  26. menus: ["share", "record"],
  27. success(res) {
  28. // console.log("已成功显示转发按钮", res);
  29. },
  30. fail(err) {
  31. // console.log("showShareMenu 调用失败", err.errMsg);
  32. },
  33. complete(res) {
  34. // console.log("showShareMenu 调用完成", res);
  35. },
  36. });
  37. //#endif
  38. //#ifdef H5
  39. this.mixin_type = "H5";
  40. //#endif
  41. // console.log(this.mixin_type)
  42. // 除了H5 小程序需要登录
  43. if(this.mixin_type!='H5'){
  44. if(!uni.getStorageSync('token')){
  45. this.login_show=true;
  46. this.getcode()
  47. }else{
  48. // 有token 判断是否过期
  49. Vue.prototype.$http.userIndex()
  50. .then(res=>{
  51. if(res.statusCode==401){
  52. uni.removeStorageSync('token');
  53. uni.showToast({
  54. title: '登录失效,请重新进入小程序.',
  55. duration: 2000,
  56. icon: 'none'
  57. });
  58. const pages = getCurrentPages()
  59. // 声明一个pages使用getCurrentPages方法
  60. const curPage = pages[pages.length - 1]
  61. // 声明一个当前页面
  62. curPage.onLoad(curPage.options) // 传入参数
  63. curPage.onShow()
  64. curPage.onReady()
  65. }
  66. })
  67. }
  68. //快手分享
  69. if (this.mixin_type != "TOUTIAO") {
  70. ks.showShareMenu({
  71. success(res) {
  72. // console.log("已成功显示转发按钮", res);
  73. },
  74. });
  75. }
  76. }
  77. },
  78. onLoad(option) {
  79. // if(option.chanId){
  80. // this.chanId = option.chanId
  81. // uni.setStorageSync('chanId', this.chanId);
  82. // }
  83. // if(uni.getStorageSync('chanId')){
  84. // this.chanId = uni.getStorageSync('chanId')
  85. // }
  86. // // 公共配置
  87. this.commonConfig();
  88. },
  89. onHide() {
  90. // console.log('onHide')
  91. // uni.removeStorageSync('chanId');
  92. },
  93. onUnload() {
  94. // console.log('onUnload')
  95. // uni.removeStorageSync('chanId');
  96. },
  97. methods: {
  98. // 用于处理请求腾讯api 跨域问题
  99. jsonp(url, data) {
  100. return new Promise((resolve, reject) => {
  101. // 1.初始化url
  102. let dataString = url.indexOf("?") === -1 ? "?" : "&";
  103. let callbackName = `jsonpCB_${Date.now()}`;
  104. url += `${dataString}callback=${callbackName}`;
  105. if (data) {
  106. // 2.有请求参数,依次添加到url
  107. for (let k in data) {
  108. url += `&${k}=${data[k]}`;
  109. }
  110. }
  111. let scriptNode = document.createElement("script");
  112. scriptNode.src = url;
  113. // 3. callback
  114. window[callbackName] = (result) => {
  115. result ? resolve(result) : reject("没有返回数据");
  116. delete window[callbackName];
  117. document.body.removeChild(scriptNode);
  118. };
  119. // 4. 异常情况
  120. scriptNode.addEventListener(
  121. "error",
  122. () => {
  123. reject("接口返回数据失败");
  124. delete window[callbackName];
  125. document.body.removeChild(scriptNode);
  126. },
  127. false
  128. );
  129. // 5. 开始请求
  130. document.body.appendChild(scriptNode);
  131. });
  132. },
  133. // 快手 授权获取手机号登录
  134. decryptPhoneNumber(e) {
  135. console.log(e.detail);
  136. Vue.prototype.$http
  137. .KuaishouLogin({
  138. code: this.mixin_code,
  139. encryptedData: e.detail.encryptedData,
  140. iv: e.detail.iv,
  141. })
  142. .then((res) => {
  143. if (res.data.code == 1) {
  144. uni.setStorageSync("token", res.data.data.userinfo.token);
  145. this.login_show = false;
  146. const pages = getCurrentPages();
  147. // 声明一个pages使用getCurrentPages方法
  148. const curPage = pages[pages.length - 1];
  149. // 声明一个当前页面
  150. curPage.onLoad(curPage.options); // 传入参数
  151. curPage.onShow();
  152. } else {
  153. uni.showToast({
  154. title: res.data.msg,
  155. duration: 2000,
  156. icon: "none",
  157. });
  158. uni.removeStorageSync("token");
  159. }
  160. });
  161. },
  162. // 取消授权按钮呢
  163. login_cancel() {
  164. console.log("取消");
  165. this.login_show = false;
  166. // 抖音直接退出小程序
  167. //#ifdef MP-TOUTIAO
  168. tt.exitMiniProgram({
  169. success() {
  170. console.log("exited");
  171. },
  172. });
  173. //#endif
  174. },
  175. // 确认按钮
  176. login_confirm() {
  177. // 用户登录
  178. this.userLogin();
  179. },
  180. commonConfig() {
  181. Vue.prototype.$http.commonConfig().then((res) => {
  182. if (res.data.code == 1) {
  183. this.configAll = res.data.data;
  184. console.log(this.configAll);
  185. }
  186. });
  187. },
  188. getcode() {
  189. console.log("getcode");
  190. let this_ = this;
  191. // 获取openid
  192. uni.getProvider({
  193. service: "oauth",
  194. copes: "auth_user",
  195. success: function (res) {
  196. console.log(res.provider[0]);
  197. uni.login({
  198. provider: res.provider[0], //这里服务商名是字节跳动小程序 所以填toutiao
  199. success: function (loginRes) {
  200. console.log(1231, loginRes);
  201. this_.mixin_code = loginRes.code;
  202. },
  203. });
  204. },
  205. });
  206. },
  207. // 抖音登录
  208. userLogin() {
  209. let this_ = this;
  210. // tt.getUserProfile({
  211. // success(res) {
  212. // console.log("getUserProfile 调用成功:", res.userInfo);
  213. // },
  214. // fail(res) {
  215. // console.log("getUserProfile 调用失败", res);
  216. // },
  217. // });
  218. if (uni.getUserProfile) {
  219. console.log("getUserProfile")
  220. uni.getUserProfile({
  221. withCredentials:true,
  222. success(res) {
  223. console.log("login")
  224. console.log(res)
  225. Vue.prototype.$http.dy_login({code:this_.mixin_code,encryptedData:res.encryptedData,iv:res.iv,})
  226. .then(res=>{
  227. if(res.data.code==1){
  228. this_.login_show=false
  229. uni.setStorageSync('token', res.data.data.userinfo.token);
  230. const pages = getCurrentPages()
  231. // 声明一个pages使用getCurrentPages方法
  232. const curPage = pages[pages.length - 1]
  233. // 声明一个当前页面
  234. curPage.onLoad(curPage.options) // 传入参数
  235. curPage.onShow()
  236. }else{
  237. this_.login_show=false
  238. uni.showToast({
  239. title: res.data.msg,
  240. duration: 2000,
  241. icon: 'none'
  242. });
  243. uni.removeStorageSync('token');
  244. }
  245. })
  246. },
  247. fail(res){
  248. console.log(res)
  249. }
  250. })
  251. } else{
  252. console.log('getUserInfo')
  253. uni.getUserInfo({
  254. withCredentials:true,
  255. success(res) {
  256. console.log("login")
  257. console.log(res)
  258. Vue.prototype.$http.dy_login({code:this_.mixin_code,encryptedData:res.encryptedData,iv:res.iv,})
  259. .then(res=>{
  260. if(res.data.code==1){
  261. this_.login_show=false
  262. uni.setStorageSync('token', res.data.data.userinfo.token);
  263. const pages = getCurrentPages()
  264. // 声明一个pages使用getCurrentPages方法
  265. const curPage = pages[pages.length - 1]
  266. // 声明一个当前页面
  267. curPage.onLoad(curPage.options) // 传入参数
  268. curPage.onShow()
  269. }else{
  270. this_.login_show=false
  271. uni.showToast({
  272. title: res.data.msg,
  273. duration: 2000,
  274. icon: 'none'
  275. });
  276. uni.removeStorageSync('token');
  277. }
  278. })
  279. },
  280. fail(res){
  281. console.log(res)
  282. uni.showToast({
  283. title: "请点击右上角更多中选择设置授权头像和昵称",
  284. duration: 2000,
  285. icon: 'none'
  286. });
  287. uni.removeStorageSync('token');
  288. }
  289. })
  290. }
  291. },
  292. // 用于处理请求腾讯api 跨域问题
  293. jsonp(url, data) {
  294. return new Promise((resolve, reject) => {
  295. // 1.初始化url
  296. let dataString = url.indexOf("?") === -1 ? "?" : "&";
  297. let callbackName = `jsonpCB_${Date.now()}`;
  298. url += `${dataString}callback=${callbackName}`;
  299. if (data) {
  300. // 2.有请求参数,依次添加到url
  301. for (let k in data) {
  302. url += `&${k}=${data[k]}`;
  303. }
  304. }
  305. let scriptNode = document.createElement("script");
  306. scriptNode.src = url;
  307. // 3. callback
  308. window[callbackName] = (result) => {
  309. result ? resolve(result) : reject("没有返回数据");
  310. delete window[callbackName];
  311. document.body.removeChild(scriptNode);
  312. };
  313. // 4. 异常情况
  314. scriptNode.addEventListener(
  315. "error",
  316. () => {
  317. reject("接口返回数据失败");
  318. delete window[callbackName];
  319. document.body.removeChild(scriptNode);
  320. },
  321. false
  322. );
  323. // 5. 开始请求
  324. document.body.appendChild(scriptNode);
  325. });
  326. },
  327. },
  328. };