修改参数

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

@ -370,7 +370,7 @@
</g-panel-fixed>
<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>
</view>
</template>
@ -389,6 +389,7 @@ export default {
},
data() {
return {
rid:0,
recommendList:[],
shareModal:{
isShow:false,
@ -611,6 +612,11 @@ export default {
uni.removeStorageSync('order_oid')
uni.removeStorageSync('order_relationId')
console.log("工单详情:", res);
if(res.prevRecordId){
that.rid = res.prevRecordId;
}else{
that.rid = that.relationId;
}
// return;
console.log("res", res);
res = { ...res.applyOrder, ...res };

Loading…
Cancel
Save