orderDetial.vue 11.6 KB
Newer Older
lixiaomin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
<template>
  <div class="app-container">
    <!-- 详情对话框 -->
    <el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
      <el-tabs v-model="activeName" @tab-click="handleClick">
        <el-tab-pane label="订单信息" name="first">
          <el-form ref="form" :model="form" label-width="80px">
            <el-row>
              <el-col :span="8">
                <el-form-item label="订单编号" >
                  <el-input v-model="form.orderNo" disabled/>
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="顺序号" >
                  <el-input v-model="form.orderNum" disabled/>
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="订单状态" >
                  <el-input v-model="form.state" disabled/>
                </el-form-item>
              </el-col>
            </el-row>
            <el-row>
              <el-col :span="8">
                <el-form-item label="城市" >
                  <el-input v-model="form.city" disabled/>
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="店铺" >
                  <el-input v-model="form.shopName" disabled/>
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="创建时间" >
                  <el-input v-model="form.createdAt" disabled/>
                </el-form-item>
              </el-col>
            </el-row>
            <el-row>
              <el-col :span="8">
                <el-form-item label="商品数量" >
                  <el-input v-model="form.goodsNum" disabled/>
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="金额" >
                  <el-input v-model="form.amount" disabled/>
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="付款时间" >
                  <el-input v-model="form.payTime" disabled/>
                </el-form-item>
              </el-col>
            </el-row>
            <el-row>
              <el-col :span="8">
                <el-form-item label="用户昵称" >
                  <el-input v-model="form.userName" disabled/>
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="用户电话" >
lixiaomin committed
67
                  <el-input v-model="form.userPhone" disabled/>
lixiaomin committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
                </el-form-item>
              </el-col>
              <el-col :span="8">
                <el-form-item label="完成时间" >
                  <el-input v-model="form.finishTime" disabled/>
                </el-form-item>
              </el-col>
            </el-row>           
            <el-table :data="goodsList">
              <el-table-column label="商品名称" align="center" prop="goodsName" />
              <el-table-column label="缩略图" align="center">
                <template slot-scope="scope">              
                  <div class="image-tmp">
                    <el-image style="width: 100px; height: 100px"  :src="getPicsList(scope.row.pics)" :preview-src-list="getPicsBigList(scope.row.pics)">
                      <div slot="error" class="image-slot"></div>            
                    </el-image>
                  </div>    
                </template>
              </el-table-column>
              <el-table-column label="商品分类" align="center" prop="categoryName" />
lixiaomin committed
88 89
              <el-table-column label="原售价" align="center" prop="amount" />
              <el-table-column label="折扣价" align="center" prop="realAmount" />
lixiaomin committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
              <el-table-column label="实付" align="center" prop="realAmount" />
              <el-table-column label="数量" align="center" prop="num" />              
            </el-table>  
          </el-form>
          <div v-show="refundTag" style="margin-top: 20px;" >
            <el-form ref="refundForm" :rules="rules" :model="refundForm" label-width="80px">
              <el-form-item label="退款金额" prop="refundAmount">
                <el-input  v-model="refundForm.refundAmount" style="width:200px;" placeholder="请输入退款金额"/>
              </el-form-item>
              <el-form-item label="处理备注" prop="desc">
                <el-input  v-model="refundForm.desc" type="textarea" placeholder="请输入处理备注"/>
              </el-form-item>
            </el-form>
          </div>
        </el-tab-pane>
        <el-tab-pane label="订单日志" name="second">
          <el-table  :data="logList">
            <el-table-column label="状态" align="center" prop="status" />              
            <el-table-column label="操作" align="center" prop="operation" />
            <el-table-column label="时间" align="center" prop="createAt" />
            <el-table-column label="操作人" align="center" prop="operationUser" />
            <el-table-column label="内容" align="center" prop="content" />        
            </el-table>
        </el-tab-pane>
      </el-tabs>      
      <div slot="footer" class="dialog-footer" style="text-align: center;">
        <el-button v-show="!refundTag" type="primary" @click="submitForm">确定</el-button>
        <el-button v-show="refundTag" type="danger" @click="refundSubmit">退款</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import { getOrder,getLogList,refund } from "@/api/system/order";
import piovince from '@/utils/piovince';
export default {
  name: "OrderDetial",  
  data() {
    var validateRefundAmount = (rule, value, callback) => {    
      var regular=/(^[+]{0,1}([0-9]+)$)|(^[+]{0,1}([0-9]+)[\.]{1}[0-9]{1,2}$)/; //正数 ,小数可有可无,最多2位
      if (value == undefined || value === '') {        
        callback(new Error('不能为空'));
      }else if(!regular.test(value)){    
        callback(new Error('请输入大于0的正数,最多保留2位小数'));     
      }else if(this.amount){
137 138 139
        let refundAmountValue=parseFloat(value);
        let amountValue=parseFloat(this.amount);
        if(refundAmountValue>amountValue){
lixiaomin committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
          callback(new Error('退款金额不能大于实付金额'));
        }else {
          callback();
        }
      }else {
        callback();
      }
    };
    return {
      refundTag:false,
      piovince,
      // 总条数
      total: 0,
      // 订单表格数据
      refundList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,     
      shopName: null,    
      goodsList:[],
      // 表单参数
      form: {},
      //退款表单
      refundForm: {
        refundAmount:"",
        desc:"",
        orderId:""
      },
      rules: {
        refundAmount: [
          { required: true,validator: validateRefundAmount,  trigger: 'blur' }
        ],
        desc: [
          { required: true, message: '请输入退款处理', trigger: 'blur' }
        ]
      },
      activeName:"first",
      logList: []      
    };
  },
  created() {
   
  },
  methods: {
    getProvince(province){
      let list=this.piovince;
      for(let i=0;i<list.length;i++){
lixiaomin committed
188 189 190 191 192 193 194 195
        if(list[i].children.length>0){
          let childrenList=list[i].children;
          for(let j=0;j<childrenList.length;j++){
            if(childrenList[j].value == province){
              return childrenList[j].name;
            } 
          }
        }       
lixiaomin committed
196 197 198 199 200 201 202 203 204 205 206 207 208
      }
    },
    // 取消按钮
    cancel() {
      this.activeName="first";
      this.open = false;    
    },
    /** 提交按钮 */
    submitForm() {
      this.open=false;
      this.activeName="first"     
    },
    formatterState(state){
lixiaomin committed
209 210
       if(state == 0){
        return "创建未校验(创建未校验)";
lixiaomin committed
211
      }else if(state == 1){
lixiaomin committed
212
        return "未支付(待付款)";
lixiaomin committed
213
      }else if(state == 2){
lixiaomin committed
214
        return "已支付(待制作)";
lixiaomin committed
215
      }else if(state == 3){
lixiaomin committed
216
        return "支付制作中(制作中)";
lixiaomin committed
217
      }else if(state == 4){
lixiaomin committed
218
        return "制作完成未取(待取餐)";
lixiaomin committed
219
      }else if(state == 5){
lixiaomin committed
220
        return "取餐中(取餐中)";
lixiaomin committed
221
      }else if(state == 6){
lixiaomin committed
222
        return "正常完成(已完成)";
lixiaomin committed
223
      }else if(state == 7){
lixiaomin committed
224
       return "待取超时(已完成)";
lixiaomin committed
225
      }else if(state == 8){
lixiaomin committed
226
       return "未支付取消(已取消)";
lixiaomin committed
227
      }else if(state == 9){
lixiaomin committed
228
        return "支付后制作前取消(已取消)";
lixiaomin committed
229
      }else if(state == 10){
lixiaomin committed
230
        return "制作中取消(已取消)";        
lixiaomin committed
231
      }else if(state == 11){
lixiaomin committed
232
        return "制作完成取消(已取消)";  
lixiaomin committed
233
      }else if(state == 12){
lixiaomin committed
234
        return "退款中(退款中)";  
lixiaomin committed
235
      }else if(state == 13){
lixiaomin committed
236
        return "退款失败(退款失败)";  
lixiaomin committed
237
      }else if(state == 14){
lixiaomin committed
238
        return "部分退款(部分退款)";  
lixiaomin committed
239
      }else if(state == 15){
lixiaomin committed
240
        return "已退款(已退款)";  
lixiaomin committed
241
      }else if(state == 50){
lixiaomin committed
242
        return "其他人工干预状态(其他人工干预状态)";  
lixiaomin committed
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
      }
    },
    handleClick(tab) {
      if(tab.name=="first"){
        this.getOrderDetail(this.orderId);
      }else if(tab.name=="second"){
        this.getLogList();
      }
    },
    /** 查询订单日志列表 */
    getLogList() {
      //this.loading = true;
      getLogList({orderId:this.orderId}).then(response => {
        if(response.code=="200"){
          this.logList = response.data; 
        }
      });
    },
    //退款
    refundClick(row){
      this.refundForm.refundAmount="";
      this.refundForm.desc="";
      this.refundTag=true;
      this.title="退款处理";
      this.open=true;      
      this.goodsList=[];
      this.orderId= row.id; 
      this.amount=row.amount;
      this.getOrderDetail(this.orderId);
    },
    //提交退款
    refundSubmit(){
      this.refundForm.orderId=this.orderId;       
      this.$refs["refundForm"].validate((valid) => {       
        if (valid) {          
          refund(this.refundForm).then(response => {
            if(response.code="200"){
              this.open=false;
lixiaomin committed
281
              this.$emit('getList');
lixiaomin committed
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
            }
          }); 
        }         
      });    
    },
    /** 详情按钮操作 */
    handleUpdate(row) {
      this.refundTag=false;
      this.goodsList=[];
      this.orderId= row.id; 
      this.title="订单信息";
      this.open = true;
      this.getOrderDetail(this.orderId);
    },
    getOrderDetail(id){
      getOrder(id).then(response => {
        if(response.code=="200"){
lixiaomin committed
299
          this.goodsList=[];
lixiaomin committed
300 301 302 303 304 305 306 307 308
          this.form = response.data;
          this.form.shopName=response.data.shop.name;
          this.form.state=this.formatterState(response.data.state);  
          this.form.city=this.getProvince(response.data.shop.city);        
          if(response.data.orderDetails.length>0){
            let list=response.data.orderDetails;
            for(let i=0;i<list.length;i++){
             this.goodsList.push({"goodsName":list[i].goods.name,"pics":list[i].goods.pics,
             "categoryName":list[i].goods.categoryName,"price":list[i].goods.price,"discount":list[i].goods.discount,
lixiaomin committed
309
             "realAmount":list[i].realAmount,"num":list[i].num,"amount":list[i].amount})
lixiaomin committed
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
            }
          }
        }        
      });
    },
    getPicsList(str){   
      let picObj = JSON.parse(str);  
      return picObj.thumbnail
    },
    getPicsBigList(str){
      let list=[];
      let picObj = JSON.parse(str);  
      list.push(picObj.thumbnail)
      return list;
    },    
  }
};
</script>