commodityManage.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. <template>
  2. <view>
  3. <!-- 顶部搜索加tab栏部分,点击批量打折是隐藏该部分 -->
  4. <view class="top-tab-search" v-if="!batch">
  5. <view class="search">
  6. <u--input
  7. v-model="keywords"
  8. placeholder="搜索商品名称"
  9. shape="circle"
  10. prefixIcon="search"
  11. prefixIconStyle="font-size: 22px;color: #909399"
  12. @change="search"
  13. ></u--input>
  14. <view class="screen" @click="openPopup">
  15. 筛选
  16. <image
  17. class="screen-icon"
  18. src="../../static/mine/334.png"
  19. mode=""
  20. ></image>
  21. </view>
  22. </view>
  23. <view class="tab">
  24. <view class="top-tab">
  25. <view
  26. :class="{ commodity: follow == '' }"
  27. class="tab"
  28. @click="tabSwitch('')"
  29. >
  30. 全部
  31. </view>
  32. <view
  33. :class="{ commodity: follow == 'normal' }"
  34. class="tab"
  35. @click="tabSwitch('normal')"
  36. >
  37. 已上架
  38. </view>
  39. <view
  40. :class="{ commodity: follow == 'down' }"
  41. class="tab"
  42. @click="tabSwitch('down')"
  43. >
  44. 已下架
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- 顶部搜索加tab栏部分,点击批量打折是隐藏该部分 -->
  50. <!-- 内容 -->
  51. <view class="page">
  52. <u-checkbox-group
  53. v-model="selectedGoods"
  54. placement="column"
  55. @change="checkboxChange"
  56. >
  57. <view v-for="item in goodsList" :key="item.id">
  58. <view class="list">
  59. <view class="radio" v-if="batch">
  60. <u-checkbox
  61. :name="item.id"
  62. shape="circle"
  63. color="#f83224"
  64. activeColor="#f83224"
  65. :disabled="item.goods.status == 'down'"
  66. >
  67. </u-checkbox>
  68. </view>
  69. <GoodsInformation
  70. :batch="batch"
  71. productAndCommodity="commodity"
  72. @openDiscountsPopup="openDiscountsPopup"
  73. :status="status"
  74. :itemInfo="item"
  75. @toDetail="toDetail"
  76. />
  77. </view>
  78. </view>
  79. </u-checkbox-group>
  80. </view>
  81. <view class="footer" v-if="!batch">
  82. <view class="batch" @click="batchDiscount"> 批量打折 </view>
  83. <!-- <button class="btn-1">上架平台商品</button> -->
  84. </view>
  85. <view class="footer" v-else>
  86. <view class="batch" @click="allSelect">
  87. <radio
  88. :checked="value"
  89. style="transform: scale(0.7)"
  90. color="#f83224"
  91. activeBackgroundColor="#f83224"
  92. ></radio>
  93. 全选
  94. </view>
  95. <view
  96. style="
  97. font-size: 26rpx;
  98. margin-left: 20rpx;
  99. color: rgba(54, 54, 54, 0.5);
  100. "
  101. @click="cancelDiscount"
  102. >取消打折</view
  103. >
  104. <button class="btn" @click="wantDiscount">我要打折</button>
  105. </view>
  106. <!-- 筛选弹窗 -->
  107. <ScreenPopup :show="show" @close="close" :follow="follow" />
  108. <!-- 筛选弹窗 -->
  109. <!-- 打折弹窗 -->
  110. <DiscountsPopup
  111. :show="discountsShow"
  112. :selectGoodsInformation="selectGoodsInformation"
  113. @close="closeDiscountsPopup"
  114. />
  115. <!-- 打折弹窗 -->
  116. <!-- 批量打折 -->
  117. <BatchDiscountPopup
  118. :show="batchPopup"
  119. @close="closeDiscountsPopup"
  120. :selectGoodsInformation="selectGoodsInformation"
  121. />
  122. <u-toast ref="uToast"></u-toast>
  123. </view>
  124. </template>
  125. <script>
  126. import GoodsInformation from "./component/goodsInformation.vue";
  127. import ScreenPopup from "./component/screenPopup.vue";
  128. import DiscountsPopup from "./component/discountsPopup.vue";
  129. import BatchDiscountPopup from "./component/batchDiscountPopup.vue";
  130. export default {
  131. components: {
  132. GoodsInformation,
  133. ScreenPopup,
  134. DiscountsPopup,
  135. BatchDiscountPopup,
  136. },
  137. data() {
  138. return {
  139. follow: "",
  140. status: "1",
  141. show: false,
  142. discountsShow: false,
  143. selectGoodsInformation: {},
  144. batch: false,
  145. value: false,
  146. batchPopup: false,
  147. goodsList: [],
  148. keywords: "", //搜索关键字
  149. source: "",
  150. selectedGoods: [],
  151. };
  152. },
  153. computed: {
  154. i18n() {
  155. return this.$t("index");
  156. },
  157. //可选的商品数量,去掉下架的商品
  158. goodsLength() {
  159. let num = 0;
  160. this.goodsList.map((item) => {
  161. if (item.goods.status != "down") {
  162. num++;
  163. }
  164. });
  165. return num;
  166. },
  167. },
  168. watch: {
  169. selectedGoods(newVal) {
  170. if (this.goodsLength == newVal.length) {
  171. this.value = true;
  172. } else {
  173. this.value = false;
  174. }
  175. },
  176. },
  177. methods: {
  178. //切换横向tab栏
  179. tabSwitch(num) {
  180. this.follow = num;
  181. this.getCommodityList(num);
  182. },
  183. checkboxChange(e) {
  184. console.log(e);
  185. },
  186. //搜索
  187. search(e) {
  188. this.getCommodityList();
  189. },
  190. //打开筛选弹窗
  191. openPopup() {
  192. this.show = true;
  193. },
  194. //关闭筛选弹窗
  195. close(data) {
  196. this.show = false;
  197. if (data) {
  198. this.keywords = data.keywords;
  199. this.source = data.source;
  200. this.getCommodityList(data.status);
  201. } else {
  202. this.keywords = "";
  203. this.source = "";
  204. this.getCommodityList();
  205. }
  206. // this.follow = num;
  207. },
  208. //全选
  209. allSelect() {
  210. //判断是否已经全选
  211. if (this.selectedGoods.length == this.goodsLength) {
  212. this.selectedGoods = [];
  213. } else {
  214. this.goodsList.map((item) => {
  215. if (
  216. this.selectedGoods.indexOf(item.id) == -1 &&
  217. item.goods.status != "down"
  218. ) {
  219. this.selectedGoods.push(item.id);
  220. }
  221. });
  222. }
  223. },
  224. //批量打折
  225. batchDiscount() {
  226. this.batch = !this.batch;
  227. uni.setNavigationBarTitle({
  228. title: "批量打折",
  229. });
  230. },
  231. cancelDiscount() {
  232. this.batch = false;
  233. uni.setNavigationBarTitle({
  234. title: "商品管理",
  235. });
  236. this.selectedGoods = [];
  237. },
  238. //打开我要打折窗口
  239. wantDiscount() {
  240. if (this.selectedGoods == 0) {
  241. this.$refs.uToast.show({
  242. type: "default",
  243. title: "默认主题",
  244. message: "请选择至少一个商品",
  245. });
  246. return;
  247. }
  248. this.batchPopup = true;
  249. },
  250. //关闭折扣弹窗
  251. closeDiscountsPopup(value) {
  252. //判断是批量打折还是单个打折
  253. if (this.batchPopup) {
  254. this.batchPopup = false;
  255. if (value) {
  256. uni.$u.http
  257. //将选中商品的id使用","拼接
  258. .post(`/api/goods/discount`, {
  259. merchant_goods_id: this.selectedGoods.join(","),
  260. mer_discount: value,
  261. })
  262. .then((res) => {
  263. this.getCommodityList(this.follow);
  264. });
  265. this.batch = false;
  266. uni.setNavigationBarTitle({
  267. title: "商品管理",
  268. });
  269. }
  270. } else if (this.discountsShow) {
  271. this.discountsShow = false;
  272. if (value) {
  273. uni.$u.http
  274. .post(`/api/goods/discount`, {
  275. merchant_goods_id: this.selectGoodsInformation.id,
  276. mer_discount: value,
  277. })
  278. .then((res) => {
  279. this.getCommodityList(this.follow);
  280. });
  281. }
  282. }
  283. },
  284. //打开折扣弹窗
  285. openDiscountsPopup(value) {
  286. this.selectGoodsInformation = value;
  287. this.discountsShow = true;
  288. },
  289. toDetail() {
  290. uni.navigateTo({
  291. url: "/pageD/productDetails/productDetails",
  292. });
  293. },
  294. getCommodityList(status = "") {
  295. let userId;
  296. uni.getStorage({
  297. key: "user_info",
  298. success: ({ data }) => {
  299. userId = data.merchant.id;
  300. },
  301. });
  302. uni.$u.http
  303. .post(`/api/goods/merchant_goods`, {
  304. page: 1,
  305. limit: 10,
  306. merchant_id: userId,
  307. status: status,
  308. keywords: this.keywords,
  309. source: this.source,
  310. })
  311. .then((res) => {
  312. this.goodsList = res.data;
  313. });
  314. },
  315. },
  316. mounted() {
  317. this.getCommodityList();
  318. uni.setNavigationBarTitle({
  319. title: "商品管理",
  320. });
  321. },
  322. };
  323. </script>
  324. <style lang="scss" scoped>
  325. .top-tab-search {
  326. background-color: #fff;
  327. padding: 10rpx 24rpx;
  328. z-index: 20174;
  329. .search {
  330. display: flex;
  331. align-items: center;
  332. .screen {
  333. display: flex;
  334. align-items: center;
  335. font-size: 26rpx;
  336. color: #333;
  337. margin-left: 20rpx;
  338. .screen-icon {
  339. width: 24rpx;
  340. height: 24rpx;
  341. margin-left: 5rpx;
  342. }
  343. }
  344. }
  345. .top-tab {
  346. margin-top: 10rpx;
  347. padding: 0 20rpx;
  348. display: flex;
  349. justify-content: space-between;
  350. .tab {
  351. font-size: 26rpx;
  352. color: rgba(34, 34, 34, 0.8);
  353. flex-shrink: 0;
  354. height: 44rpx;
  355. display: flex;
  356. align-items: flex-end;
  357. padding-bottom: 12rpx;
  358. }
  359. .commodity {
  360. position: relative;
  361. font-weight: 600;
  362. }
  363. .commodity::before {
  364. content: "";
  365. display: block;
  366. height: 4rpx;
  367. width: 50%;
  368. background: #f83224;
  369. position: absolute;
  370. bottom: -10rpx;
  371. opacity: 0.8;
  372. left: 50%;
  373. transform: translate(-50%, 50%);
  374. }
  375. }
  376. }
  377. .page {
  378. padding: 20rpx 24rpx;
  379. background-color: #fff;
  380. margin-bottom: 150rpx;
  381. .list {
  382. display: flex;
  383. flex-wrap: nowrap;
  384. align-items: center;
  385. .radio {
  386. margin-right: 20rpx;
  387. }
  388. }
  389. }
  390. .footer {
  391. position: fixed;
  392. display: flex;
  393. align-items: center;
  394. justify-content: space-between;
  395. bottom: 0;
  396. background-color: #fff;
  397. width: 93%;
  398. padding: 16rpx 24rpx 70rpx 24rpx;
  399. .batch {
  400. color: #333;
  401. font-size: 28rpx;
  402. margin-right: 50rpx;
  403. display: flex;
  404. align-items: center;
  405. }
  406. .btn-1 {
  407. width: 236rpx;
  408. height: 76rpx;
  409. border-radius: 52rpx;
  410. background-color: #fff;
  411. color: #f83224;
  412. border: 2rpx solid #f83224;
  413. padding: 0;
  414. margin: 0;
  415. font-size: 30rpx;
  416. }
  417. .btn {
  418. width: 236rpx;
  419. height: 76rpx;
  420. border-radius: 52rpx;
  421. background-color: #f83224;
  422. color: #fff;
  423. border: none;
  424. padding: 0;
  425. margin: 0;
  426. font-size: 30rpx;
  427. }
  428. }
  429. </style>