md
This commit is contained in:
parent
39a0934e0c
commit
de950fcd28
@ -1,9 +1,9 @@
|
|||||||
let envMap = {
|
let envMap = {
|
||||||
development: {
|
development: {
|
||||||
// apiHost: 'https://api-emis.tanex56.com/api/bizsvr',
|
apiHost: 'https://api-emis.tanex56.com/api/bizsvr',
|
||||||
// socketHost: 'wss://api-emis.tanex56.com/api/bizsvr',
|
socketHost: 'wss://api-emis.tanex56.com/api/bizsvr',
|
||||||
apiHost: 'http://47.102.220.189:58089/api/bizsvr',
|
// apiHost: 'http://47.102.220.189:58089/api/bizsvr',
|
||||||
socketHost: 'ws://47.102.220.189:58089/api/bizsvr',
|
// socketHost: 'ws://47.102.220.189:58089/api/bizsvr',
|
||||||
},
|
},
|
||||||
production: {
|
production: {
|
||||||
apiHost: 'https://api-emis.tanex56.com/api/bizsvr',
|
apiHost: 'https://api-emis.tanex56.com/api/bizsvr',
|
||||||
|
|||||||
@ -86,7 +86,7 @@
|
|||||||
<view style="width: 360rpx;">
|
<view style="width: 360rpx;">
|
||||||
<tpx-input v-model:value="modelInfo.freight" :isWhite="true" _digit="4"
|
<tpx-input v-model:value="modelInfo.freight" :isWhite="true" _digit="4"
|
||||||
:disabled="modelInfo.calcFeeType!=3"
|
:disabled="modelInfo.calcFeeType!=3"
|
||||||
inputAlign="right" custom-style="height: 46rpx;" suffix="CNY"></tpx-input>
|
inputAlign="left" custom-style="height: 46rpx;" suffix="CNY"></tpx-input>
|
||||||
</view>
|
</view>
|
||||||
</u-row>
|
</u-row>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@ -26,6 +26,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view v-for="(item, index) in modelInfo.cargoList" class="yditem">
|
<view v-for="(item, index) in modelInfo.cargoList" class="yditem">
|
||||||
|
<bpe-gooditem-filed-edit-tmp :value="item" :showMode="showMode" :submitVal="modelInfo"></bpe-gooditem-filed-edit-tmp>
|
||||||
<view class="ydi-lab mb-10">
|
<view class="ydi-lab mb-10">
|
||||||
<text class="font-weight">
|
<text class="font-weight">
|
||||||
<!-- {{item.goodsName}} -->
|
<!-- {{item.goodsName}} -->
|
||||||
@ -34,7 +35,6 @@
|
|||||||
<u-icon @click="handleDelGood(index)" name="trash" size="32"></u-icon>
|
<u-icon @click="handleDelGood(index)" name="trash" size="32"></u-icon>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<bpe-gooditem-filed-edit-tmp :value="item" :showMode="showMode" :submitVal="modelInfo"></bpe-gooditem-filed-edit-tmp>
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<u-button @click="handleAddGood" custom-style="border-radius: 16rpx;height: 66rpx;" type="primary" plain="true">
|
<u-button @click="handleAddGood" custom-style="border-radius: 16rpx;height: 66rpx;" type="primary" plain="true">
|
||||||
@ -48,9 +48,9 @@
|
|||||||
|
|
||||||
<view class="edm-input-item mt-20">
|
<view class="edm-input-item mt-20">
|
||||||
<u-row justify="between">
|
<u-row justify="between">
|
||||||
<text class="font-28 font-weight">包裹重量</text>
|
<text class="font-28 font-weight">实际重量</text>
|
||||||
<view>
|
<view>
|
||||||
<tpx-input v-model:value="modelInfo.billWeight" placeholder="" inputAlign="right" suffix="kg" _digit="4"></tpx-input>
|
<tpx-input v-model:value="modelInfo.billWeight" placeholder="" inputAlign="left" suffix="kg" _digit="4"></tpx-input>
|
||||||
</view>
|
</view>
|
||||||
</u-row>
|
</u-row>
|
||||||
</view>
|
</view>
|
||||||
@ -59,7 +59,7 @@
|
|||||||
<u-row justify="between" align="top">
|
<u-row justify="between" align="top">
|
||||||
<text class="font-28 pt-20 font-weight">总体积</text>
|
<text class="font-28 pt-20 font-weight">总体积</text>
|
||||||
<view v-if="totalVolume || true">
|
<view v-if="totalVolume || true">
|
||||||
<tpx-input v-model:value="modelInfo.totalVolume" placeholder="" inputAlign="right" suffix="m³" _digit="4"></tpx-input>
|
<tpx-input v-model:value="modelInfo.totalVolume" placeholder="" inputAlign="left" suffix="m³" _digit="4"></tpx-input>
|
||||||
</view>
|
</view>
|
||||||
</u-row>
|
</u-row>
|
||||||
</view>
|
</view>
|
||||||
@ -68,7 +68,7 @@
|
|||||||
<u-row justify="between" align="top">
|
<u-row justify="between" align="top">
|
||||||
<text class="font-28 pt-20 font-weight">货值</text>
|
<text class="font-28 pt-20 font-weight">货值</text>
|
||||||
<view>
|
<view>
|
||||||
<tpx-input v-model:value="modelInfo.realValue" placeholder="" inputAlign="right" suffix="美元" _digit="4"></tpx-input>
|
<tpx-input v-model:value="modelInfo.realValue" placeholder="" inputAlign="left" suffix="美元" _digit="4"></tpx-input>
|
||||||
</view>
|
</view>
|
||||||
</u-row>
|
</u-row>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@ -2,18 +2,39 @@
|
|||||||
<view class="">
|
<view class="">
|
||||||
|
|
||||||
<view class="jsfm-item">
|
<view class="jsfm-item">
|
||||||
|
<u-row justify="between" align="top">
|
||||||
|
<view style="width: 100%;">
|
||||||
|
<u-row justify="between" style="margin-bottom: 10px;">
|
||||||
|
<u-col span="3">
|
||||||
|
<text class="font-28 font-weight pr-10" align="center">长(cm)</text>
|
||||||
|
</u-col>
|
||||||
|
<u-col span="3">
|
||||||
|
<text class="font-28 font-weight pr-10" align="center">宽(cm)</text>
|
||||||
|
</u-col>
|
||||||
|
<u-col span="3">
|
||||||
|
<text class="font-28 font-weight pr-10" align="center">高(cm)</text>
|
||||||
|
</u-col>
|
||||||
|
<u-col span="3">
|
||||||
|
<text class="font-28 font-weight pr-10" align="center">件数</text>
|
||||||
|
</u-col>
|
||||||
|
</u-row>
|
||||||
|
</view>
|
||||||
|
</u-row>
|
||||||
<u-row justify="between" align="top">
|
<u-row justify="between" align="top">
|
||||||
<!-- <text class="font-28 pt-20 font-weight">尺寸</text> -->
|
<!-- <text class="font-28 pt-20 font-weight">尺寸</text> -->
|
||||||
<view style="width: 100%;">
|
<view style="width: 100%;">
|
||||||
<u-row justify="between">
|
<u-row justify="between">
|
||||||
<u-col span="3.7">
|
<u-col span="3">
|
||||||
<tpx-input v-model:value="modelInfo.length" placeholder="长" inputAlign="right" suffix="cm" _digit="4"></tpx-input>
|
<tpx-input v-model:value="modelInfo.length" placeholder="" inputAlign="center" suffix="" _digit="4" style="border-radius: 0px;"></tpx-input>
|
||||||
</u-col>
|
</u-col>
|
||||||
<u-col span="3.7">
|
<u-col span="3">
|
||||||
<tpx-input v-model:value="modelInfo.width" placeholder="宽" inputAlign="right" suffix="cm" _digit="4"></tpx-input>
|
<tpx-input v-model:value="modelInfo.width" placeholder="" inputAlign="center" suffix="" _digit="4" style="border-radius: 0px;"></tpx-input>
|
||||||
</u-col>
|
</u-col>
|
||||||
<u-col span="3.7">
|
<u-col span="3">
|
||||||
<tpx-input v-model:value="modelInfo.height" placeholder="高" inputAlign="right" suffix="cm" _digit="4"></tpx-input>
|
<tpx-input v-model:value="modelInfo.height" placeholder="" inputAlign="center" suffix="" _digit="4" style="border-radius: 0px;"></tpx-input>
|
||||||
|
</u-col>
|
||||||
|
<u-col span="3">
|
||||||
|
<tpx-input placeholder="" v-model:value="modelInfo.cargoQty" inputAlign="center" type="number" suffix="" :_maxNum="cargoQtyMaxNum" style="border-radius: 0px;"></tpx-input>
|
||||||
</u-col>
|
</u-col>
|
||||||
</u-row>
|
</u-row>
|
||||||
</view>
|
</view>
|
||||||
@ -21,14 +42,14 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="jsfm-item">
|
<view class="jsfm-item">
|
||||||
<u-row justify="between">
|
<u-row justify="between">
|
||||||
<u-row>
|
<!-- <u-row>
|
||||||
<text class="font-28 font-weight pr-10">件数</text>
|
<text class="font-28 font-weight pr-10">件数</text>
|
||||||
<view style="width: 200rpx;">
|
<view style="width: 200rpx;">
|
||||||
<tpx-input placeholder="请填写" v-model:value="modelInfo.cargoQty" inputAlign="right" type="number" suffix="件" :_maxNum="cargoQtyMaxNum"></tpx-input>
|
<tpx-input placeholder="件数" v-model:value="modelInfo.cargoQty" inputAlign="center" type="number" suffix="件" :_maxNum="cargoQtyMaxNum" style="border-radius: 0px;"></tpx-input>
|
||||||
</view>
|
</view>
|
||||||
</u-row>
|
</u-row> -->
|
||||||
<u-row>
|
<u-row>
|
||||||
<text class="font-28 font-weight pr-10">体积</text>
|
<text class="font-28 font-weight pr-10">体积:</text>
|
||||||
<view style="">
|
<view style="">
|
||||||
{{modelInfo.volume || '0'}}
|
{{modelInfo.volume || '0'}}
|
||||||
<text class="clr-sub">m³</text>
|
<text class="clr-sub">m³</text>
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"appid" : "__UNI__BCB0FB5",
|
"appid" : "__UNI__BCB0FB5",
|
||||||
"description" : "探路国际速运",
|
"description" : "探路国际速运",
|
||||||
"versionName" : "1.0.2",
|
"versionName" : "1.0.2",
|
||||||
"versionCode" : 1062,
|
"versionCode" : 1063,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
|
|||||||
@ -214,7 +214,7 @@
|
|||||||
<view class="yunf-input-item">
|
<view class="yunf-input-item">
|
||||||
<tpx-text-item label="合同号">
|
<tpx-text-item label="合同号">
|
||||||
<template v-slot:right>
|
<template v-slot:right>
|
||||||
<tpx-input v-model:value="submitParam.custOrderId" inputAlign="right"></tpx-input>
|
<tpx-input v-model:value="submitParam.custOrderId" inputAlign="left"></tpx-input>
|
||||||
</template>
|
</template>
|
||||||
</tpx-text-item>
|
</tpx-text-item>
|
||||||
</view>
|
</view>
|
||||||
@ -242,7 +242,7 @@
|
|||||||
|
|
||||||
<view class="com-section mt-30" @click="handleDialogClick(goodChooseModal)">
|
<view class="com-section mt-30" @click="handleDialogClick(goodChooseModal)">
|
||||||
<u-row justify="space-between">
|
<u-row justify="space-between">
|
||||||
<text>发货信息(进仓情况)</text>
|
<text>货物信息</text>
|
||||||
<u-icon name="edit-pen" size="42"></u-icon>
|
<u-icon name="edit-pen" size="42"></u-icon>
|
||||||
</u-row>
|
</u-row>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user