|
@@ -321,17 +321,17 @@
|
|
|
</view>
|
|
</view>
|
|
|
<div class="app-footer">
|
|
<div class="app-footer">
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
|
- <button class="admin-button-com default" v-if="detailInfo.status == 4" open-type="share">分享</button>
|
|
|
|
|
|
|
+ <button class="admin-button-com middle blue" open-type="share">分享</button>
|
|
|
<!-- #endif -->
|
|
<!-- #endif -->
|
|
|
<!-- #ifdef APP-PLUS -->
|
|
<!-- #ifdef APP-PLUS -->
|
|
|
- <button class="admin-button-com default" v-if="detailInfo.status == 4" @click="shareOrder()">分享</button>
|
|
|
|
|
|
|
+ <button class="admin-button-com middle blue" @click="shareOrder()">分享</button>
|
|
|
<!-- #endif -->
|
|
<!-- #endif -->
|
|
|
|
|
|
|
|
- <button class="admin-button-com default" style="width:240upx;" v-if="detailInfo.status != 1 && detailInfo.status != 5" @click="printOrder(detailInfo)">打印(无价)</button>
|
|
|
|
|
|
|
+ <button class="admin-button-com middle blue" v-if="detailInfo.status != 1 && detailInfo.status != 5" @click="printOrder(detailInfo)">打印(无价)</button>
|
|
|
|
|
|
|
|
- <button @click="cancelOrderFn(detailInfo)" v-if="detailInfo.status == 1" class="admin-button-com default" :class="active">取消</button>
|
|
|
|
|
|
|
+ <button @click="cancelOrderFn(detailInfo)" v-if="detailInfo.status == 1" class="admin-button-com middle blue" :class="active">取消</button>
|
|
|
<template v-for="s in detailInfo.buttonList">
|
|
<template v-for="s in detailInfo.buttonList">
|
|
|
- <button :key="s.type" @click="clickBtn(s, detailInfo)" v-if="s.show == 1" :disabled="s.disable === 1" class="admin-button-com default" :class="s.disable === 1?'active':''">
|
|
|
|
|
|
|
+ <button :key="s.type" @click="clickBtn(s, detailInfo)" v-if="s.show == 1" :disabled="s.disable === 1" class="admin-button-com middle blue" :class="s.disable === 1?'active':''">
|
|
|
{{ s.type === "print" ? s.name+`(${detailInfo.printNum})` : s.name}}
|
|
{{ s.type === "print" ? s.name+`(${detailInfo.printNum})` : s.name}}
|
|
|
</button>
|
|
</button>
|
|
|
</template>
|
|
</template>
|
|
@@ -1178,21 +1178,6 @@ export default {
|
|
|
.app-footer {
|
|
.app-footer {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- justify-content: flex-end;
|
|
|
|
|
- & .admin-button-com {
|
|
|
|
|
- padding: 0;
|
|
|
|
|
- margin-right:40upx;
|
|
|
|
|
- width: 180upx;
|
|
|
|
|
- height: 90upx;
|
|
|
|
|
- line-height: 90upx;
|
|
|
|
|
- font-size:30upx;
|
|
|
|
|
- text-align: center;
|
|
|
|
|
- color: #3385ff;
|
|
|
|
|
- border: 1upx solid #3385ff;
|
|
|
|
|
- &.active{
|
|
|
|
|
- color: #666666;
|
|
|
|
|
- border: 1upx solid #ccc;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ justify-content: space-around;
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|