Commit bad0b4dd by 吕明尚

修改操作

parent 75d572a1
...@@ -282,7 +282,7 @@ ...@@ -282,7 +282,7 @@
<!-- <dict-tag :options="dict.type.order_pay_status" :value="scope.row.payStatus"/>--> <!-- <dict-tag :options="dict.type.order_pay_status" :value="scope.row.payStatus"/>-->
<!-- </template>--> <!-- </template>-->
<!-- </el-table-column>--> <!-- </el-table-column>-->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column align="center" class-name="small-padding fixed-width" label="操作" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button v-if="scope.row.payStatus == 1 && scope.row.status != 3" <el-button v-if="scope.row.payStatus == 1 && scope.row.status != 3"
size="mini" size="mini"
...@@ -293,7 +293,7 @@ ...@@ -293,7 +293,7 @@
>退款</el-button> >退款</el-button>
<el-button v-if="scope.row.status ==0 || scope.row.status == 1" <el-button v-if="scope.row.status ==0 || scope.row.status == 1"
v-hasPermi="['system:order:change']" v-hasPermi="['system:order:change']"
icon="el-icon-edit" icon="el-icon-office-building"
size="mini" size="mini"
type="text" type="text"
@click="changeRoom(scope.row)" @click="changeRoom(scope.row)"
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<el-table-column align="center" label="门店名称" prop="storeName" width="120"/> <el-table-column align="center" label="门店名称" prop="storeName" width="120"/>
<el-table-column align="center" label="房间名称" prop="roomName" width="120"/> <el-table-column align="center" label="房间名称" prop="roomName" width="120"/>
<el-table-column align="center" label="手机号" prop="consumerPhone" width="110"/> <el-table-column align="center" label="手机号" prop="consumerPhone" width="110"/>
<el-table-column align="center" label="会员昵称" prop="consumerName"/> <el-table-column align="center" label="会员昵称" prop="consumerName" width="100"/>
<el-table-column align="center" label="预约开始时间" prop="preStartDate" width="100"> <el-table-column align="center" label="预约开始时间" prop="preStartDate" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ parseTime(scope.row.preStartDate, '{y}-{m}-{d} {h}:{i}') }}</span> <span>{{ parseTime(scope.row.preStartDate, '{y}-{m}-{d} {h}:{i}') }}</span>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<span>{{ parseTime(scope.row.endDate, '{y}-{m}-{d} {h}:{i}') }}</span> <span>{{ parseTime(scope.row.endDate, '{y}-{m}-{d} {h}:{i}') }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="订单状态" align="center" prop="status"> <el-table-column align="center" label="订单状态" prop="status" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<dict-tag :options="dict.type.order_status_admin" :value="scope.row.status"/> <dict-tag :options="dict.type.order_status_admin" :value="scope.row.status"/>
</template> </template>
......
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