show.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view v-if="!this.info.msg"
  3. style="display: flex;
  4. flex-direction: column;font-size: 14px; "
  5. >
  6. <text>面料编码-{{this.info.Mlcode}}</text>
  7. <text>销售物流号-{{this.info.Xswlh}}</text>
  8. <text>目的港-{{this.info.mdg}}</text>
  9. <text>接单部门-{{this.info.jdbm}}</text>
  10. <text>整理方式-{{this.info.zlfs}}</text>
  11. <text>产品规格-{{this.info.cpgg}}</text>
  12. </view>
  13. <view
  14. style="display: flex;
  15. flex-direction: column; font-size: 14px; " v-else
  16. >
  17. <text>错误信息-{{this.info.msg}}</text>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. info:''
  25. };
  26. },
  27. onLoad(option) {
  28. const Info = JSON.parse(decodeURIComponent(option.Info))
  29. console.log(Info);
  30. this.info = Info;
  31. // this.formData.orderInfo = orderInfo
  32. // this.formData.orderInfo.workshopId = this.formData.orderInfo.workshop.id;
  33. // this.formData.orderInfo.teamId = this.formData.orderInfo.team.id;
  34. // console.log(this.formData.orderInfo)
  35. // this.getWorkshop();
  36. },
  37. methods: {
  38. // 返回上一页
  39. },
  40. // uni.navigateBack({});
  41. };
  42. </script>
  43. <style></style>