Commit fcb4250e by 吕明尚

修改订单显示

parent 3e593dcf
......@@ -268,7 +268,7 @@
<dict-tag :options="dict.type.order_status_admin" :value="scope.row.status"/>
</template>
</el-table-column>
<el-table-column v-if="columns[23].visible" align="center" label="单时间" prop="createTime" width="100">
<el-table-column v-if="columns[23].visible" align="center" label="单时间" prop="createTime" width="100">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
......@@ -435,7 +435,7 @@
<el-form ref="changeForm" :model="changeForm" :rules="changeRules" label-width="150px">
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="订单号" prop="orderNo">
<el-form-item label="订单号" prop="orderNo">
<el-input v-model="changeForm.orderNo" :readonly="true"/>
</el-form-item>
</el-col>
......
......@@ -17,7 +17,7 @@
<el-table-column align="center" label="订单编号" prop="orderNo" width="250"/>
<el-table-column align="center" label="门店名称" prop="storeName"/>
<el-table-column align="center" label="房间名称" prop="roomName"/>
<el-table-column align="center" label="手机号" prop="consumerPhone"/>
<el-table-column align="center" label="会员手机号" prop="consumerPhone"/>
<el-table-column align="center" label="会员昵称" prop="consumerName"/>
<el-table-column align="center" label="预约开始时间" prop="preStartDate">
<template slot-scope="scope">
......@@ -29,12 +29,12 @@
<span>{{ parseTime(scope.row.preEndDate, '{y}-{m}-{d} {h}:{i}') }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="开始时间" prop="startDate">
<el-table-column align="center" label="实际开始时间" prop="startDate">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.startDate, '{y}-{m}-{d} {h}:{i}') }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="结束时间" prop="endDate">
<el-table-column align="center" label="实际结束时间" prop="endDate">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.endDate, '{y}-{m}-{d} {h}:{i}') }}</span>
</template>
......
......@@ -167,7 +167,6 @@
<el-button
size="mini"
type="text"
icon="el-icon-user"
@click="handleOrder(scope.row)"
v-hasPermi="['system:store:edit']"
>查看订单
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment