|
@@ -7,7 +7,7 @@
|
|
|
<div class="parameter">
|
|
|
<el-row>
|
|
|
<el-col :span="24" class="good_name">{{ sitem.good_name }}</el-col>
|
|
|
- <el-col :span="12" class="t2"
|
|
|
+ <el-col :span="24" class="t2"
|
|
|
>业务公司:
|
|
|
<el-tooltip
|
|
|
class="item"
|
|
@@ -19,15 +19,7 @@
|
|
|
</el-tooltip>
|
|
|
{{ sitem.companyName }}</el-col
|
|
|
>
|
|
|
-
|
|
|
- <el-col :span="12" class="t2">成本编号:{{ sitem.spuCode }}</el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="24" style="padding: 5px 0">
|
|
|
- <showGoodPrice :price_list="slit" :tax="sitem.tax" />
|
|
|
- </el-col>
|
|
|
-
|
|
|
- <el-col :span="24" class="t2"
|
|
|
+ <el-col :span="12" class="t2"
|
|
|
>供应商名称:
|
|
|
<el-tooltip
|
|
|
class="item"
|
|
@@ -38,7 +30,15 @@
|
|
|
<el-icon class="el-icon-warning-outline" />
|
|
|
</el-tooltip>
|
|
|
{{ sitem.supplierName }}</el-col
|
|
|
- ><el-col :span="24" class="t2">品牌: {{ sitem.brand_name }}</el-col>
|
|
|
+ >
|
|
|
+ <el-col :span="12" class="t2">成本编号:{{ sitem.spuCode }}</el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24" style="padding: 5px 0">
|
|
|
+ <showGoodPrice :price_list="slit" />
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="t2">税率: {{ sitem.tax }}%</el-col>
|
|
|
+ <el-col :span="24" class="t2">品牌: {{ sitem.brand_name }}</el-col>
|
|
|
<el-col :span="24" class="t2"
|
|
|
>供货区域:
|
|
|
{{ sitem.supply_area + "" === "1" ? "全国" : "除偏远地区" }}
|
|
@@ -91,7 +91,7 @@
|
|
|
<script>
|
|
|
export default {
|
|
|
name: "goodPreview",
|
|
|
- props: ["sitem", "newTime","origin_place"],
|
|
|
+ props: ["sitem", "newTime", "origin_place"],
|
|
|
data() {
|
|
|
return {
|
|
|
img_list: [],
|
|
@@ -108,7 +108,6 @@ export default {
|
|
|
created() {
|
|
|
this.slit = [];
|
|
|
this.img_list = [];
|
|
|
- console.log(this.sitem.good_info_img);
|
|
|
if (typeof this.sitem.good_info_img === "string") {
|
|
|
this.img_list = (this.sitem.good_info_img || "").split(",");
|
|
|
}
|
|
@@ -117,11 +116,11 @@ export default {
|
|
|
(item) => item + "?t=" + this.generateRandomString(20)
|
|
|
);
|
|
|
if (this.sitem && this.sitem.nakelist) {
|
|
|
- this.sitem.nakelist.forEach((si, i) => {
|
|
|
+ let arr = this.bubbleSort(this.sitem.nakelist);
|
|
|
+ arr.forEach((si, i) => {
|
|
|
let sModel = {
|
|
|
min: si.min_num,
|
|
|
- max:
|
|
|
- this.sitem.nakelist.length - 1 === i ? 0 : this.sitem.nakelist[i + 1].min_num,
|
|
|
+ max: arr.length - 1 === i ? 0 : arr[i + 1].min_num,
|
|
|
price: si.nake_total,
|
|
|
};
|
|
|
this.slit.push(sModel);
|
|
@@ -130,6 +129,19 @@ export default {
|
|
|
// nakelist
|
|
|
},
|
|
|
methods: {
|
|
|
+ bubbleSort(arr) {
|
|
|
+ for (var i = 0; i < arr.length - 1; i++) {
|
|
|
+ for (var j = 0; j < arr.length - i - 1; j++) {
|
|
|
+ if (Number(arr[j].min_num) > Number(arr[j + 1].min_num)) {
|
|
|
+ var temp = arr[j];
|
|
|
+ arr[j] = arr[j + 1];
|
|
|
+ arr[j + 1] = temp;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return arr;
|
|
|
+ },
|
|
|
+
|
|
|
generateRandomString(length) {
|
|
|
let str = Math.random()
|
|
|
.toString(36)
|