|
@@ -26,6 +26,13 @@
|
|
|
<template slot="expect_service_proportion">
|
|
|
<span>{{ sitem.expect_service_proportion }}%</span>
|
|
|
</template>
|
|
|
+ <template slot="annex">
|
|
|
+ <div v-if="sitem" style="display: flex;align-items: center;">
|
|
|
+ {{ getAnnexName() }}
|
|
|
+ <el-button type="text" size="mini" style="margin-left:10px" @click="download">下载</el-button>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template slot="service_proportion">
|
|
|
<span>{{ sitem.service_proportion }}%</span>
|
|
|
</template>
|
|
@@ -138,14 +145,15 @@
|
|
|
"
|
|
|
/>
|
|
|
</template>
|
|
|
+
|
|
|
<template slot="noble">
|
|
|
<span v-if="sitem.noble_name">
|
|
|
{{ sitem.noble_weight ? sitem.noble_weight : "0" }}g-{{
|
|
|
- sitem.noble_name
|
|
|
+ sitem.noble_name
|
|
|
}}-{{ sitem.gold_price ? sitem.gold_price : "0" }}元/g-{{
|
|
|
- sitem.is_gold_price === "0" ? "不" : ""
|
|
|
+ sitem.is_gold_price === "0" ? "不" : ""
|
|
|
}}启用实时金价-{{ sitem.is_diff === "1" ? "有" : "无" }}工差-{{
|
|
|
- sitem.config
|
|
|
+ sitem.config
|
|
|
}}-{{ sitem.other_config }}
|
|
|
</span>
|
|
|
<span v-else>--</span>
|
|
@@ -159,7 +167,7 @@
|
|
|
class="fl"
|
|
|
:src="si"
|
|
|
alt
|
|
|
- />
|
|
|
+ >
|
|
|
</template>
|
|
|
</show-data-table>
|
|
|
</el-collapse-item>
|
|
@@ -168,9 +176,9 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import asyncRequest from "@/apis/service/sellOut/filing";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
-import { mapGetters } from "vuex";
|
|
|
+import asyncRequest from '@/apis/service/sellOut/filing'
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
|
|
|
import {
|
|
|
costArr,
|
|
@@ -191,18 +199,18 @@ import {
|
|
|
bargainingArr,
|
|
|
statusOptions,
|
|
|
is_determine_price_options
|
|
|
-} from "../config/columns";
|
|
|
+} from '../config/columns'
|
|
|
|
|
|
export default {
|
|
|
- name: "FilingDetail",
|
|
|
+ name: 'FilingDetail',
|
|
|
mixins: [resToken],
|
|
|
computed: {
|
|
|
- ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field"])
|
|
|
+ ...mapGetters(['tablebtnSize', 'searchSize', 'size', 'private_field'])
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
return {
|
|
|
- size: "small",
|
|
|
+ size: 'small',
|
|
|
eaxmList: [],
|
|
|
costArr,
|
|
|
bargainingArr,
|
|
@@ -222,81 +230,102 @@ export default {
|
|
|
statusOptions,
|
|
|
is_determine_price_options,
|
|
|
coveColumns,
|
|
|
- projectTabs: "1",
|
|
|
- activeNames: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "20"],
|
|
|
- newTime: "",
|
|
|
+ projectTabs: '1',
|
|
|
+ activeNames: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '20'],
|
|
|
+ newTime: '',
|
|
|
loading: false,
|
|
|
- queryType: "",
|
|
|
- queryId: "",
|
|
|
- status: "",
|
|
|
+ queryType: '',
|
|
|
+ queryId: '',
|
|
|
+ status: '',
|
|
|
sitem: null,
|
|
|
|
|
|
orderItem: {},
|
|
|
moneyDirItem: {},
|
|
|
moneyItem: {},
|
|
|
BossItem: {}
|
|
|
- };
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.initForm();
|
|
|
+ this.initForm()
|
|
|
},
|
|
|
methods: {
|
|
|
async initForm() {
|
|
|
- const { id, type } = this.$route.query;
|
|
|
- this.queryId = id;
|
|
|
- this.queryType = type;
|
|
|
- this.projectTabs = "1";
|
|
|
- this.loading = true;
|
|
|
- await this.initData();
|
|
|
- this.loading = false;
|
|
|
+ const { id, type } = this.$route.query
|
|
|
+ this.queryId = id
|
|
|
+ this.queryType = type
|
|
|
+ this.projectTabs = '1'
|
|
|
+ this.loading = true
|
|
|
+ await this.initData()
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
|
|
|
handleClick(row) {
|
|
|
- console.log(row);
|
|
|
+ console.log(row)
|
|
|
},
|
|
|
async refresh() {
|
|
|
- this.routeReGoto("filing", {});
|
|
|
+ this.routeReGoto('filing', {})
|
|
|
+ },
|
|
|
+ download() {
|
|
|
+ const { fill_url } = this.sitem
|
|
|
+ const a = document.createElement('a')
|
|
|
+ a.style.display = 'none'
|
|
|
+ a.href = fill_url
|
|
|
+ document.body.appendChild(a)
|
|
|
+ a.click()
|
|
|
+ document.body.removeChild(a)
|
|
|
+ },
|
|
|
+ getAnnexName() {
|
|
|
+ const { fill_url } = this.sitem
|
|
|
+ if (!fill_url) return ''
|
|
|
+ const chunks = fill_url.split('/')
|
|
|
+ const [name, suffix] = (chunks[chunks.length - 1] || '').split('.')
|
|
|
+
|
|
|
+ if (name.length > 10) {
|
|
|
+ return ([name[0], name[1], name[2], ' ... ', name[name.length - 2], name[name.length - 1]]).join('') + '.' + suffix
|
|
|
+ }
|
|
|
+
|
|
|
+ return name + '.' + suffix
|
|
|
},
|
|
|
async initData() {
|
|
|
- this.loading = true;
|
|
|
+ this.loading = true
|
|
|
|
|
|
const { code, message, data } = await asyncRequest.detail({
|
|
|
id: this.queryId
|
|
|
- });
|
|
|
+ })
|
|
|
|
|
|
// return
|
|
|
- this.eaxmList = [];
|
|
|
- this.loading = false;
|
|
|
+ this.eaxmList = []
|
|
|
+ this.loading = false
|
|
|
if (code === 0) {
|
|
|
- this.sitem = JSON.parse(JSON.stringify(data));
|
|
|
- const { cat_info } = this.sitem;
|
|
|
- let cat = "";
|
|
|
+ this.sitem = JSON.parse(JSON.stringify(data))
|
|
|
+ const { cat_info } = this.sitem
|
|
|
+ let cat = ''
|
|
|
|
|
|
if (cat_info && cat_info.length > 0) {
|
|
|
cat_info.forEach((e, i) => {
|
|
|
- cat += i === 0 ? e.name : "_" + e.name;
|
|
|
- });
|
|
|
+ cat += i === 0 ? e.name : '_' + e.name
|
|
|
+ })
|
|
|
}
|
|
|
- this.sitem.cat = cat;
|
|
|
- const { status, num, orderCode } = this.sitem;
|
|
|
- this.status = status;
|
|
|
+ this.sitem.cat = cat
|
|
|
+ const { status, num, orderCode } = this.sitem
|
|
|
+ this.status = status
|
|
|
|
|
|
- this.$emit("change-detail", data);
|
|
|
+ this.$emit('change-detail', data)
|
|
|
// this.$emit('change-status', status)
|
|
|
- this.$emit("change-num", num);
|
|
|
- this.$emit("change-order-code", orderCode);
|
|
|
- this.getNewTime();
|
|
|
+ this.$emit('change-num', num)
|
|
|
+ this.$emit('change-order-code', orderCode)
|
|
|
+ this.getNewTime()
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(message);
|
|
|
+ this.$message.warning(message)
|
|
|
}
|
|
|
},
|
|
|
getNewTime() {
|
|
|
- this.newTime = new Date().valueOf();
|
|
|
+ this.newTime = new Date().valueOf()
|
|
|
}
|
|
|
}
|
|
|
-};
|
|
|
+}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.filingDetail {
|