editGood.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <template>
  2. <div class="activeAdd">
  3. <el-table :data="good_list" stripe border :size="'mini'" style="width: 100%">
  4. <el-table-column
  5. prop="yz_good_code"
  6. label="商品上线编码"
  7. show-overflow-tooltip
  8. width="170"
  9. />
  10. <el-table-column
  11. prop="plat_code"
  12. label="平台商品编码"
  13. show-overflow-tooltip
  14. width="170"
  15. />
  16. <el-table-column prop="good_name" label="商品名称" show-overflow-tooltip />
  17. <el-table-column prop="stock_num" label="活动库存" width="180">
  18. <template slot-scope="scope">
  19. <el-input-number
  20. v-show="type !== 'view'"
  21. style="width: 100%"
  22. v-model="scope.row.stock_num"
  23. :min="1"
  24. :max="100000000000"
  25. :precision="0"
  26. :size="'mini'"
  27. label="活动库存"
  28. ></el-input-number>
  29. <span v-show="type === 'view'">{{ scope.row.stock_num }}</span>
  30. </template>
  31. </el-table-column>
  32. <el-table-column
  33. prop="origin_price"
  34. label="划线价"
  35. width="100"
  36. show-overflow-tooltip
  37. />
  38. <el-table-column
  39. prop="final_price"
  40. label="销售价"
  41. width="100"
  42. show-overflow-tooltip
  43. />
  44. <el-table-column fixed="right" width="80">
  45. <template slot="header" slot-scope="scope">
  46. <span>操作</span>
  47. <el-tooltip
  48. class="item"
  49. effect="dark"
  50. v-if="status === ''"
  51. content="添加活动商品"
  52. placement="top"
  53. >
  54. <i
  55. class="el-icon-circle-plus-outline fr"
  56. style="font-size: 18px; margin-top: 2px"
  57. @click="showModel = true"
  58. />
  59. </el-tooltip>
  60. </template>
  61. <template slot-scope="scope">
  62. <el-tooltip effect="dark" content="删除" placement="top">
  63. <i
  64. class="el-icon-delete tb-icon"
  65. @click="deleteRow(scope.$index, good_list)"
  66. ></i>
  67. </el-tooltip>
  68. <el-tooltip effect="dark" content="查看商品信息" placement="top">
  69. <i
  70. class="el-icon-view tb-icon"
  71. @click="showGoodModelFun(scope.row.yz_good_code)"
  72. ></i>
  73. </el-tooltip>
  74. </template>
  75. </el-table-column>
  76. </el-table>
  77. <search-youzan-txx-good-online-modal
  78. :once="once"
  79. :sitem="ruleForm"
  80. :active="true"
  81. :platform_code="36"
  82. :show-model="showModel"
  83. @resultList="resultList"
  84. @cancel="showModel = false"
  85. />
  86. <show-good-data-modal
  87. :show-model="showGoodModel"
  88. :skuCode="showGoodId"
  89. :spuCode="''"
  90. @cancel="showGoodModel = false"
  91. />
  92. <!-- <add-stock
  93. :show-model="addStockModel"
  94. :sitem="addStockSitem"
  95. @refresh="$emit('refresh', true)"
  96. @cancel="addStockModel = false"
  97. /> -->
  98. <el-col
  99. :span="24"
  100. v-if="status === ''"
  101. style="text-align: right; padding: 15px 0 15px 0; border-top: 1px solid #dcdfe6"
  102. >
  103. <el-button :size="'mini'" type="primary" @click="submitForm">保 存 </el-button>
  104. </el-col>
  105. </div>
  106. </template>
  107. <script>
  108. import asyncRequest from "@/apis/service/youzan/luckDraw";
  109. import resToken from "@/mixins/resToken";
  110. import { mapGetters } from "vuex";
  111. import searchYouzanTxxGoodOnlineModal from "@/components/search-youzan-txx-good-online-modal";
  112. import showGoodDataModal from "@/components/show-good-data-modal";
  113. // import addStock from "./addStock";
  114. export default {
  115. name: "activeAdd",
  116. mixins: [resToken],
  117. props: ["showModel", "id", "type", "sitem", "newTime"],
  118. components: {
  119. searchYouzanTxxGoodOnlineModal,
  120. showGoodDataModal,
  121. // addStock,
  122. },
  123. watch: {
  124. newTime: function (val) {
  125. if (val) {
  126. this.initForm();
  127. }
  128. },
  129. },
  130. computed: {
  131. ...mapGetters(["tablebtnSize", "searchSize", "size", "business_companyNo"]),
  132. // powers() {
  133. // const tran =
  134. // this.$store.getters.btnList.find((i) => i.menu_route == "activeDetail") || {};
  135. // const { action } = tran ?? {};
  136. // return action ?? [];
  137. // },
  138. },
  139. data() {
  140. return {
  141. size: "small",
  142. activeName: "3",
  143. status: "",
  144. loading: false,
  145. // showModel: false,
  146. once: false,
  147. rulesThis: this.rules,
  148. showGoodModel: false,
  149. showGoodId: "",
  150. addStockModel: false,
  151. addStockSitem: null,
  152. ruleForm: {},
  153. // 表格 - 数据
  154. tableData: [],
  155. good_list: [],
  156. };
  157. },
  158. mounted() {
  159. this.initForm();
  160. },
  161. methods: {
  162. async initForm() {
  163. this.loading = true;
  164. this.tableData = [];
  165. this.good_list = [];
  166. await this.initData();
  167. this.loading = false;
  168. },
  169. //添加活动库存弹窗
  170. addStock(index) {
  171. this.addStockSitem = this.good_list[index];
  172. this.addStockModel = true;
  173. },
  174. showGoodModelFun(skuCode) {
  175. this.showGoodModel = true;
  176. this.showGoodId = skuCode;
  177. },
  178. openCostEditDelete(index) {
  179. this.good_list.splice(index, 1);
  180. },
  181. async deleteRow(index, rows) {
  182. await this.$confirm("确定要删除?", {
  183. confirmButtonText: "确定",
  184. cancelButtonText: "取消",
  185. type: "warning",
  186. })
  187. .then(async () => {
  188. rows.splice(index, 1);
  189. })
  190. .catch(() => {
  191. console.log("取消");
  192. });
  193. },
  194. resultList(e) {
  195. console.log(e);
  196. this.showModel = false;
  197. let list = JSON.parse(JSON.stringify(e));
  198. let oldList = JSON.parse(JSON.stringify(this.good_list));
  199. list.forEach((e, ei) => {
  200. let index = oldList.findIndex((a) => e.skuCode === a.skuCode);
  201. if (index === -1) {
  202. let item = JSON.parse(JSON.stringify(list[ei]));
  203. item.stock_num = "1";
  204. item.newTime = new Date().valueOf();
  205. item.yz_good_code = item.skuCode;
  206. console.log(item.stock_num);
  207. this.good_list.push(item);
  208. }
  209. });
  210. },
  211. handleClick(row) {
  212. console.log(row);
  213. },
  214. async submitForm() {
  215. if (!this.loading) {
  216. this.loading = true;
  217. if (this.good_list.length === 0) {
  218. this.$message.warning("请选择活动商品信息!");
  219. this.loading = false;
  220. return;
  221. }
  222. let res = {};
  223. if (this.tableData.length === 0) {
  224. let addModel = {
  225. actCode: this.id,
  226. snArr: [],
  227. };
  228. this.good_list.forEach((e) => {
  229. addModel.snArr.push({ skuCode: e.skuCode, stock_num: e.stock_num });
  230. });
  231. res = await asyncRequest.goodAdd(addModel);
  232. } else {
  233. let goodArr = [];
  234. console.log(this.tableData);
  235. console.log(this.good_list);
  236. this.tableData.forEach((s, si) => {
  237. let index = this.good_list.findIndex((a) => a.skuCode === s.skuCode);
  238. if (index === -1) {
  239. goodArr.push({
  240. is_del: "1",
  241. actCode: this.id,
  242. yz_good_code: s.yz_good_code,
  243. stock_num: s.stock_num,
  244. });
  245. }
  246. });
  247. this.good_list.forEach((s, si) => {
  248. goodArr.push({
  249. is_del: "0",
  250. actCode: this.id,
  251. yz_good_code: s.yz_good_code,
  252. stock_num: s.stock_num,
  253. });
  254. });
  255. res = await asyncRequest.goodUpdate({ goodArr });
  256. }
  257. const { code, data, message } = res;
  258. this.loading = false;
  259. if (code === 0) {
  260. this.$notify.success({
  261. title: this.type === "add" ? "新建成功!" : "编辑成功!",
  262. message: "",
  263. });
  264. this.showModelThis = false;
  265. // 刷新
  266. this.$emit("refresh", true);
  267. } else if (code >= 100 && code <= 104) {
  268. await this.logout();
  269. } else {
  270. this.$message.warning(message);
  271. }
  272. }
  273. },
  274. async initData() {
  275. this.loading = true;
  276. const { code, data, message } = await asyncRequest.goodList({
  277. actCode: this.id,
  278. page: 1,
  279. size: 99999,
  280. });
  281. this.loading = false;
  282. if (code === 0) {
  283. const { list, count } = data;
  284. let arr = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  285. arr.map((a) => {
  286. a.skuCode = a.yz_good_code;
  287. return a;
  288. });
  289. console.log(arr);
  290. this.tableData = arr.length > 0 ? JSON.parse(JSON.stringify(arr)) : [];
  291. this.good_list = arr.length > 0 ? JSON.parse(JSON.stringify(arr)) : [];
  292. } else if (code >= 100 && code <= 104) {
  293. await this.logout();
  294. } else {
  295. this.tableData = [];
  296. this.good_list = [];
  297. this.$message.error(message);
  298. }
  299. },
  300. },
  301. };
  302. </script>
  303. <style lang="scss" scoped>
  304. .activeAdd {
  305. .activeAdd-title {
  306. border-top: 1px solid #ebeef5;
  307. span {
  308. height: 50px;
  309. line-height: 50px;
  310. font-family: "微软雅黑", sans-serif;
  311. font-weight: 400;
  312. font-style: normal;
  313. font-size: 16fpx;
  314. text-align: left;
  315. }
  316. }
  317. /deep/ .ddiv {
  318. border-top: 1px solid #dcdfe6;
  319. }
  320. /deep/ .dtitle {
  321. width: 40px;
  322. text-align: center;
  323. height: 100%;
  324. min-height: 100%;
  325. ul {
  326. padding: 20px 0 0 0;
  327. }
  328. }
  329. /deep/ .dmain {
  330. padding: 20px 0 0 0;
  331. width: calc(100% - 40px);
  332. border-left: 1px solid #dcdfe6;
  333. }
  334. }
  335. </style>