commodityManage.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <template>
  2. <view>
  3. <!-- 顶部搜索加tab栏部分,点击批量打折是隐藏该部分 -->
  4. <view class="top-tab-search" v-if="!batch">
  5. <view class="search">
  6. <u--input placeholder="搜索商品名称" shape="circle" prefixIcon="search"
  7. prefixIconStyle="font-size: 22px;color: #909399"></u--input>
  8. <view class="screen" @click="openPopup">
  9. 筛选
  10. <image class="screen-icon" src="../../static/mine/334.png" mode=""></image>
  11. </view>
  12. </view>
  13. <view class="tab">
  14. <view class="top-tab">
  15. <view :class="{commodity:follow==1}" class="tab" @click="tabSwitch(1)">
  16. 全部
  17. </view>
  18. <view :class="{commodity:follow==2}" class="tab" @click="tabSwitch(2)">
  19. 已上架
  20. </view>
  21. <view :class="{commodity:follow==3}" class="tab" @click="tabSwitch(3)">
  22. 已下架
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. <!-- 顶部搜索加tab栏部分,点击批量打折是隐藏该部分 -->
  28. <!-- 内容 -->
  29. <view class="page">
  30. <view class="list">
  31. <view class="radio" v-if="batch">
  32. <radio @click="value=!value" :checked='value' style="transform:scale(0.7)" color="#f83224"
  33. activeBackgroundColor="#f83224" backgroundColor="#f83224"></radio>
  34. </view>
  35. <GoodsInformation :batch="batch" productAndCommodity="commodity"
  36. @openDiscountsPopup="openDiscountsPopup" :status="status" @toDetail="toDetail" />
  37. </view>
  38. </view>
  39. <view class="footer" v-if="!batch">
  40. <view class="batch" @click="batchDiscount">
  41. 批量打折
  42. </view>
  43. <button class="btn-1">上架平台商品</button>
  44. </view>
  45. <view class="footer" v-else>
  46. <view class="batch" @click="batchDiscount">
  47. <radio @click="value=!value" :checked='value' style="transform:scale(0.7)" color="#f83224"
  48. activeBackgroundColor="#f83224" backgroundColor="#f83224"></radio>
  49. 全选
  50. </view>
  51. <button class="btn" @click="wantDiscount">我要打折</button>
  52. </view>
  53. <!-- 筛选弹窗 -->
  54. <ScreenPopup :show="show" @close="close" :follow='follow' />
  55. <!-- 筛选弹窗 -->
  56. <!-- 打折弹窗 -->
  57. <DiscountsPopup :show="discountsShow" :goodsInformation="goodsInformation" @close="closeDiscountsPopup" />
  58. <!-- 打折弹窗 -->
  59. <!-- 批量打折 -->
  60. <BatchDiscountPopup :show="batchPopup" @close = 'closeDiscountsPopup' />
  61. </view>
  62. </template>
  63. <script>
  64. import GoodsInformation from '../components/goodsInformation.vue'
  65. import ScreenPopup from './component/screenPopup.vue'
  66. import DiscountsPopup from './component/discountsPopup.vue'
  67. import BatchDiscountPopup from './component/batchDiscountPopup.vue'
  68. export default {
  69. components: {
  70. GoodsInformation,
  71. ScreenPopup,
  72. DiscountsPopup,
  73. BatchDiscountPopup
  74. },
  75. data() {
  76. return {
  77. follow: 1,
  78. status: "1",
  79. show: false,
  80. discountsShow: false,
  81. goodsInformation: {},
  82. batch: false,
  83. value: false,
  84. batchPopup:false
  85. }
  86. },
  87. computed: {
  88. i18n() {
  89. return this.$t("index")
  90. },
  91. },
  92. methods: {
  93. //切换横向tab栏
  94. tabSwitch(num) {
  95. this.follow = num
  96. },
  97. //打开筛选弹窗
  98. openPopup() {
  99. this.show = true
  100. },
  101. //关闭筛选弹窗
  102. close(num) {
  103. this.show = false
  104. this.follow = num
  105. },
  106. //批量打折
  107. batchDiscount() {
  108. this.batch = !this.batch;
  109. uni.setNavigationBarTitle({
  110. title: "批量打折"
  111. })
  112. },
  113. //打开我要打折窗口
  114. wantDiscount(){
  115. this.batchPopup = true
  116. },
  117. //关闭折扣弹窗
  118. closeDiscountsPopup() {
  119. this.discountsShow = false
  120. this.batchPopup = false
  121. },
  122. //打开折扣弹窗
  123. openDiscountsPopup(value) {
  124. this.goodsInformation = value
  125. this.discountsShow = true
  126. },
  127. toDetail() {
  128. uni.navigateTo({
  129. url: "/pageD/productDetails/productDetails"
  130. })
  131. },
  132. },
  133. mounted() {
  134. uni.setNavigationBarTitle({
  135. title: "商品管理"
  136. })
  137. }
  138. }
  139. </script>
  140. <style lang="scss" scoped>
  141. .top-tab-search {
  142. background-color: #fff;
  143. padding: 10rpx 24rpx;
  144. z-index: 20174;
  145. .search {
  146. display: flex;
  147. align-items: center;
  148. .screen {
  149. display: flex;
  150. align-items: center;
  151. font-size: 26rpx;
  152. color: #333;
  153. margin-left: 20rpx;
  154. .screen-icon {
  155. width: 24rpx;
  156. height: 24rpx;
  157. margin-left: 5rpx;
  158. }
  159. }
  160. }
  161. .top-tab {
  162. margin-top: 10rpx;
  163. padding: 0 20rpx;
  164. display: flex;
  165. justify-content: space-between;
  166. .tab {
  167. font-size: 26rpx;
  168. color: rgba(34, 34, 34, .8);
  169. flex-shrink: 0;
  170. height: 44rpx;
  171. display: flex;
  172. align-items: flex-end;
  173. padding-bottom: 12rpx;
  174. }
  175. .commodity {
  176. position: relative;
  177. font-weight: 600;
  178. }
  179. .commodity::before {
  180. content: '';
  181. display: block;
  182. height: 4rpx;
  183. width: 50%;
  184. background: #f83224;
  185. position: absolute;
  186. bottom: -10rpx;
  187. opacity: 0.8;
  188. left: 50%;
  189. transform: translate(-50%, 50%);
  190. }
  191. }
  192. }
  193. .page {
  194. padding: 20rpx 24rpx;
  195. background-color: #fff;
  196. height: 85vh;
  197. .list {
  198. display: flex;
  199. flex-wrap: nowrap;
  200. align-items: center;
  201. .radio {
  202. margin-right: 20rpx;
  203. }
  204. }
  205. }
  206. .footer {
  207. position: fixed;
  208. display: flex;
  209. align-items: center;
  210. justify-content: space-between;
  211. bottom: 0;
  212. background-color: #fff;
  213. width: 93%;
  214. padding: 16rpx 24rpx 70rpx 24rpx;
  215. .batch {
  216. color: #333;
  217. font-size: 28rpx;
  218. margin-right: 50rpx;
  219. display: flex;
  220. align-items: center;
  221. }
  222. .btn-1 {
  223. width: 236rpx;
  224. height: 76rpx;
  225. border-radius: 52rpx;
  226. background-color: #fff;
  227. color: #f83224;
  228. border: 2rpx solid #f83224;
  229. padding: 0;
  230. margin: 0;
  231. font-size: 30rpx;
  232. }
  233. .btn {
  234. width: 236rpx;
  235. height: 76rpx;
  236. border-radius: 52rpx;
  237. background-color: #f83224;
  238. color: #fff;
  239. border: none;
  240. padding: 0;
  241. margin: 0;
  242. font-size: 30rpx;
  243. }
  244. }
  245. </style>