|
|
@@ -298,6 +298,21 @@
|
|
|
<el-table height="500" border v-loading="loading" :data="storeOrderList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="订单号" align="center" prop="orderCode" width="200px" />
|
|
|
+ <el-table-column label="店铺名称" align="center" prop="storeName" width="150px" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.storeName}} </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="商家ID" align="center" prop="merchantId" width="150px" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.merchantId}} </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="店铺ID" align="center" prop="storeSeq" width="150px" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.storeSeq}} </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="所属公司" align="center" prop="companyName" />
|
|
|
<el-table-column label="所属员工" align="center" prop="companyUserNickName" />
|
|
|
<el-table-column label="用户昵称" align="center" prop="nickname" width="150px" >
|
|
|
@@ -379,22 +394,6 @@
|
|
|
<el-tag prop="status" v-for="(item, index) in deliveryPayStatusOptions" v-if="scope.row.deliveryPayStatus==item.dictValue">{{item.dictLabel}}</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="店铺名称" align="center" prop="storeName" width="150px" >
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{scope.row.storeName}} </span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="商家ID" align="center" prop="merchantId" width="150px" >
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{scope.row.merchantId}} </span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="店铺ID" align="center" prop="storeSeq" width="150px" >
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{scope.row.storeSeq}} </span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
<el-table-column label="操作" fixed="right" width="80px" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|