main.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <template>
  2. <el-dialog
  3. :title="'商品详情'"
  4. :center="true"
  5. align="left"
  6. top="8vh"
  7. width="1040px"
  8. @close="showModelThis = false"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. v-loading="loading"
  12. element-loading-text="拼命加载中"
  13. element-loading-spinner="el-icon-loading"
  14. element-loading-background="rgba(0, 0, 0, 0.8)"
  15. append-to-body
  16. >
  17. <el-card style="margin-top: -20px" class="modal-form-style">
  18. <show-data-table
  19. style="margin: 0; padding: 0"
  20. :newTime="newTime"
  21. v-if="newTime !== ''"
  22. :sitem="sitem"
  23. :columns="ShowDataTableColumns"
  24. >
  25. <template slot="good_name">
  26. <img
  27. v-viewer
  28. style="width: 23px; height: 23px; margin: 0 5px 0 0"
  29. class="fl"
  30. v-if="sitem.good_thumb_img"
  31. :src="sitem.good_thumb_img"
  32. alt=""
  33. />
  34. <div>{{ sitem.good_name }}</div>
  35. </template>
  36. <template slot="speclist">
  37. <span v-for="(si, i) in sitem.speclist" :key="si.spec_id + i">
  38. <span v-if="i !== 0">-</span><span>{{ si.spec_value }}</span>
  39. </span>
  40. </template>
  41. <template slot="good_info_img">
  42. <img
  43. class="fl"
  44. style="width: 23px; height: 23px; margin: 0 5px 0 0"
  45. v-viewer
  46. v-for="(si, i) in sitem.good_info_img"
  47. :src="si"
  48. :key="si + i"
  49. />
  50. </template>
  51. <template slot="is_auth">
  52. <el-tag
  53. :size="'mini'"
  54. v-text="
  55. (options3.find((item) => item.id == sitem.is_auth) || {}).name ||
  56. '--'
  57. "
  58. />
  59. </template>
  60. <template slot="exclusive">
  61. <span v-for="(si, sii) in sitem.exclusive" :key="si.id"
  62. ><span v-if="sii !== 0">/</span><span>{{ si.name }}</span>
  63. </span>
  64. </template>
  65. <template slot="is_stock">
  66. <el-tag
  67. :size="'mini'"
  68. v-text="
  69. (options4.find((item) => item.id == sitem.is_stock) || {}).name ||
  70. '--'
  71. "
  72. />
  73. </template>
  74. <template slot="good_type">
  75. <el-tag
  76. :size="'mini'"
  77. v-text="
  78. (options1.find((item) => item.id == sitem.good_type) || {})
  79. .name || '--'
  80. "
  81. />
  82. <span v-if="sitem.good_type === '1'"
  83. >起订量:{{ sitem.moq }},工期:{{ sitem.customized }}天</span
  84. >
  85. </template>
  86. <template slot="supply_area">
  87. <el-tag
  88. :size="'mini'"
  89. v-text="
  90. (options6.find((item) => item.id == sitem.supply_area) || {})
  91. .name || '--'
  92. "
  93. />
  94. </template>
  95. <template slot="is_step">
  96. <el-tag
  97. :size="'mini'"
  98. v-text="
  99. (options7.find((item) => item.id == sitem.is_step) || {}).name ||
  100. '--'
  101. "
  102. />
  103. </template>
  104. <template slot="exam_status">
  105. <el-tag
  106. :size="'mini'"
  107. v-text="
  108. (options8.find((item) => item.id == sitem.exam_status) || {})
  109. .name || '--'
  110. "
  111. />
  112. </template>
  113. <template slot="purchase">
  114. <el-table
  115. :data="sitem.nakelist"
  116. :size="'mini'"
  117. border
  118. stripe
  119. style="width: 99%; margin: 10px 10px 10px 0"
  120. >
  121. <el-table-column prop="min_num" label="起订量(>=)" />
  122. <el-table-column prop="nake_fee" label="成本合计" />
  123. <el-table-column prop="cost_fee" label="工艺费" />
  124. <el-table-column prop="delivery_fee" label="其中运费" />
  125. </el-table>
  126. </template>
  127. <template slot="ladderlist">
  128. <el-table
  129. :data="sitem.ladderlist"
  130. :size="'mini'"
  131. border
  132. stripe
  133. style="width: 99%; margin: 10px 10px 10px 0"
  134. >
  135. <el-table-column prop="min_num" label="起订量(>=)" />
  136. <el-table-column prop="sale_price" label="售价" />
  137. <el-table-column prop="market_price" label="市场价" />
  138. <el-table-column prop="market_platform" label="对比平台" />
  139. <el-table-column prop="status" label="状态">
  140. <template slot-scope="scope">{{
  141. scope.row.status === "1" ? "启用" : "禁用"
  142. }}</template>
  143. </el-table-column>
  144. </el-table>
  145. </template>
  146. </show-data-table>
  147. </el-card>
  148. </el-dialog>
  149. </template>
  150. <script>
  151. import asyncRequest from "@/apis/components/show-good-data-modal";
  152. import resToken from "@/mixins/resToken";
  153. import mixinPage from "@/mixins/elPaginationHandle";
  154. import { mapGetters } from "vuex";
  155. import ShowDataTableColumns from "./ShowDataTableColumns";
  156. import {
  157. options1,
  158. options2,
  159. options3,
  160. options4,
  161. options5,
  162. options6,
  163. options7,
  164. options8,
  165. // columns,
  166. } from "./columns";
  167. export default {
  168. name: "showGoodDataModal",
  169. mixins: [resToken, mixinPage],
  170. computed: {
  171. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  172. },
  173. props: ["showModel", "id"],
  174. /**
  175. * 属性集合
  176. * @param {Boolean} showModel : 是否弹出弹窗 必填
  177. * @param {Boolean} once : 是否只选一条 非必填
  178. */
  179. /**
  180. * 事件集合
  181. * @resultList : 选中值变化调用 抛出选中数据
  182. */
  183. data() {
  184. return {
  185. ShowDataTableColumns: ShowDataTableColumns,
  186. options1: options1,
  187. options2: options2,
  188. options3: options3,
  189. options4: options4,
  190. options5: options5,
  191. options6: options6,
  192. options7: options7,
  193. options8: options8,
  194. loading: true,
  195. showModelThis: false,
  196. sitem: null,
  197. // 表格 - 列参数
  198. // columns: columns,
  199. newTime: "",
  200. };
  201. },
  202. watch: {
  203. showModel: function (val) {
  204. this.showModelThis = val;
  205. if (val) {
  206. this.supplierCode = [];
  207. this.initData();
  208. }
  209. },
  210. showModelThis(val) {
  211. if (!val) {
  212. this.$emit("cancel");
  213. }
  214. },
  215. },
  216. methods: {
  217. async initData() {
  218. this.loading = true;
  219. const { code, message, data } = await asyncRequest.detail({
  220. skuCode: this.id,
  221. });
  222. this.loading = false;
  223. if (code === 0) {
  224. this.sitem = JSON.parse(JSON.stringify(data));
  225. const { exam_status, cat_info } = this.sitem;
  226. let cat = "";
  227. if (cat_info && cat_info.length > 0) {
  228. cat_info.forEach((e, i) => {
  229. cat += i === 0 ? e.name : "/" + e.name;
  230. });
  231. }
  232. this.sitem.cat = cat;
  233. this.sitem.good_info_img = this.sitem.good_info_img.split(",");
  234. this.status = exam_status;
  235. this.getNewTime();
  236. } else if (code >= 100 && code <= 104) {
  237. await this.logout();
  238. } else {
  239. this.$message.warning(message);
  240. }
  241. },
  242. getNewTime() {
  243. this.newTime = new Date().valueOf();
  244. },
  245. },
  246. };
  247. </script>
  248. <style>
  249. </style>