commodityManage.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  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.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. @deleteGoods="deleteGoods"
  77. @addAndRemove="addAndRemove"
  78. />
  79. </view>
  80. </view>
  81. </u-checkbox-group>
  82. </view>
  83. <view class="footer" v-if="!batch">
  84. <view class="batch" @click="batchDiscount"> 批量打折 </view>
  85. <button class="btn-1" @click="toPlatform">上架平台商品</button>
  86. </view>
  87. <view class="footer" v-else>
  88. <view class="batch" @click="allSelect">
  89. <radio
  90. :checked="value"
  91. style="transform: scale(0.7)"
  92. color="#f83224"
  93. activeBackgroundColor="#f83224"
  94. ></radio>
  95. 全选
  96. </view>
  97. <view
  98. style="
  99. font-size: 26rpx;
  100. margin-left: 20rpx;
  101. color: rgba(54, 54, 54, 0.5);
  102. "
  103. @click="cancelDiscount"
  104. >取消打折</view
  105. >
  106. <button class="btn" @click="wantDiscount">我要打折</button>
  107. </view>
  108. <!-- 筛选弹窗 -->
  109. <ScreenPopup :show="show" @close="close" :follow="follow" />
  110. <!-- 筛选弹窗 -->
  111. <!-- 打折弹窗 -->
  112. <DiscountsPopup
  113. :show="discountsShow"
  114. :selectGoodsInformation="selectGoodsInformation"
  115. @close="closeDiscountsPopup"
  116. />
  117. <!-- 打折弹窗 -->
  118. <!-- 批量打折 -->
  119. <BatchDiscountPopup
  120. :show="batchPopup"
  121. @close="closeDiscountsPopup"
  122. :selectGoodsInformation="selectGoodsInformation"
  123. />
  124. <agreePopup :agreeShow="agreeShow" :title="title" @close="closeDelete" />
  125. <u-toast ref="uToast"></u-toast>
  126. </view>
  127. </template>
  128. <script>
  129. import GoodsInformation from "./component/goodsInformation.vue";
  130. import ScreenPopup from "./component/screenPopup.vue";
  131. import DiscountsPopup from "./component/discountsPopup.vue";
  132. import BatchDiscountPopup from "./component/batchDiscountPopup.vue";
  133. import agreePopup from "../components/agreePopup";
  134. export default {
  135. components: {
  136. GoodsInformation,
  137. ScreenPopup,
  138. DiscountsPopup,
  139. BatchDiscountPopup,
  140. agreePopup,
  141. },
  142. data() {
  143. return {
  144. follow: "",
  145. status: "1",
  146. show: false,
  147. discountsShow: false,
  148. selectGoodsInformation: {},
  149. batch: false,
  150. value: false,
  151. batchPopup: false,
  152. goodsList: [],
  153. keywords: "", //搜索关键字
  154. source: "",
  155. selectedGoods: [],
  156. userId: "",
  157. agreeShow: false,
  158. needDeleteGoods: {},
  159. title: "",
  160. };
  161. },
  162. computed: {
  163. i18n() {
  164. return this.$t("index");
  165. },
  166. //可选的商品数量,去掉下架的商品
  167. goodsLength() {
  168. let num = 0;
  169. this.goodsList.map((item) => {
  170. if (item.status != "down") {
  171. num++;
  172. }
  173. });
  174. return num;
  175. },
  176. },
  177. onLoad(options) {
  178. uni.getStorage({
  179. key: "user_info",
  180. success: ({ data }) => {
  181. console.log("305", data);
  182. this.userId = data.merchant.id;
  183. },
  184. });
  185. },
  186. watch: {
  187. selectedGoods(newVal) {
  188. if (this.goodsLength == newVal.length) {
  189. this.value = true;
  190. } else {
  191. this.value = false;
  192. }
  193. },
  194. },
  195. methods: {
  196. //删除商品
  197. deleteGoods(value) {
  198. console.log(value);
  199. this.agreeShow = true;
  200. this.title = "是否删除商品";
  201. this.needDeleteGoods = value;
  202. },
  203. //关闭确认弹窗
  204. closeDelete(value) {
  205. this.agreeShow = false;
  206. if (value) {
  207. if (this.title == "是否下架商品") {
  208. this.goodsApi(this.needDeleteGoods, "down");
  209. } else {
  210. uni.$u.http
  211. .post(`/api/goods/merchant_goods_del`, {
  212. merchant_goods_id: this.needDeleteGoods.id,
  213. })
  214. .then((res) => {
  215. this.getCommodityList(this.follow);
  216. uni.showToast({
  217. title: "商品已删除",
  218. icon: "none",
  219. });
  220. });
  221. }
  222. }
  223. },
  224. //商品上架 下架的接口调用
  225. goodsApi(item, value) {
  226. uni.$u.http
  227. .post(`/api/goods/modify_status`, {
  228. merchant_goods_id: item.id,
  229. status: value,
  230. })
  231. .then((res) => {
  232. uni.showToast({
  233. title: value == "down" ? "商品已下架" : "商品已上架",
  234. });
  235. this.getCommodityList(this.follow);
  236. });
  237. },
  238. //商品上架 or 下架
  239. addAndRemove(item, value) {
  240. if (value == "down") {
  241. this.title = "是否下架商品";
  242. this.agreeShow = true;
  243. // this.goodsApi(item, value);
  244. this.needDeleteGoods = item;
  245. } else {
  246. this.goodsApi(item, value);
  247. }
  248. },
  249. //切换横向tab栏
  250. tabSwitch(num) {
  251. this.follow = num;
  252. this.getCommodityList(num);
  253. },
  254. //跳转平台库商品
  255. toPlatform() {
  256. uni.navigateTo({
  257. url: `/pageD/platformProducts/platformProducts`,
  258. });
  259. },
  260. checkboxChange(e) {
  261. console.log(e);
  262. },
  263. //搜索
  264. search(e) {
  265. this.getCommodityList();
  266. },
  267. //打开筛选弹窗
  268. openPopup() {
  269. this.show = true;
  270. },
  271. //关闭筛选弹窗
  272. close(data) {
  273. this.show = false;
  274. if (data) {
  275. this.keywords = data.keywords;
  276. this.source = data.source;
  277. this.getCommodityList(data.status);
  278. } else {
  279. this.keywords = "";
  280. this.source = "";
  281. this.getCommodityList();
  282. }
  283. // this.follow = num;
  284. },
  285. //全选
  286. allSelect() {
  287. //判断是否已经全选
  288. if (this.selectedGoods.length == this.goodsLength) {
  289. this.selectedGoods = [];
  290. } else {
  291. this.goodsList.map((item) => {
  292. if (
  293. this.selectedGoods.indexOf(item.id) == -1 &&
  294. item.status != "down"
  295. ) {
  296. this.selectedGoods.push(item.id);
  297. }
  298. });
  299. }
  300. },
  301. //批量打折
  302. batchDiscount() {
  303. this.batch = !this.batch;
  304. uni.setNavigationBarTitle({
  305. title: "批量打折",
  306. });
  307. },
  308. cancelDiscount() {
  309. this.batch = false;
  310. uni.setNavigationBarTitle({
  311. title: "商品管理",
  312. });
  313. this.selectedGoods = [];
  314. },
  315. //打开我要打折窗口
  316. wantDiscount() {
  317. if (this.selectedGoods == 0) {
  318. this.$refs.uToast.show({
  319. type: "default",
  320. title: "默认主题",
  321. message: "请选择至少一个商品",
  322. });
  323. return;
  324. }
  325. this.batchPopup = true;
  326. },
  327. //关闭折扣弹窗
  328. closeDiscountsPopup(value) {
  329. //判断是批量打折还是单个打折
  330. if (this.batchPopup) {
  331. this.batchPopup = false;
  332. if (value) {
  333. uni.$u.http
  334. //将选中商品的id使用","拼接
  335. .post(`/api/goods/discount`, {
  336. merchant_goods_id: this.selectedGoods.join(","),
  337. mer_discount: value,
  338. })
  339. .then((res) => {
  340. this.getCommodityList(this.follow);
  341. });
  342. this.batch = false;
  343. uni.setNavigationBarTitle({
  344. title: "商品管理",
  345. });
  346. }
  347. } else if (this.discountsShow) {
  348. this.discountsShow = false;
  349. if (value) {
  350. uni.$u.http
  351. .post(`/api/goods/discount`, {
  352. merchant_goods_id: this.selectGoodsInformation.id,
  353. mer_discount: value,
  354. })
  355. .then((res) => {
  356. this.getCommodityList(this.follow);
  357. });
  358. }
  359. }
  360. },
  361. //打开折扣弹窗
  362. openDiscountsPopup(value) {
  363. this.selectGoodsInformation = value;
  364. this.discountsShow = true;
  365. },
  366. toDetail(item) {
  367. uni.navigateTo({
  368. url: "/pageD/productDetails/productDetails?goodsId=" + item.id,
  369. });
  370. },
  371. getCommodityList(status = "") {
  372. console.log("309", this.userId);
  373. uni.$u.http
  374. .post(`/api/goods/merchant_goods`, {
  375. page: 1,
  376. limit: 10,
  377. merchant_id: this.userId,
  378. status: status,
  379. keywords: this.keywords,
  380. source: this.source,
  381. })
  382. .then((res) => {
  383. this.goodsList = res.data;
  384. });
  385. },
  386. },
  387. mounted() {
  388. this.getCommodityList();
  389. uni.setNavigationBarTitle({
  390. title: "商品管理",
  391. });
  392. },
  393. };
  394. </script>
  395. <style lang="scss" scoped>
  396. .top-tab-search {
  397. background-color: #fff;
  398. padding: 10rpx 24rpx;
  399. z-index: 20174;
  400. .search {
  401. display: flex;
  402. align-items: center;
  403. .screen {
  404. display: flex;
  405. align-items: center;
  406. font-size: 26rpx;
  407. color: #333;
  408. margin-left: 20rpx;
  409. .screen-icon {
  410. width: 24rpx;
  411. height: 24rpx;
  412. margin-left: 5rpx;
  413. }
  414. }
  415. }
  416. .top-tab {
  417. margin-top: 10rpx;
  418. padding: 0 20rpx;
  419. display: flex;
  420. justify-content: space-between;
  421. .tab {
  422. font-size: 26rpx;
  423. color: rgba(34, 34, 34, 0.8);
  424. flex-shrink: 0;
  425. height: 44rpx;
  426. display: flex;
  427. align-items: flex-end;
  428. padding-bottom: 12rpx;
  429. }
  430. .commodity {
  431. position: relative;
  432. font-weight: 600;
  433. }
  434. .commodity::before {
  435. content: "";
  436. display: block;
  437. height: 4rpx;
  438. width: 50%;
  439. background: #f83224;
  440. position: absolute;
  441. bottom: -10rpx;
  442. opacity: 0.8;
  443. left: 50%;
  444. transform: translate(-50%, 50%);
  445. }
  446. }
  447. }
  448. .page {
  449. padding: 20rpx 24rpx;
  450. background-color: #fff;
  451. margin-bottom: 150rpx;
  452. .list {
  453. display: flex;
  454. flex-wrap: nowrap;
  455. align-items: center;
  456. .radio {
  457. margin-right: 20rpx;
  458. }
  459. }
  460. }
  461. .footer {
  462. position: fixed;
  463. display: flex;
  464. align-items: center;
  465. justify-content: space-between;
  466. bottom: 0;
  467. background-color: #fff;
  468. width: 93%;
  469. padding: 16rpx 24rpx 70rpx 24rpx;
  470. .batch {
  471. color: #333;
  472. font-size: 28rpx;
  473. margin-right: 50rpx;
  474. display: flex;
  475. align-items: center;
  476. }
  477. .btn-1 {
  478. width: 236rpx;
  479. height: 76rpx;
  480. border-radius: 52rpx;
  481. background-color: #fff;
  482. color: #f83224;
  483. border: 2rpx solid #f83224;
  484. padding: 0;
  485. margin: 0;
  486. font-size: 30rpx;
  487. }
  488. .btn {
  489. width: 236rpx;
  490. height: 76rpx;
  491. border-radius: 52rpx;
  492. background-color: #f83224;
  493. color: #fff;
  494. border: none;
  495. padding: 0;
  496. margin: 0;
  497. font-size: 30rpx;
  498. }
  499. }
  500. </style>