kj-tabbar.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. <template>
  2. <view id="tabber" style="position: fixed; z-index: 1000; bottom: 0">
  3. <view class="bottom u-flex u-row-between" v-if="value1 == 3">
  4. <view class="u-flex">
  5. <u-checkbox-group v-model="all" placement="column" @change="checkAll">
  6. <u-checkbox
  7. shape="circle"
  8. :name="i18n.selectall"
  9. activeColor="#F83224"
  10. >
  11. </u-checkbox>
  12. </u-checkbox-group>
  13. <text class="all">{{ i18n.selectall }}</text>
  14. </view>
  15. <view v-if="success == false" class="dle">
  16. {{ i18n.delete }}
  17. </view>
  18. <view class="u-flex" v-else>
  19. <view class="">
  20. <text class="allweight">{{ i18n.Grossweight }} </text>
  21. <text class="allweight"> {{ goodsWeight }}kg,</text>
  22. <text class="sum">{{ i18n.total }}:</text>
  23. <text class="summon">¥</text>
  24. <text class="summon" style="font-size: 36rpx">{{
  25. goodsPrice.split(".")[0]
  26. }}</text>
  27. <text class="summon">.{{ goodsPrice.split(".")[1] }}</text>
  28. </view>
  29. <view class="settle" @click="account">{{ i18n.GotoResult }}</view>
  30. </view>
  31. </view>
  32. <u-tabbar
  33. :list="list"
  34. active-color="#F83224"
  35. inactive-color="#333"
  36. :value="value1"
  37. >
  38. <u-tabbar-item
  39. :text="item.text"
  40. v-for="(item, idx) in list"
  41. @click="click1"
  42. :key="idx"
  43. >
  44. <image
  45. style="width: 40rpx; height: 40rpx"
  46. class="u-page__item__slot-icon"
  47. slot="inactive-icon"
  48. :src="item.iconPath"
  49. ></image>
  50. <image
  51. style="width: 40rpx; height: 40rpx"
  52. class="u-page__item__slot-icon"
  53. slot="active-icon"
  54. :src="item.selectedIconPath"
  55. ></image>
  56. </u-tabbar-item>
  57. </u-tabbar>
  58. </view>
  59. </template>
  60. <script>
  61. import { mapState } from "vuex";
  62. export default {
  63. name: "kj-tabbar",
  64. props: {
  65. value1: {
  66. type: Number,
  67. default: 0,
  68. },
  69. goodsWeight: {
  70. type: Number,
  71. default: 0,
  72. },
  73. goodsPrice: {
  74. type: String,
  75. default: "",
  76. },
  77. //购物车所有商品
  78. goodsList: {
  79. type: Array,
  80. default: () => {
  81. return [];
  82. },
  83. },
  84. //购物车选中的商品
  85. checkboxValue1: {
  86. type: Array,
  87. default: () => {
  88. return [];
  89. },
  90. },
  91. },
  92. computed: {
  93. i18n() {
  94. return this.$t("index");
  95. },
  96. },
  97. data() {
  98. return {
  99. success: true,
  100. list: [
  101. {
  102. iconPath: "../../static/express1.png",
  103. selectedIconPath: "../../static/express2.png",
  104. text: "跨境速递",
  105. pagePath: "pages/express/express",
  106. },
  107. {
  108. iconPath: "../../static/index1.png",
  109. selectedIconPath: "../../static/index2.png",
  110. text: "商城",
  111. pagePath: "pages/index/index",
  112. },
  113. {
  114. iconPath: "../../static/shop.png",
  115. selectedIconPath: "../../static/shop.png",
  116. text: "购",
  117. pagePath: "pages/shopping/shopping",
  118. },
  119. {
  120. iconPath: "../../static/cart1.png",
  121. selectedIconPath: "../../static/cart2.png",
  122. text: "购物车",
  123. pagePath: "pages/cart/cart",
  124. },
  125. {
  126. iconPath: "../../static/mine1.png",
  127. selectedIconPath: "../../static/mine2.png",
  128. text: "我的",
  129. pagePath: "pages/mine/mine",
  130. },
  131. ],
  132. all: [],
  133. };
  134. },
  135. created() {
  136. // if (uni.getStorageSync('tabbar')!=1) {
  137. // this.value1 = uni.getStorageSync('tabbar')
  138. // }
  139. // const dom = uni.createSelectorQuery("#tabber")
  140. },
  141. methods: {
  142. account() {
  143. console.log(this.checkboxValue1);
  144. console.log(this.goodsList);
  145. uni.navigateTo({
  146. url: "/pageA/order",
  147. });
  148. },
  149. getLabelHeight() {
  150. const dom = uni.createSelectorQuery("#tabber");
  151. console.log(dom);
  152. },
  153. // click1(e) {
  154. // this.value1 = e
  155. // console.log(e);
  156. // if (this.value1 == 4) {
  157. // uni.redirectTo({
  158. // url: '../../pages/mine/mine'
  159. // })
  160. // }
  161. // if (this.value1 == 0) {
  162. // uni.redirectTo({
  163. // url: '../../pages/express/express'
  164. // })
  165. // }
  166. // if (this.value1 == 1) {
  167. // uni.redirectTo({
  168. // url: '../../pages/index/index'
  169. // })
  170. // }
  171. // if (this.value1 == 2) {
  172. // uni.redirectTo({
  173. // url: '../../pages/shopping/shopping'
  174. // })
  175. // }
  176. // if (this.value1 == 3) {
  177. // uni.redirectTo({
  178. // url: '../../pages/cart/cart'
  179. // })
  180. // }
  181. // uni.setStorageSync('tabbar', e)
  182. // },
  183. checkAll() {
  184. this.$emit("allSelect");
  185. },
  186. //
  187. cancelAll(value) {
  188. if (value == "全选") {
  189. return this.all;
  190. } else if (value == "取消") {
  191. this.all = [];
  192. } else {
  193. this.all.push(this.i18n.selectall);
  194. }
  195. },
  196. click1(e) {
  197. if (e == 4) {
  198. uni.switchTab({
  199. url: "../../pages/mine/mine",
  200. });
  201. }
  202. if (e == 0) {
  203. uni.switchTab({
  204. url: "../../pages/express/express",
  205. });
  206. }
  207. if (e == 1) {
  208. uni.switchTab({
  209. url: "../../pages/index/index",
  210. });
  211. }
  212. if (e == 2) {
  213. uni.switchTab({
  214. url: "../../pages/shopping/shopping",
  215. });
  216. }
  217. if (e == 3) {
  218. uni.switchTab({
  219. url: "../../pages/cart/cart",
  220. });
  221. }
  222. // uni.setStorageSync('tabbar', e)
  223. },
  224. },
  225. // created() {},
  226. // computed: {
  227. // ...mapState(['config'])
  228. // },
  229. // watch: {
  230. // config: {
  231. // handler(val) {
  232. // if (val.report_switch == 1) {
  233. // this.list = [{
  234. // "iconPath": "/static/images/index.png",
  235. // "pagePath": "/pages/index/index",
  236. // "selectedIconPath": "/static/images/index1.png",
  237. // "text": "首页"
  238. // },
  239. // {
  240. // "iconPath": "/static/images/video.png",
  241. // "pagePath": "/pages/video/video",
  242. // "selectedIconPath": "/static/images/video1.png",
  243. // "text": "视频"
  244. // },
  245. // {
  246. // "iconPath": "/static/images/baobei.png",
  247. // "pagePath": "/pages/baobei/baobei",
  248. // "selectedIconPath": "/static/images/baobei1.png",
  249. // "text": "客户报备"
  250. // },
  251. // {
  252. // "iconPath": "/static/images/mine.png",
  253. // "pagePath": "/pages/mine/mine",
  254. // "selectedIconPath": "/static/images/mine1.png",
  255. // "text": "我的"
  256. // }
  257. // ]
  258. // }
  259. // },
  260. // deep: true
  261. // }
  262. // }
  263. };
  264. </script>
  265. <style lang="scss" scoped>
  266. .all {
  267. font-family: PingFangSC, PingFang SC;
  268. font-weight: 400;
  269. font-size: 22rpx;
  270. color: #444444;
  271. line-height: 32rpx;
  272. text-align: left;
  273. font-style: normal;
  274. }
  275. .bottom {
  276. width: 750rpx;
  277. height: 100rpx;
  278. background: #ffffff;
  279. padding: 0 24rpx;
  280. box-sizing: border-box;
  281. .allweight {
  282. font-family: PingFangSC, PingFang SC;
  283. font-weight: 400;
  284. font-size: 22rpx;
  285. color: #333333;
  286. line-height: 32rpx;
  287. text-align: left;
  288. font-style: normal;
  289. }
  290. .sum {
  291. font-family: PingFangSC, PingFang SC;
  292. font-weight: 400;
  293. font-size: 22rpx;
  294. color: #333333;
  295. line-height: 32rpx;
  296. text-align: left;
  297. font-style: normal;
  298. }
  299. .summon {
  300. font-family: JDZhengHT, JDZhengHT;
  301. font-weight: 400;
  302. font-size: 24rpx;
  303. color: #ff1515;
  304. line-height: 30rpx;
  305. text-align: left;
  306. font-style: normal;
  307. }
  308. .settle {
  309. width: 176rpx;
  310. height: 68rpx;
  311. background: #f83224;
  312. border-radius: 38rpx;
  313. font-family: PingFangSC, PingFang SC;
  314. font-weight: 500;
  315. font-size: 28rpx;
  316. color: #ffffff;
  317. line-height: 68rpx;
  318. text-align: center;
  319. font-style: normal;
  320. margin-left: 20rpx;
  321. }
  322. }
  323. </style>