addEdit.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="'添加商品上线'"
  5. :center="true"
  6. align="left"
  7. top="8vh"
  8. width="1040px"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. element-loading-text="拼命加载中"
  12. element-loading-spinner="el-icon-loading"
  13. element-loading-background="rgba(0, 0, 0, 0.8)"
  14. @close="showModelThis = false"
  15. >
  16. <el-card style="margin: -20px 0 0 0; padding-bottom: 0">
  17. <el-row :gutter="10">
  18. <el-col :span="24" style="padding: 0 0 15px 0">
  19. <el-table
  20. :data="list"
  21. stripe
  22. :size="'mini'"
  23. border
  24. max-height="380px"
  25. style="width: 100%"
  26. >
  27. <el-table-column prop="spuCode" label="编号" width="160" show-overflow-tooltip />
  28. <el-table-column prop="good_thumb_img" label="图片" width="45" show-overflow-tooltip>
  29. <template slot-scope="scope">
  30. <div
  31. v-if="scope.row.good_thumb_img"
  32. v-viewer
  33. style="width: 20px; height: 20px"
  34. class="hover"
  35. >
  36. <img
  37. :src="scope.row.good_thumb_img"
  38. style="display: inline-block; width: 100%; height: 100%"
  39. alt
  40. />
  41. </div>
  42. </template>
  43. </el-table-column>
  44. <el-table-column prop="good_name" label="名称" min-width="160px" show-overflow-tooltip />
  45. <el-table-column prop="cat_name" label="分类" min-width="100" show-overflow-tooltip />
  46. <el-table-column prop="brand_name" label="品牌" show-overflow-tooltip />
  47. <el-table-column prop="good_type" label="定制" width="50" show-overflow-tooltip>
  48. <template slot-scope="scope">
  49. <el-tag
  50. :size="'mini'"
  51. :type="scope.row.good_type == '1' ? '' : 'warning'"
  52. v-text="
  53. (options1.find((item) => item.id == scope.row.status) || {}).name ||
  54. '--'
  55. "
  56. />
  57. </template>
  58. </el-table-column>
  59. <el-table-column prop="supplierNo" label="供应商编号" width="110" show-overflow-tooltip />
  60. <el-table-column prop="supplier_name" label="供应商名称" width="110" show-overflow-tooltip />
  61. <el-table-column prop="companyNo" label="业务公司编号" width="110" show-overflow-tooltip />
  62. <el-table-column prop="company" label="业务公司名称" width="110" show-overflow-tooltip />
  63. <el-table-column prop="market_url" label="京东链接" width="200" fixed="right" show-overflow-tooltip>
  64. <template slot-scope="scope">
  65. <el-input size="mini" placeholder="京东比价链接" :value="list[scope.$index].market_url" @input="changeMarketUrl($event,scope.$index)" />
  66. </template>
  67. </el-table-column>
  68. </el-table>
  69. </el-col>
  70. <el-col :span="24">
  71. <el-form
  72. ref="ruleForm"
  73. :model="ruleForm"
  74. status-icon
  75. :rules="rulesThis"
  76. label-width="80px"
  77. class="demo-ruleForm"
  78. >
  79. <el-row style="padding-bottom">
  80. <el-col :span="8">
  81. <el-form-item label="所属平台" prop="platform">
  82. <search-terrace
  83. :is_show="'1'"
  84. :is-detail="false"
  85. :placeholder="'所属平台'"
  86. :value="ruleForm.platform"
  87. :platformType="ruleForm.platform_type"
  88. @searchChange="platform_codesearchChange"
  89. />
  90. </el-form-item>
  91. <el-form-item label="对接平台" prop="platform_type">
  92. <el-select
  93. :disabled="!ruleForm.platform_type"
  94. v-model="ruleForm.platform_type"
  95. @change="ruleForm.platform = ''"
  96. disabled
  97. placeholder="对接平台"
  98. style="width:100%"
  99. >
  100. <el-option label="有赞平台" value="1" />
  101. <el-option label="无对接" value="0" />
  102. <el-option label="BBC" value="2" />
  103. </el-select>
  104. </el-form-item>
  105. <el-form-item label="定价模式" prop="is_fixed">
  106. <el-select v-model="ruleForm.is_fixed" style="width:100%">
  107. <el-option
  108. v-for="p in pricingOptions"
  109. :key="p.value"
  110. :value="p.value"
  111. :label="p.label"
  112. />
  113. </el-select>
  114. </el-form-item>
  115. </el-col>
  116. <el-col :span="16" style="text-align: right">
  117. <!-- <el-form-item label="京东链接" prop="market_url">
  118. <el-input
  119. v-model="ruleForm.market_url"
  120. :disabled="false"
  121. placeholder="京东比价链接"
  122. maxlength="200"
  123. />
  124. </el-form-item> -->
  125. <el-form-item label="上线原因" prop="online_reason">
  126. <el-input
  127. v-model="ruleForm.online_reason"
  128. :disabled="false"
  129. placeholder="上线原因"
  130. maxlength="200"
  131. />
  132. </el-form-item>
  133. <el-form-item label="上线备注" prop="online_remark">
  134. <el-input
  135. v-model="ruleForm.online_remark"
  136. type="textarea"
  137. :rows="3"
  138. :disabled="false"
  139. placeholder="商品备注"
  140. maxlength="2000"
  141. show-word-limit
  142. />
  143. </el-form-item>
  144. <el-button v-if="id !== '007'" type="primary" :size="'mini'" @click="submitForm">保 存</el-button>
  145. <el-button :size="'mini'" @click="showModelThis = false">
  146. {{
  147. id == "007" ? "关 闭" : "取 消"
  148. }}
  149. </el-button>
  150. </el-col>
  151. </el-row>
  152. </el-form>
  153. </el-col>
  154. </el-row>
  155. </el-card>
  156. </el-dialog>
  157. </template>
  158. <script>
  159. import asyncRequest from "@/apis/service/goodStore/goodsCost";
  160. import { replaceTextWrapAndSpace } from "@/utils";
  161. import resToken from "@/mixins/resToken";
  162. export default {
  163. name: "Brand",
  164. mixins: [resToken],
  165. props: ["showModel", "id", "sitem", "isNobleMetal", "isConsultFlag"],
  166. data() {
  167. return {
  168. loading: false,
  169. isYZPlatform: false,
  170. showModelThis: this.showModel,
  171. ruleForm: {
  172. list:[],
  173. platform_type: "",
  174. platform: "", // string 平台id
  175. is_fixed: "", // string 定价模式
  176. online_reason: "", // string 上线原因
  177. online_remark: "" // string 上线备注
  178. },
  179. // 是否定制
  180. options1: [
  181. { id: "0", name: "否" },
  182. { id: "1", name: "是" }
  183. ],
  184. rulesThis: this.rules,
  185. rules: {
  186. platform: [
  187. {
  188. required: true,
  189. message: "请选择所属平台",
  190. trigger: "change"
  191. }
  192. ],
  193. is_fixed: [
  194. {
  195. required: true,
  196. message: "请选择定价模式",
  197. trigger: "change"
  198. }
  199. ],
  200. platform_type: [
  201. {
  202. required: true,
  203. message: "请选择对接平台",
  204. trigger: "change"
  205. }
  206. ],
  207. online_reason: [
  208. {
  209. required: true,
  210. message: "上线原因不能为空",
  211. trigger: "blur"
  212. }
  213. ],
  214. online_remark: [
  215. {
  216. required: true,
  217. message: "上线备注不能为空",
  218. trigger: "blur"
  219. }
  220. ]
  221. }
  222. };
  223. },
  224. computed: {
  225. isFixed() {
  226. /** 选择实时金价条件:非有赞平台&非咨询成交商品&贵金属商品 */
  227. return !this.isYZPlatform && !this.isConsultFlag && this.isNobleMetal && this.ruleForm.platform_type !== "1"
  228. },
  229. pricingOptions() {
  230. return [
  231. { value: "1", label: "一口价" },
  232. ...(this.isFixed ? [{ value: "0", label: "实时金价" }] : [])
  233. ];
  234. }
  235. },
  236. watch: {
  237. isFixed() {
  238. if (this.ruleForm.is_fixed === "0") {
  239. this.ruleForm.is_fixed = "";
  240. }
  241. },
  242. showModel: function(val) {
  243. this.showModelThis = val;
  244. if (val) {
  245. this.initForm();
  246. this.list = JSON.parse(JSON.stringify(this.sitem));
  247. }
  248. },
  249. showModelThis(val) {
  250. if (!val) { this.$emit("cancel");}
  251. }
  252. },
  253. methods: {
  254. changeMarketUrl(market_url,index){
  255. this.$set(this.list,index,{ ...this.list[index], market_url })
  256. },
  257. async initForm() {
  258. this.loading = true;
  259. this.rulesThis = this.rules;
  260. await this.resetForm();
  261. this.loading = false;
  262. },
  263. async resetForm() {
  264. // 重置
  265. await this.$nextTick(() => {
  266. if (this.$refs.ruleForm) {
  267. this.$refs.ruleForm.resetFields();
  268. this.$refs.ruleForm.clearValidate();
  269. this.ruleForm = {
  270. platform_type: "",
  271. platform: "", // string 平台id
  272. online_reason: "", // string 上线原因
  273. online_remark: "" // string 上线备注
  274. };
  275. }
  276. });
  277. },
  278. platform_codesearchChange(e) {
  279. const { id, platform_type } = e;
  280. this.ruleForm.platform = id || "";
  281. this.isYZPlatform = platform_type === "1";
  282. this.ruleForm.platform_type = platform_type
  283. this.$refs.ruleForm.validateField("platform");
  284. },
  285. async submitForm() {
  286. this.ruleForm.online_remark = replaceTextWrapAndSpace(
  287. this.ruleForm.online_remark
  288. );
  289. if(this.list.length > 0){
  290. const regex = /^(http|https):\/\/[^ "]+$/;
  291. for(let index = 0;index < this.list.length;index ++){
  292. const item = this.list[index];
  293. const line = index + 1;
  294. if(!item.market_url){
  295. this.$message.warning(`商品第 ${line} 行,京东链接不能为空`)
  296. return
  297. }
  298. if(!regex.test(item.market_url)){
  299. this.$message.warning(`商品第 ${line} 行,京东链接格式不正确`)
  300. return
  301. }
  302. }
  303. }
  304. await this.$refs.ruleForm.validate(async valid => {
  305. if (valid) {
  306. if (!this.loading) {
  307. this.loading = true;
  308. const model = JSON.parse(JSON.stringify(this.ruleForm));
  309. // model.platform = model.platform.toString();
  310. model.codes = [];
  311. const list = JSON.parse(JSON.stringify(this.list));
  312. model.goodinfo = []
  313. list.forEach(e => {
  314. model.goodinfo.push({
  315. spuCode: e.spuCode,
  316. market_url:e.market_url
  317. });
  318. });
  319. delete model.codes;
  320. const { code, data, message } = await asyncRequest.online_add(
  321. model
  322. );
  323. this.loading = false;
  324. if (code === 0) {
  325. this.$notify.success({
  326. title: "已成功添加至上线流程!",
  327. message: ""
  328. });
  329. this.showModelThis = false;
  330. // 刷新
  331. this.$emit("refresh");
  332. } else if (code >= 100 && code <= 104) {
  333. await this.logout();
  334. } else if (message === "一口价商品请先完善商品成本单价") {
  335. this.$message.warning(message);
  336. } else if (code === 1004) {
  337. this.open_show(
  338. data,
  339. "以下商品的业务公司和平台支付渠道中的业务公司重复,不允许上线"
  340. );
  341. } else if (code === 1009) {
  342. this.open_show(data, "以下商品已申请过商品上线!");
  343. } else if (code === 1010) {
  344. this.open_show(data, "该平台要求商品必须要有一件的成本!");
  345. } else {
  346. this.$message.warning(message);
  347. }
  348. }
  349. } else {
  350. return false;
  351. }
  352. });
  353. },
  354. open_show(data, title) {
  355. const resList = JSON.parse(JSON.stringify(data));
  356. let htmlList = "<ul>";
  357. resList.forEach(v => {
  358. htmlList += `<li>
  359. <span>${v.good_name}</span></li>`;
  360. });
  361. htmlList += "</ul>";
  362. this.$notify({
  363. title: title,
  364. dangerouslyUseHTMLString: true,
  365. message: htmlList
  366. });
  367. }
  368. }
  369. };
  370. </script>
  371. <style lang="scss" scoped>
  372. .brand {
  373. }
  374. </style>