selectShop.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <!-- pages/selectShop/selectShop.wxml -->
  3. <view class="container">
  4. <view class="selected-shop-nav">
  5. <view class="selected-item" @tap="bindChooseParentShop" :data-parentid="item.shop_id" :data-index="index" v-for="(item, index) in selectedShopList" :key="index">
  6. {{ item.shop_name }} /
  7. </view>
  8. </view>
  9. <view class="shop-list">
  10. <view class="list-item" v-for="(item, index) in shopChildrenList" :key="index">
  11. <view class="left" @tap="bindNextChildren" :data-parentid="item.shop_id" :data-shopname="item.shop_name">{{ item.shop_name }}</view>
  12. <view class="right"><text class="selected-btn" @tap="bindSelected" :data-parentid="item.shop_id" :data-shopname="item.shop_name">选择</text></view>
  13. </view>
  14. <view v-if="shopChildrenList.length == 0" class="no-data">暂无数据</view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. // pages/selectShop/selectShop.js
  20. var config = require('../../common/config.js');
  21. var http = require('../../common/http.js');
  22. var common = require('../../common/common.js');
  23. var storage = require('../../common/storage.js');
  24. export default {
  25. data() {
  26. return {
  27. parent_id: 0,
  28. shopChildrenList: [],
  29. selectedShopList: []
  30. };
  31. }
  32. /**
  33. * 生命周期函数--监听页面加载
  34. */,
  35. onLoad: function (options) {
  36. const myInfo = storage.getUserInfo();
  37. const parent_id = myInfo.userInfo.user_id;
  38. //this.loadFirstChildren(parent_id)
  39. this.setData({
  40. selectedShopList: [
  41. {
  42. shop_id: parent_id,
  43. shop_name: '.'
  44. }
  45. ],
  46. shopChildrenList: [
  47. {
  48. shop_id: parent_id,
  49. shop_name: myInfo.name
  50. }
  51. ]
  52. });
  53. },
  54. methods: {
  55. loadFirstChildren: function (parent_id) {
  56. const that = this;
  57. const pData = {
  58. parent_id: parent_id
  59. };
  60. http.postApi(config.API_USER_FIRST_CHILDREN, pData, function (resp) {
  61. if (resp.data.code === 200) {
  62. let _shopList = resp.data.data.children;
  63. that.setData({
  64. shopChildrenList: _shopList
  65. });
  66. } else {
  67. common.simpleToast(resp.data.msg);
  68. }
  69. });
  70. },
  71. bindNextChildren: function (e) {
  72. const parent_id = e.currentTarget.dataset.parentid;
  73. const shop_name = e.currentTarget.dataset.shopname;
  74. this.loadFirstChildren(parent_id);
  75. const selectedShopList = this.selectedShopList;
  76. selectedShopList.push({
  77. shop_id: parent_id,
  78. shop_name: shop_name
  79. });
  80. this.setData({
  81. selectedShopList: selectedShopList
  82. });
  83. },
  84. bindChooseParentShop: function (e) {
  85. const parent_id = e.currentTarget.dataset.parentid;
  86. const index = e.currentTarget.dataset.index;
  87. if (index === 0) {
  88. const myInfo = storage.getUserInfo();
  89. const parent_id = myInfo.userInfo.user_id;
  90. this.setData({
  91. selectedShopList: [
  92. {
  93. shop_id: parent_id,
  94. shop_name: '.'
  95. }
  96. ],
  97. shopChildrenList: [
  98. {
  99. shop_id: parent_id,
  100. shop_name: myInfo.name
  101. }
  102. ]
  103. });
  104. return;
  105. }
  106. this.loadFirstChildren(parent_id);
  107. const selectedShopList = this.selectedShopList.slice(0, index + 1);
  108. this.setData({
  109. selectedShopList: selectedShopList
  110. });
  111. },
  112. bindSelected: function (e) {
  113. console.log(e);
  114. const parent_id = e.currentTarget.dataset.parentid;
  115. const shop_name = e.currentTarget.dataset.shopname;
  116. storage.setSelectedShop({
  117. shop_id: parent_id,
  118. shop_name: shop_name
  119. });
  120. uni.navigateBack({
  121. delta: 1
  122. });
  123. }
  124. }
  125. };
  126. </script>
  127. <style>
  128. @import './selectShop.css';
  129. </style>