set-tab.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <template>
  2. <div class="page" :class="{ 'page--iphoneX': iphoneX }">
  3. <ul class="classify-list">
  4. <li class="item" v-for="(item, index) of dataList" :key="index">
  5. <div class="con">
  6. <div class="name">{{ item.title }}</div>
  7. </div>
  8. <div class="tool">
  9. <div v-if="index!=0" class="setting" @click="move(item,true,index)">上移</div>
  10. <div v-if="index!=dataList.length-1" class="setting" @click="move(item,false,index)">下移</div>
  11. </div>
  12. </li>
  13. </ul>
  14. </div>
  15. </template>
  16. <script>
  17. import MyImage from "../../../components/image/index";
  18. export default {
  19. name: "",
  20. components: { MyImage },
  21. // 数据
  22. data() {
  23. return {
  24. storeConfig:{},
  25. dataList: [
  26. { name: "shop", index: 0, title: "店铺" },
  27. { name: "yx", index: 1, title: "厂商直邮" },
  28. ],
  29. };
  30. },
  31. onLoad() {},
  32. async onShow() {
  33. this.getStoreConfig();
  34. },
  35. // 函数
  36. methods: {
  37. getStoreConfig() {
  38. this.api
  39. .get(
  40. "/Shop/gettab",
  41. { pass: true }
  42. )
  43. .then((infoRes) => {
  44. this.dataList = JSON.parse(infoRes.data);
  45. });
  46. },
  47. setData(data) {
  48. for (let item of data) {
  49. if (item.name === "shop") {
  50. item.title = "店铺商品";
  51. }
  52. if (item.name === "yx") {
  53. item.title = "厂商直邮";
  54. }
  55. }
  56. data.sort((x, y) => x.index - y.index);
  57. return data;
  58. },
  59. // 移动 up 上移或下移,true-上移,false-下移
  60. move(val, up,index) {
  61. if(up){
  62. let upItem = this.dataList[index-1];
  63. let item = this.dataList[index];
  64. let itemIndex = item.index;
  65. item.index = upItem.index;
  66. upItem.index = itemIndex;
  67. }else{
  68. let downItem = this.dataList[index+1];
  69. let item = this.dataList[index];
  70. let itemIndex = item.index;
  71. item.index = downItem.index;
  72. downItem.index = itemIndex;
  73. }
  74. this.dataList.sort((x, y) => x.index - y.index);
  75. this.dataList = [...this.dataList];
  76. this.api
  77. .get("/Shop/Settab", {
  78. tab: JSON.stringify(this.dataList),
  79. },{pass:true})
  80. .then((res) => {
  81. if (res.success) {
  82. this.fn.showToast("移动成功");
  83. } else {
  84. this.fn.showModal({
  85. title: "移动失败",
  86. content: res.message,
  87. showCancel: false,
  88. });
  89. }
  90. });
  91. },
  92. },
  93. // 数据计算
  94. computed: {
  95. user() {
  96. return this.$store.state.user.user;
  97. },
  98. },
  99. // 数据监听
  100. watch: {},
  101. };
  102. </script>
  103. <style lang="scss" scoped>
  104. .page {
  105. padding-bottom: px(180);
  106. min-height: 100vh;
  107. background-color: #fff;
  108. }
  109. .add-classify {
  110. position: fixed;
  111. bottom: 0;
  112. left: 0;
  113. right: 0;
  114. height: px(150);
  115. z-index: 100;
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. font-size: px(44);
  120. color: #fff;
  121. background-color: rgb(0, 188, 38);
  122. }
  123. .page--iphoneX {
  124. .add-classify {
  125. padding-bottom: px(30);
  126. }
  127. }
  128. .classify-list {
  129. .item {
  130. display: flex;
  131. padding: px(30) px(35);
  132. justify-content: space-between;
  133. align-items: center;
  134. border-top: 1px solid #f1f1f1;
  135. .tool {
  136. flex-shrink: 0;
  137. display: flex;
  138. align-items: center;
  139. justify-content: center;
  140. }
  141. .setting {
  142. width: px(140);
  143. height: px(80);
  144. border: 1px solid #b7b7b7;
  145. border-radius: px(8);
  146. color: #666;
  147. font-size: px(40);
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. & ~ .setting {
  152. margin-left: px(30);
  153. }
  154. }
  155. .con {
  156. width: 50%;
  157. padding-right: px(44);
  158. position: relative;
  159. }
  160. .name {
  161. font-size: px(44);
  162. color: #333;
  163. }
  164. .des {
  165. font-size: px(36);
  166. margin-top: px(20);
  167. color: #666;
  168. @include omit(100%);
  169. }
  170. .arrow {
  171. position: absolute;
  172. right: 0;
  173. top: 50%;
  174. z-index: 10;
  175. transform: translate(0, -50%) rotate(180deg);
  176. width: px(44);
  177. height: px(44);
  178. transition: all 0.3s;
  179. /deep/ img {
  180. height: px(44);
  181. width: px(44);
  182. }
  183. &.up {
  184. transform: translate(0, -50%) rotate(90deg);
  185. }
  186. }
  187. .status {
  188. width: px(120);
  189. height: px(44);
  190. background-color: #e7faf0;
  191. border-radius: px(8);
  192. border: 1px solid #d0f5e0;
  193. font-size: px(32);
  194. color: #13ce66;
  195. padding: px(6) px(3);
  196. margin-right: px(30);
  197. display: flex;
  198. align-items: center;
  199. justify-content: center;
  200. &.up {
  201. background-color: #ffeded;
  202. border-color: #ffdbdb;
  203. color: #ff4949;
  204. }
  205. }
  206. }
  207. .item-child {
  208. padding-left: px(60);
  209. background-color: #efefef;
  210. }
  211. }
  212. </style>