|
@@ -61,8 +61,7 @@
|
|
|
<el-tag
|
|
|
:size="'mini'"
|
|
|
v-text="
|
|
|
- (options1.find((item) => item.id == sitem.good_type) || {}).name ||
|
|
|
- '--'
|
|
|
+ (options1.find((item) => item.id == sitem.good_type) || {}).name || '--'
|
|
|
"
|
|
|
/>
|
|
|
<span v-if="sitem.good_type === '1'" style="padding: 0 0 0 5px"
|
|
@@ -72,31 +71,25 @@
|
|
|
<template slot="pay_way">
|
|
|
<el-tag
|
|
|
:size="'mini'"
|
|
|
- v-text="
|
|
|
- (options9.find((item) => item.id == sitem.pay_way) || {}).name ||
|
|
|
- '--'
|
|
|
- "
|
|
|
+ v-text="(options9.find((item) => item.id == sitem.pay_way) || {}).name || '--'"
|
|
|
/>
|
|
|
</template>
|
|
|
<template slot="supply_area">
|
|
|
<el-tag
|
|
|
:size="'mini'"
|
|
|
v-text="
|
|
|
- (options6.find((item) => item.id == sitem.supply_area) || {})
|
|
|
- .name || '--'
|
|
|
+ (options6.find((item) => item.id == sitem.supply_area) || {}).name || '--'
|
|
|
"
|
|
|
/>
|
|
|
</template>
|
|
|
|
|
|
<template slot="noble">
|
|
|
<span v-if="sitem.noble_name"
|
|
|
- >{{ sitem.noble_weight ? sitem.noble_weight : "0" }}g-{{
|
|
|
- sitem.noble_name
|
|
|
- }}-{{ sitem.gold_price ? sitem.gold_price : "0" }}元/g-{{
|
|
|
- sitem.is_gold_price === "0" ? "不" : ""
|
|
|
- }}启用实时金价-{{ sitem.is_diff === "1" ? "有" : "无" }}工差-{{
|
|
|
- sitem.config
|
|
|
- }}-{{ sitem.other_config }}</span
|
|
|
+ >{{ sitem.noble_weight ? sitem.noble_weight : "0" }}g-{{ sitem.noble_name }}-{{
|
|
|
+ sitem.gold_price ? sitem.gold_price : "0"
|
|
|
+ }}元/g-{{ sitem.is_gold_price === "0" ? "不" : "" }}启用实时金价-{{
|
|
|
+ sitem.is_diff === "1" ? "有" : "无"
|
|
|
+ }}工差-{{ sitem.config }}-{{ sitem.other_config }}</span
|
|
|
>
|
|
|
<span v-else>--</span>
|
|
|
</template>
|
|
@@ -132,14 +125,15 @@ import resToken from "@/mixins/resToken";
|
|
|
import asyncRequest from "@/apis/service/purchaseIn/recovery";
|
|
|
export default {
|
|
|
name: "showData",
|
|
|
- props: ["showModel", "bidNo"],
|
|
|
+ props: ["showModel", "bidNo", "infoNo"],
|
|
|
mixins: [resToken],
|
|
|
data() {
|
|
|
return {
|
|
|
newTime: "",
|
|
|
loading: true,
|
|
|
showModelThis: this.showModel,
|
|
|
- sitem: "",
|
|
|
+ sitem: null,
|
|
|
+ infoSitem: null,
|
|
|
options1,
|
|
|
options2,
|
|
|
options3,
|
|
@@ -156,7 +150,7 @@ export default {
|
|
|
showModel: function (val) {
|
|
|
this.showModelThis = val;
|
|
|
if (val) {
|
|
|
- this.initData();
|
|
|
+ this.initInfoData();
|
|
|
}
|
|
|
},
|
|
|
showModelThis(val) {
|
|
@@ -167,6 +161,23 @@ export default {
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ async initInfoData() {
|
|
|
+ this.loading = true;
|
|
|
+ const { code, message, data } = await asyncRequest.info_detail({
|
|
|
+ infoNo: this.infoNo,
|
|
|
+ });
|
|
|
+ if (code === 0) {
|
|
|
+ this.infoSitem = data;
|
|
|
+ await this.initData();
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+ this.$message.warning(message);
|
|
|
+ this.loading = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //
|
|
|
+
|
|
|
async initData() {
|
|
|
this.loading = true;
|
|
|
const { code, message, data } = await asyncRequest.good_detail({
|
|
@@ -192,5 +203,4 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
-<style>
|
|
|
-</style>
|
|
|
+<style></style>
|