修改参数

cyl/master-0804
jscyl_mac 5 months ago
parent 7f28c8f253
commit fcddc93528

@ -370,7 +370,7 @@
</g-panel-fixed> </g-panel-fixed>
<u-popup v-model="shareModal.isShow" mode="bottom" border-radius="16" height='600px' :mask-close-able="true"> <u-popup v-model="shareModal.isShow" mode="bottom" border-radius="16" height='600px' :mask-close-able="true">
<mainPanel :showBg="true" :rid='relationId' :oid='oid' :active="1" :name='orderDetail.userName' :job="orderDetail.storeJobName" :recommendList="recommendList[0]" /> <mainPanel :showBg="true" :rid='rid' :oid='oid' :active="1" :name='orderDetail.userName' :job="orderDetail.storeJobName" :recommendList="recommendList[0]" />
</u-popup> </u-popup>
</view> </view>
</template> </template>
@ -389,6 +389,7 @@ export default {
}, },
data() { data() {
return { return {
rid:0,
recommendList:[], recommendList:[],
shareModal:{ shareModal:{
isShow:false, isShow:false,
@ -611,6 +612,11 @@ export default {
uni.removeStorageSync('order_oid') uni.removeStorageSync('order_oid')
uni.removeStorageSync('order_relationId') uni.removeStorageSync('order_relationId')
console.log("工单详情:", res); console.log("工单详情:", res);
if(res.prevRecordId){
that.rid = res.prevRecordId;
}else{
that.rid = that.relationId;
}
// return; // return;
console.log("res", res); console.log("res", res);
res = { ...res.applyOrder, ...res }; res = { ...res.applyOrder, ...res };

Loading…
Cancel
Save