123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- <template>
- <div class="bargainListDetail">
- <div
- class="bargainListDetail-main"
- v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
- >
- <el-tabs v-model="projectTabs" v-loading="loading">
- <el-tab-pane label="议价单详情" name="1">
- <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
- <el-collapse-item :title="'议价详情'" name="1">
- <show-data-table
- style="padding: -5px 0 10px 0"
- :newTime="newTime"
- v-if="newTime !== ''"
- :sitem="sitem"
- :columns="editColumns"
- >
- <template slot="status">
- <el-tag
- :size="tablebtnSize"
- :type="
- (statusList.find((item) => item.id == sitem.status) || {})
- .type || ''
- "
- v-text="
- (statusList.find((item) => item.id == sitem.status) || {})
- .label || '--'
- "
- ></el-tag>
- </template>
-
- <template slot="good_img">
- <img
- v-for="(si,sii) in sitem.good_img"
- :key="si+sii"
- :src="si"
- class="fl hover"
- v-viewer
- style="
- width: 23px;
- height: 23px;
- margin: 0;
- vertical-align: top;
- "
- alt=""
- />
- </template>
- <template slot="specinfo">
- <span
- v-for="(si, sii) in sitem.specinfo"
- :key="si.specid + sii"
- >
- <span v-if="sii !== 0">--</span>{{ si.spec_name }}[{{
- si.spec_value_name
- }}]</span
- >
- </template>
- <template slot="can">
- <span v-for="(si, sii) in sitem.can" :key="si.id + sii">
- <span v-if="sii !== 0">_</span>{{ si.name }}</span
- >
- </template>
- <template slot="is_addrs">
- <el-tag
- :size="tablebtnSize"
- v-text="
- (
- options12.find((item) => item.id == sitem.is_addrs) ||
- {}
- ).name || '--'
- "
- ></el-tag>
- </template>
- <template slot="is_custom">
- <el-tag
- :size="tablebtnSize"
- v-text="
- (
- options1.find((item) => item.id == sitem.is_custom) ||
- {}
- ).name || '--'
- "
- ></el-tag>
- </template>
- <template slot="supply_area">
- <el-tag
- :size="tablebtnSize"
- v-text="
- (
- options6.find(
- (item) => item.id === sitem.supply_area
- ) || {}
- ).name || '--'
- "
- ></el-tag>
- </template>
- <template slot="pay_way">
- <el-tag
- :size="tablebtnSize"
- v-text="
- (options10.find((item) => item.id == sitem.pay_way) || {})
- .name || '--'
- "
- ></el-tag>
- </template>
- <template slot="send_way">
- <el-tag
- :size="tablebtnSize"
- v-text="
- (
- options11.find((item) => item.id == sitem.send_way) ||
- {}
- ).name || '--'
- "
- ></el-tag>
- </template>
- <template slot="good_num">
- <span
- >{{ sitem.good_num ? sitem.good_num : "0"
- }}{{ sitem.unit }}</span
- >
- </template>
- <template slot="metal_id">
- <span v-if="sitem.metal_id"
- >{{ sitem.noble_weight ? sitem.noble_weight : "0" }}g---{{
- sitem.metal_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>
- </show-data-table>
- </el-collapse-item>
- <el-collapse-item
- title="商品成本信息"
- name="6"
- v-if="
- newTime !== '' &&
- private_field &&
- private_field.length > 0 &&
- private_field.some((item) => item == '1')
- "
- >
- <show-data-table
- :newTime="newTime"
- v-if="newTime !== ''"
- :sitem="sitem"
- :columns="costArr"
- >
- </show-data-table>
- </el-collapse-item>
- <el-collapse-item
- title="商品毛利信息"
- name="7"
- v-if="
- newTime !== '' &&
- private_field &&
- private_field.length > 0 &&
- private_field.some((item) => item == '3')
- "
- >
- <show-data-table
- :newTime="newTime"
- v-if="newTime !== ''"
- :sitem="sitem"
- :columns="bargainingArr"
- >
- </show-data-table>
- </el-collapse-item>
- <el-collapse-item
- title="业务部门审批"
- name="2"
- v-if="
- eaxmList.some((item) => item.info_status + '' == '0') ||
- (status == '0' && powers.some((item) => item == '043'))
- "
- >
- <exam-formss
- :newTime="newTime"
- v-if="newTime !== ''"
- :disabled="
- !(status == '0' && powers.some((item) => item == '043'))
- "
- :sitem="orderItem"
- @searchChange="examFormSubmit($event, '业务部门')"
- />
- </el-collapse-item>
- <el-collapse-item
- title="财务专员审批"
- name="3"
- v-if="
- eaxmList.some((item) => item.info_status + '' == '2') ||
- (status == '2' && powers.some((item) => item == '058'))
- "
- >
- <exam-formss
- :newTime="newTime"
- v-if="newTime !== ''"
- :disabled="
- !(status == '2' && powers.some((item) => item == '058'))
- "
- :sitem="moneyDirItem"
- @searchChange="examFormSubmit($event, '财务专员')"
- />
- </el-collapse-item>
- <el-collapse-item
- title="财务主管审批"
- name="4"
- v-if="
- eaxmList.some((item) => item.info_status + '' == '4') ||
- (status == '4' && powers.some((item) => item == '059'))
- "
- >
- <exam-formss
- :newTime="newTime"
- v-if="newTime !== ''"
- :disabled="
- !(status == '4' && powers.some((item) => item == '059'))
- "
- :sitem="moneyItem"
- @searchChange="examFormSubmit($event, '财务主管')"
- />
- </el-collapse-item>
- <el-collapse-item
- title="BOSS审批"
- name="5"
- v-if="
- eaxmList.some((item) => item.info_status + '' == '7') ||
- (status == '7' && powers.some((item) => item == '084'))
- "
- >
- <exam-formss
- :newTime="newTime"
- v-if="newTime !== ''"
- :disabled="
- !(status == '7' && powers.some((item) => item == '084'))
- "
- :sitem="BossItem"
- @searchChange="examFormSubmit($event, 'BOSS')"
- />
- </el-collapse-item>
- </el-collapse>
- </el-tab-pane>
- <el-tab-pane label="审批记录" name="3">
- <process-time-line
- v-if="newTime !== ''"
- :newTime="newTime"
- :type="'YJD'"
- :orderCode="queryId"
- />
- </el-tab-pane>
- </el-tabs>
- </div>
- <div v-else>
- <no-auth></no-auth>
- </div>
- </div>
- </template>
- <script>
- import examFormss from "./exam-form.vue";
- import asyncRequest from "@/apis/service/sellOut/bargainList";
- import resToken from "@/mixins/resToken";
- import { mapGetters } from "vuex";
- import {
- editColumns,
- costArr,
- bargainingArr,
- options1,
- options2,
- options3,
- options4,
- options5,
- options6,
- options7,
- options8,
- options9,
- options10,
- options11,
- options12,
- statusList,
- } from "./columns";
- export default {
- components: {
- examFormss,
- },
- name: "bargainListDetail",
- mixins: [resToken],
- computed: {
- ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field"]),
- powers() {
- let tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "bargainListDetail"
- ) || {};
- if (tran && tran.action && tran.action.length > 0) {
- return tran.action;
- } else {
- return [];
- }
- },
- },
- data() {
- return {
- size: "small",
- eaxmList: [],
- costArr,
- bargainingArr,
- editColumns,
- options1,
- options2,
- options3,
- options4,
- options5,
- options6,
- options7,
- options8,
- options9,
- options10,
- options11,
- options12,
- statusList,
- projectTabs: "1",
- activeNames: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
- newTime: "",
- loading: false,
- queryType: "",
- queryId: "",
- status: "",
- sitem: null,
- orderItem: {},
- moneyDirItem: {},
- moneyItem: {},
- BossItem: {},
- };
- },
- mounted() {
- 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;
- },
- handleClick(row) {
- console.log(row);
- },
- async refresh() {
- this.routeReGoto("bargainList", {});
- },
- async initData() {
- this.loading = true;
- const { code, message, data } = await asyncRequest.detail({
- bargainNo: this.queryId,
- });
- this.eaxmList = [];
- this.loading = false;
- if (code === 0) {
- this.sitem = JSON.parse(JSON.stringify(data));
- this.sitem.good_img = this.sitem.good_img
- ? this.sitem.good_img.split(",")
- : [];
- const { status, exam_info } = this.sitem;
- this.orderItem = {};
- this.moneyDirItem = {};
- this.moneyItem = {};
- this.BossItem = {};
- if (exam_info && exam_info.length > 0) {
- exam_info.forEach((e) => {
- console.log(e.status);
- switch (e.info_status + "") {
- case "0":
- this.orderItem = JSON.parse(JSON.stringify(e));
- break;
- case "2":
- this.moneyDirItem = JSON.parse(JSON.stringify(e));
- break;
- case "4":
- this.moneyItem = JSON.parse(JSON.stringify(e));
- break;
- case "7":
- this.BossItem = JSON.parse(JSON.stringify(e));
- break;
- default:
- this.orderItem = JSON.parse(JSON.stringify(e));
- }
- });
- this.eaxmList = JSON.parse(JSON.stringify(exam_info));
- }
- this.status = status;
- this.getNewTime();
- } else if (code >= 100 && code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(message);
- }
- },
- getNewTime() {
- this.newTime = new Date().valueOf();
- },
- // 点击业务审核的保存按钮
- async examFormSubmit(e, title) {
- if (!this.loading) {
- let model = {
- bargainNo: this.queryId,
- status: e.state,
- remark: e.remark,
- };
- await this.$confirm(`确定要${title}?`, {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(async () => {
- const { after_price, lower_price } = this.sitem;
- if (this.status === "7" && after_price * 1 < lower_price * 1) {
- this.loading = false;
- await this.$confirm(
- `当前商品同意议价后,售价已低于系统最低售价${this.sitem.lower_price}元!`,
- `最终售价已低于系统最低售价!是否继续?`,
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "error",
- }
- )
- .then(async () => {
- this.loading = true;
- await this.statusSubmit(model, title);
- })
- .catch(() => {
- this.loading = false;
- console.log("取消1");
- });
- } else {
- await this.statusSubmit(model, title);
- }
- })
- .catch(() => {
- this.loading = false;
- console.log("取消");
- });
- }
- },
- async statusSubmit(model, title) {
- const { code, data, message } = await asyncRequest.status(model);
- this.loading = false;
- // console.log("res", data);
- if (code === 0) {
- this.$notify.success({
- title: title + "成功!",
- message: "",
- });
- await this.initForm();
- } else if (code >= 100 && code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(message);
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .bargainListDetail {
- position: relative;
- height: 100%;
- width: 100%;
- box-sizing: border-box;
- .bargainListDetail-main {
- position: relative;
- padding: 10px;
- height: 100%;
- width: 100%;
- }
- .bargainListDetail-title {
- border-top: 1px solid #ebeef5;
- span {
- height: 50px;
- line-height: 50px;
- font-family: "微软雅黑", sans-serif;
- font-weight: 400;
- font-style: normal;
- font-size: 16fpx;
- text-align: left;
- }
- }
- /deep/ .ddiv {
- border-top: 1px solid #dcdfe6;
- }
- /deep/ .dtitle {
- width: 40px;
- text-align: center;
- height: 100%;
- min-height: 100%;
- ul {
- padding: 12px 0 0 0;
- }
- }
- /deep/ .dmain {
- padding: 20px 0 0 0;
- width: calc(100% - 40px);
- border-left: 1px solid #dcdfe6;
- }
- }
- </style>
-
|