update: ordertype 类型优化

This commit is contained in:
admin 2024-06-05 13:44:33 +08:00
parent e99c77e58e
commit a896baaa35
5 changed files with 5 additions and 5 deletions

View File

@ -157,7 +157,7 @@ const gridList2 = reactive([
]); ]);
const handleScenePhoto = (id: string) => { const handleScenePhoto = (id: string) => {
uni.navigateTo({ uni.navigateTo({
url: "/pagesScenePhoto/index?orderType=1&imagesType=1&id=" + id, // url: "/pagesScenePhoto/index?orderType=2&imagesType=1&id=" + id, //
}); });
}; };
const state = reactive<any>({ const state = reactive<any>({

View File

@ -171,7 +171,7 @@ const gridList1 = reactive([
]); ]);
const handleScenePhoto = (id: string) => { const handleScenePhoto = (id: string) => {
uni.navigateTo({ uni.navigateTo({
url: "/pagesScenePhoto/index?orderType=1&imagesType=1&id=" + id, // url: "/pagesScenePhoto/index?orderType=2&imagesType=1&id=" + id, //
}); });
}; };

View File

@ -347,7 +347,7 @@ const gridList1 = reactive([
]); ]);
const handleScenePhoto = (id: string) => { const handleScenePhoto = (id: string) => {
uni.navigateTo({ uni.navigateTo({
url: "/pagesScenePhoto/index?orderType=1&imagesType=1&id=" + id, // url: "/pagesScenePhoto/index?orderType=2&imagesType=1&id=" + id, //
}); });
}; };
const getScaleStatus = (type: number) => { const getScaleStatus = (type: number) => {

View File

@ -802,7 +802,7 @@ onLoad((option) => {
}); });
PictureApi.getAnnex({ PictureApi.getAnnex({
businessId: model1.order.id.toString(), businessId: model1.order.id.toString(),
orderType: 1, orderType: OrderType.Receive,
imagesType: ImagesType.NORMARL, imagesType: ImagesType.NORMARL,
}).then((res) => { }).then((res) => {
if (res.code === 200) { if (res.code === 200) {

View File

@ -98,7 +98,7 @@ const handleModal = (v: boolean, id: number) => {
}; };
const handleScenePhoto = (id: any) => { const handleScenePhoto = (id: any) => {
uni.navigateTo({ uni.navigateTo({
url: `/pagesScenePhoto/index?orderType=1&id=${id}&imagesType=1`, // url: `/pagesScenePhoto/index?orderType=2&id=${id}&imagesType=1`, //
}); });
}; };
const pricingDetail = (id: string) => { const pricingDetail = (id: string) => {