|
@@ -59,7 +59,7 @@
|
|
|
<el-option label="有" value="1" />
|
|
|
<el-option label="无" value="0" />
|
|
|
</el-select>
|
|
|
- <el-button class="filter-item" type="primary" icon="el-icon-search" @click="handleFilter">查询</el-button>
|
|
|
+ <el-button class="filter-item" type="success" icon="el-icon-search" @click="handleFilter">查询</el-button>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
|
|
@@ -84,7 +84,7 @@
|
|
|
<el-table-column label="订单状态" align="center" prop="status">
|
|
|
<template slot-scope="{row}">
|
|
|
<template v-if="['11','12','13','21','22','23','31','32','33'].indexOf(row.status)>=0">
|
|
|
- <el-tag type="success" size="small">交易中</el-tag><span>{{ '('+statusObj[row.status]+')' }}</span>
|
|
|
+ <el-tag type="success" size="small">交易中</el-tag><span style="display: inline-block;margin:5px;">{{ statusObj[row.status] }}</span>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<el-tag :type="row.status*1===6?'info':''" size="small">{{ statusObj[row.status] }}</el-tag>
|
|
@@ -132,15 +132,16 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="下单时间" prop="orderTime">
|
|
|
<template v-if="row.orderTime" slot-scope="{row}">
|
|
|
- <i class="el-icon-time" />
|
|
|
<span>{{ row.orderTime | parseTime('{y}-{m}-{d} {h}:{i}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="{row}">
|
|
|
- <router-link :to="'/order/detail/' + row.orderID "><el-button type="primary" size="small">查看详情</el-button></router-link>
|
|
|
+ <router-link :to="'/order/detail/' + row.orderID ">
|
|
|
+ <el-button type="primary" size="mini" style="width: 80px;margin:5px 0 0 0;">查看详情</el-button>
|
|
|
+ </router-link>
|
|
|
<el-dropdown>
|
|
|
- <el-button type="success" size="small" style="width: 80px; margin-top:5px;">
|
|
|
+ <el-button type="success" size="mini" style="width: 80px;margin:5px 0 0 0;">
|
|
|
功能<i class="el-icon-arrow-down el-icon--right" />
|
|
|
</el-button>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
@@ -154,7 +155,7 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <pagination v-show="total>0" :total="total" :page.sync="listQuery.index" :limit.sync="listQuery.pageSize" @pagination="fetchData" />
|
|
|
+ <pagination v-show="total>20" :total="total" :page.sync="listQuery.index" :limit.sync="listQuery.pageSize" @pagination="fetchData" />
|
|
|
|
|
|
<Remarks dialog-title="订单备注信息" :is-visible.sync="dialogRemarksVisible" :order-id="dialogRemarksOrderId" :remark-list="dialogRemarkList" />
|
|
|
<template>
|