#I1BLJM #I1BLV6

This commit is contained in:
hupeng
2020-03-14 18:19:21 +08:00
parent 6a841773ba
commit 66d08cc899
2 changed files with 5 additions and 5 deletions

View File

@ -103,7 +103,7 @@
:src="item.url"
fit="contain"
:preview-src-list="[item.url]"
z-index="999"
:z-index=999
/>
<div>
<el-checkbox class="material-name" :label="item.url">

View File

@ -25,8 +25,8 @@
<div class="text item">订单状态: {{ form.statusName }}</div>
<div class="text item">商品总价: {{ form.totalPrice }}</div>
<div class="text item">优惠券金额: {{ form.couponPrice }}</div>
<div class="text item">创建时间: {{ formatTime(form.addTime) }}</div>
<div class="text item">支付时间: {{ formatTime(form.payTime) }}</div>
<div class="text item">创建时间: {{ parseTime(form.addTime) }}</div>
<div class="text item">支付时间: {{ parseTime(form.payTime) }}</div>
</el-col>
</el-row>
</el-card>
@ -48,7 +48,7 @@
<script>
import { add, edit } from '@/api/yxStoreOrder'
import { formatTime } from '@/utils/index'
import { parseTime } from '@/utils/index'
export default {
props: {
isAdd: {
@ -120,7 +120,7 @@ export default {
}
},
methods: {
formatTime,
parseTime,
cancel() {
this.resetForm()
},