1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view v-if="!this.info.msg"
- style="display: flex;
- flex-direction: column;font-size: 14px; "
- >
- <text>面料编码-{{this.info.Mlcode}}</text>
- <text>销售物流号-{{this.info.Xswlh}}</text>
- <text>目的港-{{this.info.mdg}}</text>
- <text>接单部门-{{this.info.jdbm}}</text>
- <text>整理方式-{{this.info.zlfs}}</text>
- <text>产品规格-{{this.info.cpgg}}</text>
- </view>
- <view
- style="display: flex;
- flex-direction: column; font-size: 14px; " v-else
- >
- <text>错误信息-{{this.info.msg}}</text>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- info:''
- };
- },
- onLoad(option) {
- const Info = JSON.parse(decodeURIComponent(option.Info))
- console.log(Info);
- this.info = Info;
- // this.formData.orderInfo = orderInfo
- // this.formData.orderInfo.workshopId = this.formData.orderInfo.workshop.id;
- // this.formData.orderInfo.teamId = this.formData.orderInfo.team.id;
- // console.log(this.formData.orderInfo)
- // this.getWorkshop();
- },
- methods: {
- // 返回上一页
-
- },
- // uni.navigateBack({});
- };
- </script>
- <style></style>
|