2024-03-04 07:10:11 +00:00
|
|
|
|
<template>
|
|
|
|
|
<view class="c-card">
|
|
|
|
|
<view class="search">
|
|
|
|
|
<u-search
|
|
|
|
|
placeholder="请输入收货单号"
|
|
|
|
|
v-model="keyword"
|
|
|
|
|
:showAction="false"
|
|
|
|
|
:bgColor="'#fff'"
|
|
|
|
|
:borderColor="'rgba(0, 0, 0, 0.1)'"
|
|
|
|
|
:placeholderColor="'#C1C1C1'"
|
2024-03-28 02:07:15 +00:00
|
|
|
|
@search="handleSearch()"
|
2024-04-26 07:33:38 +00:00
|
|
|
|
@clear="handleSearch()"
|
2024-03-04 07:10:11 +00:00
|
|
|
|
></u-search>
|
2024-03-13 07:35:25 +00:00
|
|
|
|
<view class="btn" @click="handleAdd()"> 创建 </view>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
</view>
|
|
|
|
|
<view class="filter">
|
2024-03-13 07:35:25 +00:00
|
|
|
|
<!-- -->
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<view @click="handleDialog('showTime', true)"
|
|
|
|
|
><text>{{ state.name }}</text
|
|
|
|
|
><u-icon name="arrow-down"></u-icon
|
|
|
|
|
></view>
|
|
|
|
|
<view @click="state.isShowStatus = true"
|
2024-05-20 08:30:44 +00:00
|
|
|
|
><text>{{
|
|
|
|
|
state.currentScaleStatus === -1
|
|
|
|
|
? "单据状态"
|
|
|
|
|
: getScaleStatus(state.currentScaleStatus)
|
|
|
|
|
}}</text
|
|
|
|
|
><u-icon name="arrow-down"></u-icon>
|
|
|
|
|
</view>
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<view @click="state.isShowSort = true"
|
2024-05-20 08:30:44 +00:00
|
|
|
|
><text>{{
|
|
|
|
|
state.currentSortName === undefined
|
|
|
|
|
? "排序"
|
|
|
|
|
: `按${
|
|
|
|
|
state.currentSortName === "create_time"
|
|
|
|
|
? "创建时间"
|
|
|
|
|
: "更新时间"
|
|
|
|
|
}降序`
|
|
|
|
|
}}</text
|
|
|
|
|
><u-icon name="arrow-down"></u-icon
|
2024-03-28 02:07:15 +00:00
|
|
|
|
></view>
|
|
|
|
|
<view class="btn" @click="handleDialog('showFilter', true)">筛选</view>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
</view>
|
|
|
|
|
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<view class="time">
|
|
|
|
|
<view v-if="state.name === '昨日' || state.name === '今日'">{{
|
|
|
|
|
state.startTime
|
|
|
|
|
}}</view>
|
|
|
|
|
<view v-else>{{ state.startTime }} - {{ state.endTime }}</view>
|
|
|
|
|
</view>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<page-view
|
|
|
|
|
@loadList="
|
|
|
|
|
(v) => {
|
|
|
|
|
getList(v);
|
|
|
|
|
}
|
|
|
|
|
"
|
|
|
|
|
:noMoreData="pageList.noMoreData"
|
|
|
|
|
:list="pageList.list"
|
|
|
|
|
:height="200"
|
|
|
|
|
:isLoading="pageList.isLoading"
|
|
|
|
|
>
|
|
|
|
|
<view class="box" v-for="(item, index) in pageList.list" :key="index">
|
|
|
|
|
<view class="base">
|
|
|
|
|
<view>
|
|
|
|
|
<view class="no"> 收货单号:{{ item.receiptNumber }} </view>
|
|
|
|
|
<view class="supplier"> {{ item.deviceName || "-" }} </view>
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<text class="btn" @click="handleScenePhoto((item as any).id)"
|
|
|
|
|
>现场照片</text
|
|
|
|
|
>
|
|
|
|
|
</view>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
</view>
|
2024-03-13 07:35:25 +00:00
|
|
|
|
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<view class="name"
|
|
|
|
|
>{{ item.userName }}
|
|
|
|
|
<text>{{ getScaleStatus((item as any).scaleStatus) }}</text>
|
|
|
|
|
<text v-if="item.repairTime">补单</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="type">{{ item.productName }}</view>
|
|
|
|
|
<view class="flex-box">
|
2024-06-28 06:53:21 +00:00
|
|
|
|
<text>定价人:{{ item.pricingUserName }}</text>
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<text>创建时间:{{ item.createTime }}</text>
|
|
|
|
|
</view>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<view class="more">
|
|
|
|
|
<view
|
|
|
|
|
v-for="(cItem, index) in gridList1"
|
|
|
|
|
:key="index"
|
|
|
|
|
:style="cItem.isCustomStyle ? 'font-size: 22rpx;color:#999' : ''"
|
|
|
|
|
>
|
|
|
|
|
<block v-if="cItem.name === '扣杂'">
|
|
|
|
|
<text v-if="cItem.name">
|
|
|
|
|
{{ item.buttonType === 0 ? "扣杂" : "扣点" }}: </text
|
|
|
|
|
><text>
|
|
|
|
|
{{
|
|
|
|
|
item.buttonType === 0
|
|
|
|
|
? item[cItem.enName as string]
|
|
|
|
|
: item["points"]
|
|
|
|
|
}}
|
|
|
|
|
{{ item.buttonType === 0 ? cItem.unit : "%" }}
|
|
|
|
|
</text>
|
|
|
|
|
</block>
|
|
|
|
|
<block v-if="cItem.name !== '扣杂'">
|
|
|
|
|
<text v-if="cItem.name">{{ cItem.name }}:</text
|
|
|
|
|
><text
|
|
|
|
|
>{{ cItem.isBefore ? cItem.unit : "" }}
|
|
|
|
|
{{ item[cItem.enName as string] }}
|
|
|
|
|
{{ cItem.isBefore ? "" : cItem.unit }}
|
|
|
|
|
</text>
|
|
|
|
|
</block>
|
|
|
|
|
</view>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-03-28 02:07:15 +00:00
|
|
|
|
</page-view>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
</view>
|
2024-03-13 07:35:25 +00:00
|
|
|
|
|
2024-03-28 02:07:15 +00:00
|
|
|
|
<u-action-sheet
|
|
|
|
|
:closeOnClickOverlay="true"
|
|
|
|
|
:closeOnClickAction="true"
|
|
|
|
|
:actions="state.statusList"
|
|
|
|
|
:title="'单据状态'"
|
|
|
|
|
:show="state.isShowStatus"
|
|
|
|
|
@select="handleSelectStatus"
|
|
|
|
|
@close="state.isShowStatus = false"
|
|
|
|
|
></u-action-sheet>
|
|
|
|
|
<u-action-sheet
|
|
|
|
|
:closeOnClickOverlay="true"
|
|
|
|
|
:closeOnClickAction="true"
|
|
|
|
|
:actions="state.sortList"
|
|
|
|
|
:title="'排序'"
|
|
|
|
|
:show="state.isShowSort"
|
|
|
|
|
@select="handleSelectSort"
|
|
|
|
|
@close="state.isShowSort = false"
|
|
|
|
|
></u-action-sheet>
|
|
|
|
|
|
|
|
|
|
<!-- 时间弹框 -->
|
|
|
|
|
<TimeDialog
|
|
|
|
|
ref="timeDialog"
|
|
|
|
|
:show="showDialog.showTime"
|
|
|
|
|
@handleDialog="(v:boolean) => {handleDialog('showTime', v)}"
|
|
|
|
|
@changeTime="changeTime"
|
|
|
|
|
/>
|
|
|
|
|
<!-- 筛选 -->
|
|
|
|
|
<FilterDialog
|
|
|
|
|
:show="showDialog.showFilter"
|
2024-03-28 03:20:21 +00:00
|
|
|
|
:isShipment="false"
|
2024-03-28 02:07:15 +00:00
|
|
|
|
@handleOk="handleOk"
|
|
|
|
|
@handleDialog="(v:boolean) => {handleDialog('showFilter', v)}"
|
|
|
|
|
/>
|
2024-03-04 07:10:11 +00:00
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
2024-03-13 07:35:25 +00:00
|
|
|
|
import { ReceiveApi } from "@/services";
|
|
|
|
|
import { ScaleStatus } from "@/utils/enum";
|
2024-03-28 02:07:15 +00:00
|
|
|
|
import PageView from "@/components/PageView/index.vue";
|
2024-04-20 07:56:08 +00:00
|
|
|
|
import {
|
|
|
|
|
formatDate,
|
|
|
|
|
getCurrentMonthStartAndEnd,
|
|
|
|
|
filterNullUndefined,
|
|
|
|
|
} from "@/utils";
|
2024-03-28 02:07:15 +00:00
|
|
|
|
import TimeDialog from "./components/TimeDialog.vue";
|
|
|
|
|
import FilterDialog from "./components/FilterDialog.vue";
|
|
|
|
|
const showDialog = <
|
|
|
|
|
{
|
|
|
|
|
[key: string]: boolean;
|
|
|
|
|
}
|
|
|
|
|
>reactive({
|
|
|
|
|
showTime: false,
|
|
|
|
|
showFilter: false,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const handleDialog = (key: string, v: boolean) => {
|
|
|
|
|
showDialog[key] = v;
|
|
|
|
|
};
|
|
|
|
|
const changeTime = (obj: any) => {
|
|
|
|
|
state.startTime = obj.startTime;
|
|
|
|
|
state.endTime = obj.endTime;
|
|
|
|
|
state.name = obj.name;
|
|
|
|
|
resetPageList();
|
|
|
|
|
getList();
|
|
|
|
|
};
|
2024-03-13 07:35:25 +00:00
|
|
|
|
const state = reactive({
|
2024-03-28 02:07:15 +00:00
|
|
|
|
startTime: formatDate(getCurrentMonthStartAndEnd().start, "{y}-{m}-{d}"),
|
|
|
|
|
endTime: formatDate(getCurrentMonthStartAndEnd().end, "{y}-{m}-{d}"),
|
|
|
|
|
name: "本月",
|
2024-04-20 07:56:08 +00:00
|
|
|
|
currentScaleStatus: -1,
|
2024-03-13 07:35:25 +00:00
|
|
|
|
currentSortName: undefined,
|
|
|
|
|
isShowStatus: false,
|
2024-03-28 02:07:15 +00:00
|
|
|
|
statusList: [
|
2024-04-20 07:56:08 +00:00
|
|
|
|
{
|
|
|
|
|
name: "全部",
|
|
|
|
|
key: -1,
|
|
|
|
|
},
|
2024-03-28 02:07:15 +00:00
|
|
|
|
{
|
|
|
|
|
name: "待定价",
|
|
|
|
|
key: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "待过皮",
|
|
|
|
|
key: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "待审核",
|
|
|
|
|
key: 2,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "已审核待支付",
|
|
|
|
|
key: 3,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "已支付",
|
|
|
|
|
key: 4,
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-03-13 07:35:25 +00:00
|
|
|
|
isShowSort: false,
|
2024-03-28 02:07:15 +00:00
|
|
|
|
sortList: [
|
2024-05-20 08:30:44 +00:00
|
|
|
|
{
|
|
|
|
|
name: "全部",
|
|
|
|
|
key: undefined,
|
|
|
|
|
},
|
2024-03-28 02:07:15 +00:00
|
|
|
|
{
|
|
|
|
|
name: "按创建时间降序",
|
|
|
|
|
key: "create_time",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "按更新时间降序",
|
|
|
|
|
key: "update_time",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
params: {},
|
|
|
|
|
});
|
2024-03-13 07:35:25 +00:00
|
|
|
|
const handleSelectStatus = (v: any) => {
|
2024-03-28 02:07:15 +00:00
|
|
|
|
state.isShowStatus = false;
|
|
|
|
|
state.currentScaleStatus = v.key;
|
|
|
|
|
resetPageList();
|
|
|
|
|
getList();
|
|
|
|
|
};
|
2024-03-13 07:35:25 +00:00
|
|
|
|
const handleSelectSort = (v: any) => {
|
2024-03-28 02:07:15 +00:00
|
|
|
|
state.isShowSort = false;
|
|
|
|
|
state.currentSortName = v.key;
|
|
|
|
|
resetPageList();
|
|
|
|
|
getList();
|
|
|
|
|
};
|
2024-03-13 02:41:39 +00:00
|
|
|
|
|
2024-03-04 07:10:11 +00:00
|
|
|
|
const keyword = ref("");
|
|
|
|
|
const gridList1 = reactive([
|
|
|
|
|
{
|
|
|
|
|
name: "毛重",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "grossWeight",
|
|
|
|
|
num: 0,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "KG",
|
|
|
|
|
isBefore: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "皮重",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "tare",
|
|
|
|
|
num: 0,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "KG",
|
|
|
|
|
isBefore: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "扣杂",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "buckleMiscellaneous",
|
|
|
|
|
num: 0,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "KG",
|
|
|
|
|
isBefore: false,
|
|
|
|
|
},
|
|
|
|
|
{},
|
|
|
|
|
{
|
|
|
|
|
name: "净重",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "netWeight",
|
|
|
|
|
num: 0,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "KG",
|
|
|
|
|
isBefore: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "单价",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "price",
|
|
|
|
|
num: 0,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "元/千克",
|
|
|
|
|
isBefore: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "结算总价",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "balanceTotalPrice",
|
|
|
|
|
num: 0,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "元",
|
|
|
|
|
isBefore: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "实际总价",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "totalPrice",
|
|
|
|
|
num: 0,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "元",
|
|
|
|
|
isBefore: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "过毛",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "grossTime",
|
|
|
|
|
num: "",
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "",
|
|
|
|
|
isBefore: false,
|
2024-03-13 07:35:25 +00:00
|
|
|
|
isCustomStyle: true,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "过皮",
|
2024-03-13 07:35:25 +00:00
|
|
|
|
enName: "tareTime",
|
|
|
|
|
num: "",
|
2024-03-04 07:10:11 +00:00
|
|
|
|
unit: "",
|
|
|
|
|
isBefore: false,
|
2024-03-13 07:35:25 +00:00
|
|
|
|
isCustomStyle: true,
|
2024-03-04 07:10:11 +00:00
|
|
|
|
},
|
|
|
|
|
]);
|
2024-03-13 02:41:39 +00:00
|
|
|
|
const handleScenePhoto = (id: string) => {
|
2024-03-04 07:10:11 +00:00
|
|
|
|
uni.navigateTo({
|
2024-03-28 02:07:15 +00:00
|
|
|
|
url: "/pagesScenePhoto/index?orderType=1&imagesType=1&id=" + id, // 要跳转到的页面路径
|
2024-03-04 07:10:11 +00:00
|
|
|
|
});
|
|
|
|
|
};
|
2024-03-13 02:41:39 +00:00
|
|
|
|
const getScaleStatus = (type: number) => {
|
|
|
|
|
if (type === ScaleStatus.ToBePriced) {
|
2024-03-13 07:35:25 +00:00
|
|
|
|
return "待定价";
|
2024-03-13 02:41:39 +00:00
|
|
|
|
} else if (type === ScaleStatus.ToBeTare) {
|
2024-03-13 07:35:25 +00:00
|
|
|
|
return "待过皮";
|
2024-03-13 02:41:39 +00:00
|
|
|
|
} else if (type === ScaleStatus.ToBeReview) {
|
2024-03-13 07:35:25 +00:00
|
|
|
|
return "待审核";
|
2024-03-13 02:41:39 +00:00
|
|
|
|
} else if (type === ScaleStatus.ToBePay) {
|
2024-03-13 07:35:25 +00:00
|
|
|
|
return "待支付";
|
2024-03-13 02:41:39 +00:00
|
|
|
|
} else if (type === ScaleStatus.Paid) {
|
2024-03-13 07:35:25 +00:00
|
|
|
|
return "已支付";
|
2024-03-13 02:41:39 +00:00
|
|
|
|
}
|
2024-03-13 07:35:25 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleAdd = () => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: "/pagesApp/receiveSpl", // 要跳转到的页面路径
|
|
|
|
|
});
|
2024-03-28 02:07:15 +00:00
|
|
|
|
};
|
2024-03-13 02:41:39 +00:00
|
|
|
|
const pageList: PageResult<Order> = reactive({
|
2024-03-28 02:07:15 +00:00
|
|
|
|
isLoading: false,
|
|
|
|
|
noMoreData: false,
|
2024-03-13 02:41:39 +00:00
|
|
|
|
total: 0,
|
|
|
|
|
list: [],
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
});
|
2024-03-28 02:07:15 +00:00
|
|
|
|
|
|
|
|
|
const resetPageList = () => {
|
|
|
|
|
pageList.noMoreData = false;
|
|
|
|
|
pageList.total = 0;
|
|
|
|
|
pageList.list = [];
|
|
|
|
|
pageList.pageNum = 1;
|
|
|
|
|
pageList.pageSize = 10;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleOk = (obj: any) => {
|
|
|
|
|
state.params = obj;
|
|
|
|
|
resetPageList();
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSearch = () => {
|
|
|
|
|
resetPageList();
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
const getList = (v?: boolean) => {
|
|
|
|
|
if (v) {
|
|
|
|
|
if (Math.ceil(pageList.total / pageList.pageSize) > pageList.pageNum) {
|
|
|
|
|
pageList.pageNum++;
|
|
|
|
|
} else {
|
|
|
|
|
pageList.noMoreData = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let params: any = {
|
|
|
|
|
pageSize: pageList.pageSize,
|
|
|
|
|
pageNumber: pageList.pageNum,
|
|
|
|
|
startTime: state.startTime + " 00:00:00",
|
|
|
|
|
endTime: state.endTime + " 23:59:59",
|
|
|
|
|
};
|
2024-04-20 07:56:08 +00:00
|
|
|
|
if (state.currentScaleStatus > -1) {
|
2024-03-28 02:07:15 +00:00
|
|
|
|
params.scaleStatus = state.currentScaleStatus;
|
2024-03-13 07:35:25 +00:00
|
|
|
|
}
|
|
|
|
|
if (state.currentSortName !== undefined) {
|
2024-03-28 02:07:15 +00:00
|
|
|
|
params.sortName = state.currentSortName;
|
2024-03-13 07:35:25 +00:00
|
|
|
|
}
|
2024-03-28 02:07:15 +00:00
|
|
|
|
if (keyword.value !== undefined) {
|
|
|
|
|
params.receiptNumber = keyword.value;
|
|
|
|
|
}
|
|
|
|
|
pageList.isLoading = true;
|
2024-04-20 07:56:08 +00:00
|
|
|
|
ReceiveApi.getOrderPage({
|
|
|
|
|
...params,
|
|
|
|
|
...filterNullUndefined(state.params),
|
|
|
|
|
}).then((res) => {
|
2024-03-13 02:41:39 +00:00
|
|
|
|
if (res.code === 200) {
|
2024-03-28 02:07:15 +00:00
|
|
|
|
pageList.isLoading = false;
|
|
|
|
|
(pageList as any).list = (pageList as any).list = pageList.list.concat(
|
|
|
|
|
res.data.list
|
|
|
|
|
);
|
|
|
|
|
pageList.total = (res.data as any).total;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
onMounted(() => {
|
2024-03-28 02:07:15 +00:00
|
|
|
|
getList();
|
2024-03-13 02:41:39 +00:00
|
|
|
|
});
|
2024-03-04 07:10:11 +00:00
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.c-card {
|
|
|
|
|
margin: 30rpx 25rpx;
|
|
|
|
|
.search {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.btn {
|
|
|
|
|
background: #00dcee;
|
|
|
|
|
border-radius: 24rpx;
|
|
|
|
|
border: 1px solid #00dcee;
|
|
|
|
|
font-weight: 500;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
margin-left: 50rpx;
|
|
|
|
|
padding: 6rpx 30rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filter {
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-weight: 400;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #000000;
|
|
|
|
|
> view {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text {
|
|
|
|
|
margin-right: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.btn {
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #00dcee;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.time {
|
|
|
|
|
font-weight: 400;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #000000;
|
2024-03-28 03:20:21 +00:00
|
|
|
|
margin: 30rpx 0rpx 0rpx 30rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
}
|
|
|
|
|
.box + .box {
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.box {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(5, 68, 37, 0.12);
|
|
|
|
|
border-radius: 13rpx;
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
.base {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.no {
|
|
|
|
|
font-weight: 400;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
.supplier {
|
|
|
|
|
font-weight: 400;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
.btn {
|
|
|
|
|
border-radius: 24rpx;
|
|
|
|
|
border: 1px solid #00dcee;
|
|
|
|
|
padding: 10rpx 30rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #00dcee;
|
|
|
|
|
line-height: 41rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.name {
|
|
|
|
|
font-weight: 400;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #000000;
|
|
|
|
|
margin: 15rpx 0rpx;
|
|
|
|
|
text {
|
|
|
|
|
background-color: #ffaf75;
|
|
|
|
|
font-weight: 500;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 24rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
padding: 5rpx 20rpx;
|
|
|
|
|
margin-left: 20rpx;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
border-radius: 10rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.type {
|
|
|
|
|
font-weight: 400;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #ec0f3e;
|
|
|
|
|
margin-bottom: 20rpx;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-weight: bold;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
}
|
|
|
|
|
.flex-box {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #999999;
|
|
|
|
|
border-bottom: 1rpx solid rgba(233, 233, 233, 0.76);
|
|
|
|
|
padding-bottom: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.more {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-weight: 400;
|
2024-03-13 02:41:39 +00:00
|
|
|
|
font-size: 26rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
|
color: #000000;
|
|
|
|
|
padding: 25rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
> view {
|
|
|
|
|
line-height: 50rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|