|
@@ -65,7 +65,7 @@
|
|
|
|
|
|
<!-- 列表区域 -->
|
|
<!-- 列表区域 -->
|
|
<Page uri="/mapi/order/cloth/list" :request-params="queryParams" ref="pagination">
|
|
<Page uri="/mapi/order/cloth/list" :request-params="queryParams" ref="pagination">
|
|
- <el-table-column label="订单编号" align="center" width="180">
|
|
|
|
|
|
+ <el-table-column label="订单编号" align="center" width="110">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.orderNo }}
|
|
{{ scope.row.orderNo }}
|
|
</template>
|
|
</template>
|
|
@@ -75,45 +75,38 @@
|
|
{{ scope.row.orderClothCount }}件
|
|
{{ scope.row.orderClothCount }}件
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="门店信息" align="center" width="140">
|
|
|
|
|
|
+ <el-table-column label="门店信息" align="center" width="120">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <i class="el-icon-s-shop"></i>
|
|
|
|
{{ scope.row.sysOrg.name }}
|
|
{{ scope.row.sysOrg.name }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="客户姓名" align="center" width="80">
|
|
|
|
|
|
+ <el-table-column label="客户姓名" align="center" width="120">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <div class="customer-name">
|
|
|
|
- <i class="el-icon-user"></i>
|
|
|
|
- {{ scope.row.appUserName || '--' }}
|
|
|
|
- </div>
|
|
|
|
|
|
+ {{ scope.row.appUserName || '--' }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="手机号" align="center" width="120">
|
|
|
|
|
|
+ <el-table-column label="手机号" align="center" width="100">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <div class="customer-phone" v-if="scope.row.appUserPhoneNumber">
|
|
|
|
- <i class="el-icon-mobile-phone"></i>
|
|
|
|
- {{ scope.row.appUserPhoneNumber }}
|
|
|
|
- </div>
|
|
|
|
|
|
+ {{ scope.row.appUserPhoneNumber }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="支付方式" align="center" width="100">
|
|
|
|
|
|
+ <el-table-column label="支付方式" align="center" width="90">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-tag type="warning" v-if="scope.row.payStatus == 0">未付款</el-tag>
|
|
<el-tag type="warning" v-if="scope.row.payStatus == 0">未付款</el-tag>
|
|
<dict-tag v-else :options="dict.type.recharge_pay_type" :value="scope.row.payType" />
|
|
<dict-tag v-else :options="dict.type.recharge_pay_type" :value="scope.row.payType" />
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="订单金额" align="center" width="100">
|
|
|
|
|
|
+ <el-table-column label="订单金额" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span class="value">{{ scope.row.orderAmount ? '¥' + scope.row.orderAmount : '--' }}</span>
|
|
<span class="value">{{ scope.row.orderAmount ? '¥' + scope.row.orderAmount : '--' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="支付金额" align="center" width="100">
|
|
|
|
|
|
+ <el-table-column label="支付金额" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span class="value">{{ scope.row.payAmount ? '¥' + scope.row.payAmount : '--' }}</span>
|
|
<span class="value">{{ scope.row.payAmount ? '¥' + scope.row.payAmount : '--' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="收款类型" align="center" width="100">
|
|
|
|
|
|
+ <el-table-column label="收款类型" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.payTimeType === '0' ? '收衣付款' : '取衣付款' }}
|
|
{{ scope.row.payTimeType === '0' ? '收衣付款' : '取衣付款' }}
|
|
</template>
|
|
</template>
|
|
@@ -139,15 +132,18 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</el-table-column> -->
|
|
</el-table-column> -->
|
|
- <el-table-column label="下单时间" align="center" width="180">
|
|
|
|
|
|
+ <el-table-column label="支付时间" align="center" width="150">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <div class="time-info">
|
|
|
|
- <i class="el-icon-time"></i>
|
|
|
|
- {{ scope.row.createTime }}
|
|
|
|
- </div>
|
|
|
|
|
|
+ <span v-if="scope.row.payStatus == 0">--</span>
|
|
|
|
+ <span v-else>{{ scope.row.payTime }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="下单时间" align="center" width="150">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ {{ scope.row.createTime }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="操作" align="center" min-width="240" fixed="right">
|
|
|
|
|
|
+ <el-table-column label="操作" align="center" min-width="180" fixed="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button type="text" icon="el-icon-s-order" size="mini" @click="handleDetail(scope.row)"> 订单详情 </el-button>
|
|
<el-button type="text" icon="el-icon-s-order" size="mini" @click="handleDetail(scope.row)"> 订单详情 </el-button>
|
|
<el-button type="text" icon="el-icon-printer" size="mini" @click="btn_lodop(scope.row)" v-if="userInfoVO.userType != '00' && scope.row.orderAmount"> 打印订单 </el-button>
|
|
<el-button type="text" icon="el-icon-printer" size="mini" @click="btn_lodop(scope.row)" v-if="userInfoVO.userType != '00' && scope.row.orderAmount"> 打印订单 </el-button>
|