| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538 |
- <template>
- <div class="detail-container">
- <el-card shadow="never">
- <span class="font-title-medium">退货商品</span>
- <el-table
- border
- class="standard-margin"
- ref="productTable"
- :data="productList"
- >
- <el-table-column label="商品图片" width="160" align="center">
- <template slot-scope="scope">
- <img style="height: 80px" :src="scope.row.productPic" />
- </template>
- </el-table-column>
- <el-table-column label="商品名称" align="center">
- <template slot-scope="scope">
- <span class="font-small">{{ scope.row.productName }}</span
- ><br />
- <span class="font-small">品牌:{{ scope.row.productBrand }}</span>
- </template>
- </el-table-column>
- <el-table-column label="价格/货号" width="180" align="center">
- <template slot-scope="scope">
- <span class="font-small"
- >价格:¥{{ scope.row.productRealPrice }}</span
- ><br />
- <span class="font-small">货号:NO.{{ scope.row.productId }}</span>
- </template>
- </el-table-column>
- <el-table-column label="属性" width="180" align="center">
- <template slot-scope="scope">{{ scope.row.productAttr }}</template>
- </el-table-column>
- <el-table-column label="数量" width="100" align="center">
- <template slot-scope="scope">{{ scope.row.productCount }}</template>
- </el-table-column>
- <el-table-column label="小计" width="100" align="center">
- <template slot-scope="scope">¥{{ totalAmount }}</template>
- </el-table-column>
- </el-table>
- <div style="float: right; margin-top: 15px; margin-bottom: 15px">
- <span class="font-title-medium">合计:</span>
- <span class="font-title-medium color-danger">¥{{ totalAmount }}</span>
- </div>
- </el-card>
- <el-card shadow="never" class="standard-margin">
- <span class="font-title-medium">服务单信息</span>
- <div class="form-container-border">
- <el-row>
- <el-col :span="6" class="form-border form-left-bg font-small"
- >服务单号</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.id
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >申请状态</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.status | formatStatus
- }}</el-col>
- </el-row>
- <el-row>
- <el-col
- :span="6"
- class="form-border form-left-bg font-small"
- style="height: 50px; line-height: 30px"
- >订单编号
- </el-col>
- <el-col
- class="form-border font-small"
- :span="18"
- style="height: 50px"
- >
- {{ orderReturnApply.orderSn }}
- <el-button type="text" size="small" @click="handleViewOrder"
- >查看</el-button
- >
- </el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >申请时间</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.createTime | formatTime
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >用户账号</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.memberUsername
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >联系人</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.returnName
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >联系电话</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.returnPhone
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >退货原因</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.reason
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >问题描述</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.description
- }}</el-col>
- </el-row>
- <el-row>
- <el-col
- class="form-border form-left-bg font-small"
- :span="6"
- style="height: 100px; line-height: 80px"
- >凭证图片
- </el-col>
- <el-col
- class="form-border font-small"
- :span="18"
- style="height: 100px"
- >
- <img
- v-for="item in proofPics"
- style="width: 80px; height: 80px"
- :src="item"
- />
- </el-col>
- </el-row>
- </div>
- <div class="form-container-border">
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >订单金额</el-col
- >
- <el-col class="form-border font-small" :span="18"
- >¥{{ totalAmount }}</el-col
- >
- </el-row>
- <el-row>
- <el-col
- class="form-border form-left-bg font-small"
- :span="6"
- style="height: 52px; line-height: 32px"
- >确认退款金额
- </el-col>
- <el-col
- class="form-border font-small"
- style="height: 52px"
- :span="18"
- >
- ¥
- <el-input
- size="small"
- v-model="updateStatusParam.returnAmount"
- :disabled="orderReturnApply.status !== 0"
- style="width: 200px; margin-left: 10px"
- ></el-input>
- </el-col>
- </el-row>
- <div v-show="orderReturnApply.status !== 3">
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >快递单号</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.deliverySn|| '--'
- }}</el-col>
- </el-row>
- <!-- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6" style="height:52px;line-height:32px">选择收货点
- </el-col>
- <el-col class="form-border font-small" style="height:52px" :span="18">
- <el-select size="small"
- style="width:200px"
- :disabled="orderReturnApply.status!==0"
- v-model="updateStatusParam.companyAddressId">
- <el-option v-for="address in companyAddressList"
- :key="address.id"
- :value="address.id"
- :label="address.addressName">
- </el-option>
- </el-select>
- </el-col>
- </el-row> -->
- <!-- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6">收货人姓名</el-col>
- <el-col class="form-border font-small" :span="18">{{currentAddress.name?currentAddress.name:''}}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6">所在区域</el-col>
- <el-col class="form-border font-small" :span="18">{{currentAddress | formatRegion}}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6">详细地址</el-col>
- <el-col class="form-border font-small" :span="18">{{currentAddress.detailAddress}}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6">联系电话</el-col>
- <el-col class="form-border font-small" :span="18">{{currentAddress.phone}}</el-col>
- </el-row> -->
- </div>
- </div>
- <div class="form-container-border" v-show="orderReturnApply.status !== 0">
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >处理人员</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.handleMan
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >处理时间</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.handleTime | formatTime
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >处理备注</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.handleNote
- }}</el-col>
- </el-row>
- </div>
- <div class="form-container-border" v-show="orderReturnApply.status === 2">
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >收货人员</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.receiveMan
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >收货时间</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.receiveTime | formatTime
- }}</el-col>
- </el-row>
- <el-row>
- <el-col class="form-border form-left-bg font-small" :span="6"
- >收货备注</el-col
- >
- <el-col class="form-border font-small" :span="18">{{
- orderReturnApply.receiveNote
- }}</el-col>
- </el-row>
- </div>
- <div class="form-container-border" v-show="orderReturnApply.status === 0">
- <el-row>
- <el-col
- class="form-border form-left-bg font-small"
- :span="6"
- style="height: 52px; line-height: 32px"
- >处理备注</el-col
- >
- <el-col class="form-border font-small" :span="18">
- <el-input
- size="small"
- v-model="updateStatusParam.handleNote"
- style="width: 200px; margin-left: 10px"
- ></el-input>
- </el-col>
- </el-row>
- </div>
- <div class="form-container-border" v-show="orderReturnApply.status === 1">
- <el-row>
- <el-col
- class="form-border form-left-bg font-small"
- :span="6"
- style="height: 52px; line-height: 32px"
- >收货备注</el-col
- >
- <el-col class="form-border font-small" :span="18">
- <el-input
- size="small"
- v-model="updateStatusParam.receiveNote"
- style="width: 200px; margin-left: 10px"
- ></el-input>
- </el-col>
- </el-row>
- </div>
- <div
- style="margin-top: 15px; text-align: center"
- v-show="orderReturnApply.status === 0"
- >
- <el-button type="primary" size="small" @click="handleUpdateStatus(1)"
- >确认退货</el-button
- >
- <el-button type="danger" size="small" @click="handleUpdateStatus(3)"
- >拒绝退货</el-button
- >
- </div>
- <div
- style="margin-top: 15px; text-align: center"
- v-show="orderReturnApply.status === 1"
- >
- <el-button type="primary" size="small" @click="handleUpdateStatus(2)"
- >确认收货</el-button
- >
- </div>
- </el-card>
- </div>
- </template>
- <script>
- import { getApplyDetail, updateApplyStatus } from "@/api/returnApply";
- import { fetchList } from "@/api/companyAddress";
- import { formatDate } from "@/utils/date";
- const defaultUpdateStatusParam = {
- companyAddressId: null,
- handleMan: "admin",
- handleNote: null,
- receiveMan: "admin",
- receiveNote: null,
- returnAmount: 0,
- status: 0,
- };
- const defaultOrderReturnApply = {
- id: null,
- orderId: null,
- companyAddressId: null,
- productId: null,
- orderSn: null,
- createTime: null,
- memberUsername: null,
- returnAmount: null,
- returnName: null,
- returnPhone: null,
- status: null,
- handleTime: null,
- productPic: null,
- productName: null,
- productBrand: null,
- productAttr: null,
- productCount: null,
- productPrice: null,
- productRealPrice: null,
- reason: null,
- description: null,
- proofPics: null,
- handleNote: null,
- handleMan: null,
- receiveMan: null,
- receiveTime: null,
- receiveNote: null,
- deliverySn:null
- };
- export default {
- name: "returnApplyDetail",
- data() {
- return {
- id: null,
- orderReturnApply: Object.assign({}, defaultOrderReturnApply),
- productList: null,
- proofPics: null,
- updateStatusParam: Object.assign({}, defaultUpdateStatusParam),
- companyAddressList: null,
- };
- },
- created() {
- this.id = this.$route.query.id;
- this.getDetail();
- },
- computed: {
- totalAmount() {
- if (this.orderReturnApply != null) {
- return (
- this.orderReturnApply.productRealPrice *
- this.orderReturnApply.productCount
- );
- } else {
- return 0;
- }
- },
- currentAddress() {
- console.log("currentAddress()");
- let id = this.updateStatusParam.companyAddressId;
- if (this.companyAddressList == null) return {};
- for (let i = 0; i < this.companyAddressList.length; i++) {
- let address = this.companyAddressList[i];
- if (address.id === id) {
- return address;
- }
- }
- return null;
- },
- },
- filters: {
- formatStatus(status) {
- if (status === 0) {
- return "待处理";
- } else if (status === 1) {
- return "退货中";
- } else if (status === 2) {
- return "已完成";
- } else {
- return "已拒绝";
- }
- },
- formatTime(time) {
- if (time == null || time === "") {
- return "--";
- }
- let date = new Date(time);
- return formatDate(date, "yyyy-MM-dd hh:mm:ss");
- },
- formatRegion(address) {
- let str = address.province;
- if (address.city != null) {
- str += " " + address.city;
- }
- str += " " + address.region;
- return str;
- },
- },
- methods: {
- handleViewOrder() {
- this.$router.push({
- path: "/oms/orderDetail",
- query: { id: this.orderReturnApply.orderId },
- });
- },
- getDetail() {
- getApplyDetail(this.id).then((response) => {
- console.log("getDetail");
- this.orderReturnApply = response.data;
- this.productList = [];
- this.productList.push(this.orderReturnApply);
- if (this.orderReturnApply.proofPics != null) {
- this.proofPics = this.orderReturnApply.proofPics.split(",");
- }
- //退货中和完成
- if (
- this.orderReturnApply.status === 1 ||
- this.orderReturnApply.status === 2
- ) {
- this.updateStatusParam.returnAmount =
- this.orderReturnApply.returnAmount;
- this.updateStatusParam.companyAddressId =
- this.orderReturnApply.companyAddressId;
- }
- this.getCompanyAddressList();
- });
- },
- getCompanyAddressList() {
- fetchList().then((response) => {
- console.log("getCompanyAddressList()");
- this.companyAddressList = response.data;
- for (let i = 0; i < this.companyAddressList.length; i++) {
- if (
- this.companyAddressList[i].receiveStatus === 1 &&
- this.orderReturnApply.status === 0
- ) {
- this.updateStatusParam.companyAddressId =
- this.companyAddressList[i].id;
- }
- }
- });
- },
- handleUpdateStatus(status) {
- this.updateStatusParam.status = status;
- this.$confirm("是否要进行此操作?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- updateApplyStatus(this.id, this.updateStatusParam).then((response) => {
- this.$message({
- type: "success",
- message: "操作成功!",
- duration: 1000,
- });
- this.$router.back();
- });
- });
- },
- },
- };
- </script>
- <style scoped>
- .detail-container {
- position: absolute;
- left: 0;
- right: 0;
- width: 1080px;
- padding: 35px 35px 15px 35px;
- margin: 20px auto;
- }
- .standard-margin {
- margin-top: 15px;
- }
- .form-border {
- border-right: 1px solid #dcdfe6;
- border-bottom: 1px solid #dcdfe6;
- padding: 10px;
- }
- .form-container-border {
- border-left: 1px solid #dcdfe6;
- border-top: 1px solid #dcdfe6;
- margin-top: 15px;
- }
- .form-left-bg {
- background: #f2f6fc;
- }
- </style>
|