commodityManage.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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" @click="toPlatform">上架平台商品</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. userId: "",
  152. };
  153. },
  154. computed: {
  155. i18n() {
  156. return this.$t("index");
  157. },
  158. //可选的商品数量,去掉下架的商品
  159. goodsLength() {
  160. let num = 0;
  161. this.goodsList.map((item) => {
  162. if (item.goods.status != "down") {
  163. num++;
  164. }
  165. });
  166. return num;
  167. },
  168. },
  169. onLoad(options) {
  170. uni.getStorage({
  171. key: "user_info",
  172. success: ({ data }) => {
  173. console.log("305", data);
  174. this.userId = data.merchant.id;
  175. },
  176. });
  177. },
  178. watch: {
  179. selectedGoods(newVal) {
  180. if (this.goodsLength == newVal.length) {
  181. this.value = true;
  182. } else {
  183. this.value = false;
  184. }
  185. },
  186. },
  187. methods: {
  188. //切换横向tab栏
  189. tabSwitch(num) {
  190. this.follow = num;
  191. this.getCommodityList(num);
  192. },
  193. //跳转平台库商品
  194. toPlatform() {
  195. uni.navigateTo({
  196. url: `/pageD/platformProducts/platformProducts`,
  197. });
  198. },
  199. checkboxChange(e) {
  200. console.log(e);
  201. },
  202. //搜索
  203. search(e) {
  204. this.getCommodityList();
  205. },
  206. //打开筛选弹窗
  207. openPopup() {
  208. this.show = true;
  209. },
  210. //关闭筛选弹窗
  211. close(data) {
  212. this.show = false;
  213. if (data) {
  214. this.keywords = data.keywords;
  215. this.source = data.source;
  216. this.getCommodityList(data.status);
  217. } else {
  218. this.keywords = "";
  219. this.source = "";
  220. this.getCommodityList();
  221. }
  222. // this.follow = num;
  223. },
  224. //全选
  225. allSelect() {
  226. //判断是否已经全选
  227. if (this.selectedGoods.length == this.goodsLength) {
  228. this.selectedGoods = [];
  229. } else {
  230. this.goodsList.map((item) => {
  231. if (
  232. this.selectedGoods.indexOf(item.id) == -1 &&
  233. item.goods.status != "down"
  234. ) {
  235. this.selectedGoods.push(item.id);
  236. }
  237. });
  238. }
  239. },
  240. //批量打折
  241. batchDiscount() {
  242. this.batch = !this.batch;
  243. uni.setNavigationBarTitle({
  244. title: "批量打折",
  245. });
  246. },
  247. cancelDiscount() {
  248. this.batch = false;
  249. uni.setNavigationBarTitle({
  250. title: "商品管理",
  251. });
  252. this.selectedGoods = [];
  253. },
  254. //打开我要打折窗口
  255. wantDiscount() {
  256. if (this.selectedGoods == 0) {
  257. this.$refs.uToast.show({
  258. type: "default",
  259. title: "默认主题",
  260. message: "请选择至少一个商品",
  261. });
  262. return;
  263. }
  264. this.batchPopup = true;
  265. },
  266. //关闭折扣弹窗
  267. closeDiscountsPopup(value) {
  268. //判断是批量打折还是单个打折
  269. if (this.batchPopup) {
  270. this.batchPopup = false;
  271. if (value) {
  272. uni.$u.http
  273. //将选中商品的id使用","拼接
  274. .post(`/api/goods/discount`, {
  275. merchant_goods_id: this.selectedGoods.join(","),
  276. mer_discount: value,
  277. })
  278. .then((res) => {
  279. this.getCommodityList(this.follow);
  280. });
  281. this.batch = false;
  282. uni.setNavigationBarTitle({
  283. title: "商品管理",
  284. });
  285. }
  286. } else if (this.discountsShow) {
  287. this.discountsShow = false;
  288. if (value) {
  289. uni.$u.http
  290. .post(`/api/goods/discount`, {
  291. merchant_goods_id: this.selectGoodsInformation.id,
  292. mer_discount: value,
  293. })
  294. .then((res) => {
  295. this.getCommodityList(this.follow);
  296. });
  297. }
  298. }
  299. },
  300. //打开折扣弹窗
  301. openDiscountsPopup(value) {
  302. this.selectGoodsInformation = value;
  303. this.discountsShow = true;
  304. },
  305. toDetail(item) {
  306. uni.navigateTo({
  307. url: "/pageD/productDetails/productDetails?goodsId=" + item.id,
  308. });
  309. },
  310. getCommodityList(status = "") {
  311. console.log("309", this.userId);
  312. uni.$u.http
  313. .post(`/api/goods/merchant_goods`, {
  314. page: 1,
  315. limit: 10,
  316. merchant_id: this.userId,
  317. status: status,
  318. keywords: this.keywords,
  319. source: this.source,
  320. })
  321. .then((res) => {
  322. this.goodsList = res.data;
  323. });
  324. },
  325. },
  326. mounted() {
  327. this.getCommodityList();
  328. uni.setNavigationBarTitle({
  329. title: "商品管理",
  330. });
  331. },
  332. };
  333. </script>
  334. <style lang="scss" scoped>
  335. .top-tab-search {
  336. background-color: #fff;
  337. padding: 10rpx 24rpx;
  338. z-index: 20174;
  339. .search {
  340. display: flex;
  341. align-items: center;
  342. .screen {
  343. display: flex;
  344. align-items: center;
  345. font-size: 26rpx;
  346. color: #333;
  347. margin-left: 20rpx;
  348. .screen-icon {
  349. width: 24rpx;
  350. height: 24rpx;
  351. margin-left: 5rpx;
  352. }
  353. }
  354. }
  355. .top-tab {
  356. margin-top: 10rpx;
  357. padding: 0 20rpx;
  358. display: flex;
  359. justify-content: space-between;
  360. .tab {
  361. font-size: 26rpx;
  362. color: rgba(34, 34, 34, 0.8);
  363. flex-shrink: 0;
  364. height: 44rpx;
  365. display: flex;
  366. align-items: flex-end;
  367. padding-bottom: 12rpx;
  368. }
  369. .commodity {
  370. position: relative;
  371. font-weight: 600;
  372. }
  373. .commodity::before {
  374. content: "";
  375. display: block;
  376. height: 4rpx;
  377. width: 50%;
  378. background: #f83224;
  379. position: absolute;
  380. bottom: -10rpx;
  381. opacity: 0.8;
  382. left: 50%;
  383. transform: translate(-50%, 50%);
  384. }
  385. }
  386. }
  387. .page {
  388. padding: 20rpx 24rpx;
  389. background-color: #fff;
  390. margin-bottom: 150rpx;
  391. .list {
  392. display: flex;
  393. flex-wrap: nowrap;
  394. align-items: center;
  395. .radio {
  396. margin-right: 20rpx;
  397. }
  398. }
  399. }
  400. .footer {
  401. position: fixed;
  402. display: flex;
  403. align-items: center;
  404. justify-content: space-between;
  405. bottom: 0;
  406. background-color: #fff;
  407. width: 93%;
  408. padding: 16rpx 24rpx 70rpx 24rpx;
  409. .batch {
  410. color: #333;
  411. font-size: 28rpx;
  412. margin-right: 50rpx;
  413. display: flex;
  414. align-items: center;
  415. }
  416. .btn-1 {
  417. width: 236rpx;
  418. height: 76rpx;
  419. border-radius: 52rpx;
  420. background-color: #fff;
  421. color: #f83224;
  422. border: 2rpx solid #f83224;
  423. padding: 0;
  424. margin: 0;
  425. font-size: 30rpx;
  426. }
  427. .btn {
  428. width: 236rpx;
  429. height: 76rpx;
  430. border-radius: 52rpx;
  431. background-color: #f83224;
  432. color: #fff;
  433. border: none;
  434. padding: 0;
  435. margin: 0;
  436. font-size: 30rpx;
  437. }
  438. }
  439. </style>