123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- const app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- huHaoList: [],
- showUnbindModal: false,
- unbindId: null
- },
- onLoad: function (options) {
- this.getAccountList();
- },
- // 过滤户号列表,只显示deleted=0的数据
- getAccountList: function () {
- const _this = this;
- wx.showLoading({
- title: '获取中...',
- mask: true,
- });
- wx.request({
- url: app.globalData.interfaceUrls.accountList,
- method: 'GET',
- header: {
- 'content-type': 'application/json',
- 'token': app.globalData.userWxInfo.token,
- 'source': "wc",
- '!SAAS_LOGIN_TOKEN_!': app.globalData.currentAccountInfo.dsKey
- },
- success(res) {
- wx.hideLoading();
- let apiReturnData = res.data;
- // 从全局获取当前账户的信息currentAccountInfo
- const currentUsernumber = app.globalData.currentAccountInfo.usernumber;
- _this.setData({
- huHaoList: apiReturnData.data.map(item => {
- const isCurrent = item.usernumber === currentUsernumber;
- return {
- ...item,
- isCurrentUser: isCurrent
- };
- })
- }, () => {
- });
- debugger
-
- },
- fail(error) {
- wx.hideLoading();
- console.error('获取列表失败:', error);
- wx.showToast({
- title: '获取数据失败,请稍后再试',
- icon: 'none'
- });
- }
- });
- },
- // 点击解除绑定按钮
- unbindHuHao: function (e) {
- const id = e.currentTarget.dataset.id;
- this.setData({
- showUnbindModal: true,
- unbindId: id
- });
- },
- // 取消解绑
- cancelUnbind: function () {
- this.setData({
- showUnbindModal: false,
- unbindId: null
- });
- },
- // 确认解绑
- confirmUnbind: function () {
- const id = this.data.unbindId;
- this.accountUnbind(id);
- },
- // 解绑方法
- accountUnbind:function (id) {
- debugger;
- const unbindInfo = this.data.huHaoList.filter(item => {
- return item.id === id;
- })[0];
- const otherInfo=this.data.huHaoList.filter(item => {
- return item.id!= id;
- });
- const _this = this;
- wx.showLoading({
- title: '获取中...',
- mask: true,
- });
- wx.request({
- url: app.globalData.interfaceUrls.accountUnbind,
- method: 'POST',
- data: {
- account: unbindInfo.usernumber,
- deKey: unbindInfo.dsKey,
- refresh: false,
- otherDsKeys: []
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'token': app.globalData.userWxInfo.token,
- },
- success(res) {
- wx.hideLoading();
- let apiReturnData = res.data;
- if(apiReturnData.code=='200'){
- wx.showToast({
- title: '解绑成功',
- icon: 'success',
- duration: 2000
- });
- _this.setData({
- huHaoList: otherInfo,
- showUnbindModal: false,
- currentHuHao: null
- });
- if(otherInfo.length==0){
- app.globalData.currentAccountInfo=[];
- app.globalData.userWxInfo.currentDsKey="";
- wx.redirectTo({
- url: '/pages/FirstBangDing/FirstBangDing',
- })
- }else{
- app.globalData.currentAccountInfo=otherInfo[0];
- app.globalData.userWxInfo.currentDsKey=otherInfo[0].deKey;
- }
- }else{
- wx.showToast({
- title: apiReturnData.msg,
- icon: 'error',
- duration: 2000
- })
- wx.hideLoading();
- }
- },
- fail(error) {
- wx.hideLoading();
- utils.simleInfo('户号解绑失败,请稍后再试');
- }
- });
- },
- // 跳转到绑定新户号页面
- goToBindNewHuHao: function () {
- wx.navigateTo({
- url: '/pages/huhaobangding/huhaobangding'
- });
- },
- /**
- * 返回上一页
- */
- goBack: function () {
- wx.navigateBack();
- },
- switchHuHao(e) {
- debugger;
- const huHaoInfo = e.currentTarget.dataset.item;
- // 更新全局数据
- app.globalData.userWxInfo = {
- ...app.globalData.userWxInfo,
- username: huHaoInfo.username,
- usernumber: huHaoInfo.usernumber,
- address: huHaoInfo.address,
- groupName: huHaoInfo.groupName,
- currentDsKey: huHaoInfo.dsKey // 更新 currentDsKey
- };
-
- // 更新当前账户信息
- app.globalData.currentAccountInfo = huHaoInfo;
- // 将新选择的户号信息保存到本地存储
- wx.setStorageSync('currentHuHao', huHaoInfo);
- wx.showToast({
- title: '户号切换成功',
- icon: 'success',
- duration: 1500
- });
- // 设置一个标记表示需要刷新首页
- wx.setStorageSync('needRefreshHomepage', true);
-
- // 延迟跳转到首页
- setTimeout(() => {
- wx.switchTab({
- url: '/pages/homepage/homepage'
- });
- }, 1500);
- },
- // 设置默认户号
- setDefaultHuHao: function(e) {
- const id = e.currentTarget.dataset.id;
- wx.showModal({
- title: '提示',
- content: '是否将此户号设为默认户号?',
- success: (res) => {
- debugger
- if (res.confirm) {
- this.setDefaultAccount(id);
- }
- }
- });
- },
-
- // 调用设置默认户号接口
- setDefaultAccount: function(id) {
- wx.showLoading({
- title: '设置中...',
- });
- const unbindInfo = this.data.huHaoList.filter(item => {
- return item.id === id;
- })[0];
- wx.request({
- url: app.globalData.interfaceUrls.setDefaultAccount,
- method: 'POST',
- data: {
- account: unbindInfo.usernumber,
- deKey: unbindInfo.dsKey,
- refresh: false,
- otherDsKeys: []
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'token': app.globalData.userWxInfo.token,
- },
- success: (res) => {
- debugger
- if (res.data.code === "200") {
- wx.showToast({
- title: '切换成功',
- icon: 'success'
- });
- this.getAccountList();
- } else {
- wx.showToast({
- title: res.data.msg || '设置失败',
- icon: 'none'
- });
- }
- },
- fail: () => {
- wx.showToast({
- title: '网络异常',
- icon: 'none'
- });
- },
- complete: () => {
- wx.hideLoading();
- }
- });
- },
- })
|