update: ordertype 类型优化
This commit is contained in:
parent
e99c77e58e
commit
a896baaa35
|
@ -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>({
|
||||||
|
|
|
@ -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, // 要跳转到的页面路径
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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) => {
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
|
@ -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) => {
|
||||||
|
|
Loading…
Reference in New Issue