fix:修复获取openid的code
This commit is contained in:
parent
03138b7089
commit
409d5f0ab8
@ -489,7 +489,8 @@ export default {
|
|||||||
day,
|
day,
|
||||||
value: [9999, month - 1, day - 1],
|
value: [9999, month - 1, day - 1],
|
||||||
visible: true,
|
visible: true,
|
||||||
url: ''
|
url: '',
|
||||||
|
status: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -750,6 +751,16 @@ export default {
|
|||||||
fileListLen++
|
fileListLen++
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
async getOpenId() {
|
||||||
|
uni.login({
|
||||||
|
provider: 'weixin',
|
||||||
|
success: async ({ code }) => {
|
||||||
|
const res = await this.$api.login.getOpenId({ code })
|
||||||
|
this.status = res.data.status
|
||||||
|
if (res.data.status !== 0) this.$common.msgToast(res.msg)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
async signContract() {
|
async signContract() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
const data1 = {
|
const data1 = {
|
||||||
@ -759,15 +770,11 @@ export default {
|
|||||||
'/api/v2/warehouse/create',
|
'/api/v2/warehouse/create',
|
||||||
data1
|
data1
|
||||||
)
|
)
|
||||||
if (res1.code === 200) {
|
await this.getOpenId()
|
||||||
const res3 = await this.$api.login.getOpenId()
|
if (res1.code === 200 && this.status === 0) {
|
||||||
if (res3.status === 0) {
|
const res2 = await postDataByParams('/api/v2/warehouse/paid', {
|
||||||
const res2 = await postDataByParams(
|
|
||||||
'/api/v2/warehouse/paid',
|
|
||||||
{
|
|
||||||
ID: res1.data.ID
|
ID: res1.data.ID
|
||||||
}
|
})
|
||||||
)
|
|
||||||
if (res2.code === 200) {
|
if (res2.code === 200) {
|
||||||
uni.requestPayment({
|
uni.requestPayment({
|
||||||
...res2.data,
|
...res2.data,
|
||||||
@ -782,9 +789,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
this.$common.msgToast(res3.msg)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async obtainAmount() {
|
async obtainAmount() {
|
||||||
|
@ -4,7 +4,12 @@
|
|||||||
<template #left>
|
<template #left>
|
||||||
<u-action-sheet
|
<u-action-sheet
|
||||||
:show="show"
|
:show="show"
|
||||||
:actions="statusValue.map(x=>({name:x.label,value:x.value}))"
|
:actions="
|
||||||
|
statusValue.map((x) => ({
|
||||||
|
name: x.label,
|
||||||
|
value: x.value
|
||||||
|
}))
|
||||||
|
"
|
||||||
title="请选择状态"
|
title="请选择状态"
|
||||||
@close="show = false"
|
@close="show = false"
|
||||||
@select="statusSelect"
|
@select="statusSelect"
|
||||||
@ -12,8 +17,17 @@
|
|||||||
</u-action-sheet>
|
</u-action-sheet>
|
||||||
<div @click="openStatus" class="wrap1">
|
<div @click="openStatus" class="wrap1">
|
||||||
<div class="wrap1_1">
|
<div class="wrap1_1">
|
||||||
<div class="wrap1_1_1">{{ statusValue.find(x => x.value === artworkStatus).label }}</div>
|
<div class="wrap1_1_1">
|
||||||
<image style="width: 12rpx;height: 8rpx" src="../../static/dbx2@3x.png"></image>
|
{{
|
||||||
|
statusValue.find(
|
||||||
|
(x) => x.value === artworkStatus
|
||||||
|
).label
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
<image
|
||||||
|
style="width: 12rpx; height: 8rpx"
|
||||||
|
src="../../static/dbx2@3x.png"
|
||||||
|
></image>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -24,66 +38,131 @@
|
|||||||
<image src="../../static/zu1@3x.png"></image>
|
<image src="../../static/zu1@3x.png"></image>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrap1_2"></div>
|
<div class="wrap1_2"></div>
|
||||||
<input v-model="mobileKey" placeholder-style="color: #C7C7C7;font-size: 20rpx;"
|
<input
|
||||||
placeholder="在此处搜索您的订单"/>
|
v-model="mobileKey"
|
||||||
|
placeholder-style="color: #C7C7C7;font-size: 20rpx;"
|
||||||
|
placeholder="在此处搜索您的订单"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrap2" @click="search">
|
<div class="wrap2" @click="search">搜索</div>
|
||||||
搜索
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content3">
|
<div class="content3">
|
||||||
<scroll-view :style="{height:`${elementBottom}rpx`}" class="scrollbox" :scroll-y="true" @scrolltolower="loadMore">
|
<scroll-view
|
||||||
|
:style="{ height: `${elementBottom}rpx` }"
|
||||||
|
class="scrollbox"
|
||||||
|
:scroll-y="true"
|
||||||
|
@scrolltolower="loadMore"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
v-for="(item,index) in mainList" :key="index"
|
v-for="(item, index) in mainList"
|
||||||
@touchstart="(e)=>{touchStart(e,index)}"
|
:key="index"
|
||||||
@touchmove="(e)=>{touchMove(e,index)}"
|
@touchstart="
|
||||||
@touchend="()=>{touchEnd(index)}"
|
(e) => {
|
||||||
|
touchStart(e, index)
|
||||||
|
}
|
||||||
|
"
|
||||||
|
@touchmove="
|
||||||
|
(e) => {
|
||||||
|
touchMove(e, index)
|
||||||
|
}
|
||||||
|
"
|
||||||
|
@touchend="
|
||||||
|
() => {
|
||||||
|
touchEnd(index)
|
||||||
|
}
|
||||||
|
"
|
||||||
@click="goRouter(item)"
|
@click="goRouter(item)"
|
||||||
:style="{transform: `translateX(${item.distanceX}px)`}" class="wrap1">
|
:style="{ transform: `translateX(${item.distanceX}px)` }"
|
||||||
|
class="wrap1"
|
||||||
|
>
|
||||||
<div class="wrap1_1">
|
<div class="wrap1_1">
|
||||||
<image :src="item.artworkImg?item.artworkImg:'../../static/jx632@3x.png'"></image>
|
<image
|
||||||
|
:src="
|
||||||
|
item.artworkImg
|
||||||
|
? item.artworkImg
|
||||||
|
: '../../static/jx632@3x.png'
|
||||||
|
"
|
||||||
|
></image>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrap1_2">
|
<div class="wrap1_2">
|
||||||
<div class="wrap1_2_1">{{ item.artworkName }}</div>
|
<div class="wrap1_2_1">{{ item.artworkName }}</div>
|
||||||
<!-- <div class="wrap1_2_2">订单号:{{ item.artworkName }}</div>-->
|
<!-- <div class="wrap1_2_2">订单号:{{ item.artworkName }}</div>-->
|
||||||
<div class="wrap1_2_3">{{ item.artworkSquareSize }}平尺</div>
|
<div class="wrap1_2_3">
|
||||||
|
{{ item.artworkSquareSize }}平尺
|
||||||
|
</div>
|
||||||
<div class="wrap1_2_4">
|
<div class="wrap1_2_4">
|
||||||
<div v-if="![1].includes(item.artworkStatus)">
|
<div v-if="![1].includes(item.artworkStatus)">
|
||||||
{{ item.startAt.replaceAll('-','.') || '' }}-{{ item.endAt.replaceAll('-','.') || '' }}
|
{{ item.startAt.replaceAll('-', '.') || '' }}-{{
|
||||||
|
item.endAt.replaceAll('-', '.') || ''
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
<div v-else>{{ item.cycleName }}</div>
|
<div v-else>{{ item.cycleName }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrap1_3" :class="[`status${item.artworkStatus}`]">
|
<div
|
||||||
|
class="wrap1_3"
|
||||||
|
:class="[`status${item.artworkStatus}`]"
|
||||||
|
>
|
||||||
<div class="wrap1_3_1" v-if="item.artworkStatus === 4">
|
<div class="wrap1_3_1" v-if="item.artworkStatus === 4">
|
||||||
<div class="wrap1_3_1_1">{{ item.endAt }}</div>
|
<div class="wrap1_3_1_1">{{ item.endAt }}</div>
|
||||||
<div class="wrap1_3_1_2">已延期</div>
|
<div class="wrap1_3_1_2">已延期</div>
|
||||||
<div class="wrap1_3_1_3" v-if="item.isSupplementary" @click.stop="openShow2(item)">点击补款</div>
|
<div
|
||||||
|
class="wrap1_3_1_3"
|
||||||
|
v-if="item.isSupplementary"
|
||||||
|
@click.stop="openShow2(item)"
|
||||||
|
>
|
||||||
|
点击补款
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrap1_3_3" v-if="item.artworkStatus !== 4">
|
<div class="wrap1_3_3" v-if="item.artworkStatus !== 4">
|
||||||
<div class="wrap1_3_3_1">{{ statusValue.find(x => x.value === item.artworkStatus).label }}</div>
|
<div class="wrap1_3_3_1">
|
||||||
|
{{
|
||||||
|
statusValue.find(
|
||||||
|
(x) => x.value === item.artworkStatus
|
||||||
|
).label
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="item.shelvesNum" class="wrap1_3_2">
|
<div v-if="item.shelvesNum" class="wrap1_3_2">
|
||||||
<div class="wrap1_3_2_1">货架号:</div>
|
<div class="wrap1_3_2_1">货架号:</div>
|
||||||
<div class="wrap1_3_2_2">{{ item.shelvesNum }}</div>
|
<div class="wrap1_3_2_2">{{ item.shelvesNum }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!item.shelvesNum" class="wrap1_3_2">
|
<div v-if="!item.shelvesNum" class="wrap1_3_2">
|
||||||
<div class="wrap1_3_2_2">{{item.warehouseName}}</div>
|
<div class="wrap1_3_2_2">
|
||||||
</div>
|
{{ item.warehouseName }}
|
||||||
<div class="wrap1_3_4" v-if="![1,5].includes(item.artworkStatus)" @click.stop="pickUp(item)">
|
|
||||||
{{item.isUserApplyPickUp?'取消申请':'申请取货'}}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrap1_4" v-if="item.isRight&&item.artworkStatus===5" @click.stop="openDelete(item)">
|
<div
|
||||||
<image style="width: 80rpx;height: 80rpx" src="../../static/zu154@3x.png"></image>
|
class="wrap1_3_4"
|
||||||
|
v-if="![1, 5].includes(item.artworkStatus)"
|
||||||
|
@click.stop="pickUp(item)"
|
||||||
|
>
|
||||||
|
{{
|
||||||
|
item.isUserApplyPickUp ? '取消申请' : '申请取货'
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="wrap1_4"
|
||||||
|
v-if="item.isRight && item.artworkStatus === 5"
|
||||||
|
@click.stop="openDelete(item)"
|
||||||
|
>
|
||||||
|
<image
|
||||||
|
style="width: 80rpx; height: 80rpx"
|
||||||
|
src="../../static/zu154@3x.png"
|
||||||
|
></image>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</div>
|
</div>
|
||||||
<uni-popup ref="alertDialog" type="dialog">
|
<uni-popup ref="alertDialog" type="dialog">
|
||||||
<uni-popup-dialog :type="'info'" cancelText="关闭" confirmText="确认" title="提示" :content="messageText"
|
<uni-popup-dialog
|
||||||
|
:type="'info'"
|
||||||
|
cancelText="关闭"
|
||||||
|
confirmText="确认"
|
||||||
|
title="提示"
|
||||||
|
:content="messageText"
|
||||||
@confirm="popForward"
|
@confirm="popForward"
|
||||||
></uni-popup-dialog>
|
></uni-popup-dialog>
|
||||||
</uni-popup>
|
</uni-popup>
|
||||||
@ -91,12 +170,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import tabbar from "../../components/uiq-tabbar/uiq-tabbar.vue";
|
import tabbar from '../../components/uiq-tabbar/uiq-tabbar.vue'
|
||||||
import UImage from "../../uview-ui/components/u--image/u--image.vue";
|
import UImage from '../../uview-ui/components/u--image/u--image.vue'
|
||||||
import {postDataByParams} from "../../http/service";
|
import { postDataByParams } from '../../http/service'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "index",
|
name: 'index',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
messageText: '',
|
messageText: '',
|
||||||
@ -111,15 +190,23 @@ export default {
|
|||||||
artworkStatus: 0,
|
artworkStatus: 0,
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
mainList: [],
|
mainList: [],
|
||||||
statusValue: [{label: '全部状态', value: 0}, {label: '待入库', value: 1}, {
|
statusValue: [
|
||||||
|
{ label: '全部状态', value: 0 },
|
||||||
|
{ label: '待入库', value: 1 },
|
||||||
|
{
|
||||||
label: '已入库',
|
label: '已入库',
|
||||||
value: 2
|
value: 2
|
||||||
}, {label: '即将到期', value: 3}, {label: '延期未补款', value: 4}, {label: '延期已补款', value: 7}, {label: '已取出', value: 5}]
|
},
|
||||||
|
{ label: '即将到期', value: 3 },
|
||||||
|
{ label: '延期未补款', value: 4 },
|
||||||
|
{ label: '延期已补款', value: 7 },
|
||||||
|
{ label: '已取出', value: 5 }
|
||||||
|
],
|
||||||
|
status: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: { UImage, tabbar },
|
components: { UImage, tabbar },
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
||||||
uni.getSystemInfo({
|
uni.getSystemInfo({
|
||||||
success: (res) => {
|
success: (res) => {
|
||||||
this.windowWidth = res.windowWidth
|
this.windowWidth = res.windowWidth
|
||||||
@ -157,7 +244,6 @@ export default {
|
|||||||
this.getData()
|
this.getData()
|
||||||
},
|
},
|
||||||
popForward() {
|
popForward() {
|
||||||
|
|
||||||
if (this.messageText === '确认补款吗') {
|
if (this.messageText === '确认补款吗') {
|
||||||
this.supplementaryPayment()
|
this.supplementaryPayment()
|
||||||
} else if (this.messageText === '确认删除吗') {
|
} else if (this.messageText === '确认删除吗') {
|
||||||
@ -169,36 +255,55 @@ export default {
|
|||||||
this.messageText = `确认补款吗`
|
this.messageText = `确认补款吗`
|
||||||
this.$refs.alertDialog.open()
|
this.$refs.alertDialog.open()
|
||||||
},
|
},
|
||||||
|
async getOpenId() {
|
||||||
|
uni.login({
|
||||||
|
provider: 'weixin',
|
||||||
|
success: async ({ code }) => {
|
||||||
|
const res = await this.$api.login.getOpenId({ code })
|
||||||
|
this.status = res.data.status
|
||||||
|
if (res.data.status !== 0) this.$common.msgToast(res.msg)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
async supplementaryPayment() {
|
async supplementaryPayment() {
|
||||||
const data = {
|
const data = {
|
||||||
ID: this.item.ID
|
ID: this.item.ID
|
||||||
}
|
}
|
||||||
const res3 = await this.$api.login.getOpenId()
|
const res = await postDataByParams(
|
||||||
if(res3.status === 0) {
|
'/api/warehouse/supply/paid',
|
||||||
const res = await postDataByParams('/api/warehouse/supply/paid', data)
|
data
|
||||||
if (res.code===200){
|
)
|
||||||
uni.requestPayment({...res.data,fail:(res)=>{
|
await this.getOpenId()
|
||||||
},success:()=>{
|
if (res.code === 200 && this.status === 0) {
|
||||||
|
uni.requestPayment({
|
||||||
|
...res.data,
|
||||||
|
fail: (res) => {},
|
||||||
|
success: () => {
|
||||||
this.getData()
|
this.getData()
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '补款成功',
|
title: '补款成功',
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
})
|
})
|
||||||
}})
|
}
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.msg,
|
title: res.msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
this.$common.msgToast(res3.msg)
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
async getDistanceFromTopToPageBottom(classValue) {
|
async getDistanceFromTopToPageBottom(classValue) {
|
||||||
const {windowHeight, windowWidth} = await uni.getSystemInfo();
|
const { windowHeight, windowWidth } = await uni.getSystemInfo()
|
||||||
const [{top}] = await new Promise(resolve => uni.createSelectorQuery().select(classValue).boundingClientRect().exec(resolve));
|
const [{ top }] = await new Promise((resolve) =>
|
||||||
this.elementBottom = ((windowHeight - top) / windowWidth) * 750 - 175;
|
uni
|
||||||
|
.createSelectorQuery()
|
||||||
|
.select(classValue)
|
||||||
|
.boundingClientRect()
|
||||||
|
.exec(resolve)
|
||||||
|
)
|
||||||
|
this.elementBottom =
|
||||||
|
((windowHeight - top) / windowWidth) * 750 - 175
|
||||||
/* if(uni.getSystemInfoSync().platform === 'ios'){
|
/* if(uni.getSystemInfoSync().platform === 'ios'){
|
||||||
this.elementBottom = ((windowHeight - top) / windowWidth) * 750 - 175;
|
this.elementBottom = ((windowHeight - top) / windowWidth) * 750 - 175;
|
||||||
}else {
|
}else {
|
||||||
@ -272,35 +377,40 @@ export default {
|
|||||||
if (this.mainList[index].artworkStatus !== 5) {
|
if (this.mainList[index].artworkStatus !== 5) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.mainList[index].distanceX = e.touches[0].clientX - this.startX;
|
this.mainList[index].distanceX = e.touches[0].clientX - this.startX
|
||||||
},
|
},
|
||||||
touchStart(e, index) {
|
touchStart(e, index) {
|
||||||
if (this.mainList[index].artworkStatus !== 5) {
|
if (this.mainList[index].artworkStatus !== 5) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.mainList[index].isRight = true
|
this.mainList[index].isRight = true
|
||||||
this.startX = e.touches[0].clientX;
|
this.startX = e.touches[0].clientX
|
||||||
},
|
},
|
||||||
touchEnd(index) {
|
touchEnd(index) {
|
||||||
if (this.mainList[index].artworkStatus !== 5) {
|
if (this.mainList[index].artworkStatus !== 5) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (this.mainList[index].distanceX < -((144 / 750) * this.windowWidth)) {
|
if (
|
||||||
this.mainList[index].distanceX = -((144 / 750) * this.windowWidth);
|
this.mainList[index].distanceX <
|
||||||
|
-((144 / 750) * this.windowWidth)
|
||||||
|
) {
|
||||||
|
this.mainList[index].distanceX = -(
|
||||||
|
(144 / 750) *
|
||||||
|
this.windowWidth
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
this.mainList[index].isRight = false
|
this.mainList[index].isRight = false
|
||||||
this.mainList[index].distanceX = 0;
|
this.mainList[index].distanceX = 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
||||||
.order-goods {
|
.order-goods {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-image: url("https://cdns.fontree.cn/fonchain-main/prod/image/default/artwork/4fdc9a0f-d72a-46b6-a04d-ed56d5465213.png");
|
background-image: url('https://cdns.fontree.cn/fonchain-main/prod/image/default/artwork/4fdc9a0f-d72a-46b6-a04d-ed56d5465213.png');
|
||||||
padding-left: 30rpx;
|
padding-left: 30rpx;
|
||||||
padding-right: 30rpx;
|
padding-right: 30rpx;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
@ -328,7 +438,7 @@ export default {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
height: 228rpx;
|
height: 228rpx;
|
||||||
width: 154rpx;
|
width: 154rpx;
|
||||||
background-color: #B7C0C8;
|
background-color: #b7c0c8;
|
||||||
right: -144rpx;
|
right: -144rpx;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
@ -352,40 +462,40 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.status1 {
|
&.status1 {
|
||||||
background: #FFBA00;
|
background: #ffba00;
|
||||||
|
|
||||||
.wrap1_3_3_1 {
|
.wrap1_3_3_1 {
|
||||||
color: #FFBA00;
|
color: #ffba00;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status2 {
|
&.status2 {
|
||||||
background: #76C458;
|
background: #76c458;
|
||||||
|
|
||||||
.wrap1_3_3_1 {
|
.wrap1_3_3_1 {
|
||||||
color: #76C458;
|
color: #76c458;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.status7 {
|
&.status7 {
|
||||||
background: #76C458;
|
background: #76c458;
|
||||||
|
|
||||||
.wrap1_3_3_1 {
|
.wrap1_3_3_1 {
|
||||||
font-size: 23rpx !important;
|
font-size: 23rpx !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.status3 {
|
&.status3 {
|
||||||
background: #76C458;
|
background: #76c458;
|
||||||
|
|
||||||
.wrap1_3_3_1 {
|
.wrap1_3_3_1 {
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status4 {
|
&.status4 {
|
||||||
background: #FF4848;
|
background: #ff4848;
|
||||||
|
|
||||||
.wrap1_3_3_1 {
|
.wrap1_3_3_1 {
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.wrap1_3_4 {
|
.wrap1_3_4 {
|
||||||
@ -419,7 +529,6 @@ export default {
|
|||||||
.wrap1_3_2_2 {
|
.wrap1_3_2_2 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -444,7 +553,6 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.wrap1_3_1 {
|
.wrap1_3_1 {
|
||||||
|
|
||||||
padding-bottom: 6rpx;
|
padding-bottom: 6rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -458,12 +566,12 @@ export default {
|
|||||||
|
|
||||||
.wrap1_3_1_1 {
|
.wrap1_3_1_1 {
|
||||||
font-size: 16rpx;
|
font-size: 16rpx;
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap1_3_1_2 {
|
.wrap1_3_1_2 {
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap1_3_1_3 {
|
.wrap1_3_1_3 {
|
||||||
@ -496,7 +604,6 @@ export default {
|
|||||||
margin-bottom: 12rpx;
|
margin-bottom: 12rpx;
|
||||||
color: #808080;
|
color: #808080;
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap1_2_3 {
|
.wrap1_2_3 {
|
||||||
@ -506,8 +613,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.wrap1_2_4 {
|
.wrap1_2_4 {
|
||||||
|
color: #ff4848;
|
||||||
color: #FF4848;
|
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -535,7 +641,7 @@ export default {
|
|||||||
font-size: 20rpx;
|
font-size: 20rpx;
|
||||||
width: 94rpx;
|
width: 94rpx;
|
||||||
height: 52rpx;
|
height: 52rpx;
|
||||||
background-color: #4E964D;
|
background-color: #4e964d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap1 {
|
.wrap1 {
|
||||||
@ -555,7 +661,6 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap1_1 {
|
.wrap1_1 {
|
||||||
@ -578,7 +683,7 @@ export default {
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
width: 132rpx;
|
width: 132rpx;
|
||||||
height: 52rpx;
|
height: 52rpx;
|
||||||
background-color: #76C458;
|
background-color: #76c458;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -591,13 +696,12 @@ export default {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
.wrap2_1 {
|
.wrap2_1 {
|
||||||
color: #4E964D;
|
color: #4e964d;
|
||||||
font-size: 32rpx;
|
font-size: 32rpx;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap2_2 {
|
.wrap2_2 {
|
||||||
color: #7C9F6F;
|
color: #7c9f6f;
|
||||||
font-size: 16rpx;
|
font-size: 16rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -608,7 +712,7 @@ export default {
|
|||||||
border-radius: 20rpx;
|
border-radius: 20rpx;
|
||||||
width: 156rpx;
|
width: 156rpx;
|
||||||
height: 52rpx;
|
height: 52rpx;
|
||||||
background-color: #4E964D;
|
background-color: #4e964d;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -54,7 +54,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
height: 228rpx;
|
height: 228rpx;
|
||||||
width: 154rpx;
|
width: 154rpx;
|
||||||
background-color: #B7C0C8;
|
background-color: #b7c0c8;
|
||||||
right: -144rpx;
|
right: -144rpx;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
@ -75,34 +75,34 @@
|
|||||||
color: #939393;
|
color: #939393;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status1.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status1.data-v-c0c42e9e {
|
||||||
background: #FFBA00;
|
background: #ffba00;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status1 .wrap1_3_3_1.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status1 .wrap1_3_3_1.data-v-c0c42e9e {
|
||||||
color: #FFBA00;
|
color: #ffba00;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status2.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status2.data-v-c0c42e9e {
|
||||||
background: #76C458;
|
background: #76c458;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status2 .wrap1_3_3_1.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status2 .wrap1_3_3_1.data-v-c0c42e9e {
|
||||||
color: #76C458;
|
color: #76c458;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status7.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status7.data-v-c0c42e9e {
|
||||||
background: #76C458;
|
background: #76c458;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status7 .wrap1_3_3_1.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status7 .wrap1_3_3_1.data-v-c0c42e9e {
|
||||||
font-size: 23rpx !important;
|
font-size: 23rpx !important;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status3.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status3.data-v-c0c42e9e {
|
||||||
background: #76C458;
|
background: #76c458;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status3 .wrap1_3_3_1.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status3 .wrap1_3_3_1.data-v-c0c42e9e {
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status4.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status4.data-v-c0c42e9e {
|
||||||
background: #FF4848;
|
background: #ff4848;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3.status4 .wrap1_3_3_1.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3.status4 .wrap1_3_3_1.data-v-c0c42e9e {
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_4.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_4.data-v-c0c42e9e {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -169,11 +169,11 @@
|
|||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_1 .wrap1_3_1_1.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_1 .wrap1_3_1_1.data-v-c0c42e9e {
|
||||||
font-size: 16rpx;
|
font-size: 16rpx;
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_1 .wrap1_3_1_2.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_1 .wrap1_3_1_2.data-v-c0c42e9e {
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_1 .wrap1_3_1_3.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_3 .wrap1_3_1 .wrap1_3_1_3.data-v-c0c42e9e {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -208,7 +208,7 @@
|
|||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_2 .wrap1_2_4.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_2 .wrap1_2_4.data-v-c0c42e9e {
|
||||||
color: #FF4848;
|
color: #ff4848;
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
}
|
}
|
||||||
.order-goods .content3 .wrap1 .wrap1_1 image.data-v-c0c42e9e {
|
.order-goods .content3 .wrap1 .wrap1_1 image.data-v-c0c42e9e {
|
||||||
@ -229,7 +229,7 @@
|
|||||||
font-size: 20rpx;
|
font-size: 20rpx;
|
||||||
width: 94rpx;
|
width: 94rpx;
|
||||||
height: 52rpx;
|
height: 52rpx;
|
||||||
background-color: #4E964D;
|
background-color: #4e964d;
|
||||||
}
|
}
|
||||||
.order-goods .content2 .wrap1.data-v-c0c42e9e {
|
.order-goods .content2 .wrap1.data-v-c0c42e9e {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -262,7 +262,7 @@
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
width: 132rpx;
|
width: 132rpx;
|
||||||
height: 52rpx;
|
height: 52rpx;
|
||||||
background-color: #76C458;
|
background-color: #76c458;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -274,11 +274,11 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.order-goods .content1 .wrap2 .wrap2_1.data-v-c0c42e9e {
|
.order-goods .content1 .wrap2 .wrap2_1.data-v-c0c42e9e {
|
||||||
color: #4E964D;
|
color: #4e964d;
|
||||||
font-size: 32rpx;
|
font-size: 32rpx;
|
||||||
}
|
}
|
||||||
.order-goods .content1 .wrap2 .wrap2_2.data-v-c0c42e9e {
|
.order-goods .content1 .wrap2 .wrap2_2.data-v-c0c42e9e {
|
||||||
color: #7C9F6F;
|
color: #7c9f6f;
|
||||||
font-size: 16rpx;
|
font-size: 16rpx;
|
||||||
}
|
}
|
||||||
.order-goods .content1 .wrap1 .wrap1_1.data-v-c0c42e9e {
|
.order-goods .content1 .wrap1 .wrap1_1.data-v-c0c42e9e {
|
||||||
@ -286,7 +286,7 @@
|
|||||||
border-radius: 20rpx;
|
border-radius: 20rpx;
|
||||||
width: 156rpx;
|
width: 156rpx;
|
||||||
height: 52rpx;
|
height: 52rpx;
|
||||||
background-color: #4E964D;
|
background-color: #4e964d;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
Loading…
Reference in New Issue
Block a user