Commit fd79416a authored by dragondean@qq.com's avatar dragondean@qq.com

订单编辑

parent d1d18c7e
......@@ -143,3 +143,12 @@ export function getCityData(query) {
params: query
})
}
// 获取仓库区域并行国家、城市、仓库列表
export function getGuojiaAndShiAndWarehouseList(query = {}) {
return request({
url: '/app-api/ecw/warehouse/getGuojiaAndShiAndWarehouseList',
method: 'get',
params: query
})
}
......@@ -387,11 +387,11 @@ export default {
consignorPhone: '发货人电话',
consignorEmail: '发货人邮箱',
consigneeName: '收货人',
consigneeCompany: '收货人公司名称',
consigneeNameEn: '收货人英文名称',
consigneeCompanyEn: '收货人公司英文名称',
consigneeEmail: '收货人邮箱',
consigneePhone: '收货人电话',
consigneeCompany: '公司名称',
consigneeNameEn: '英文名称',
consigneeCompanyEn: '公司英文名称',
consigneeEmail: '邮箱',
consigneePhone: '电话',
marks: '唛头',
isCargoControl: '是否控货',
baseInfo: '基础',
......@@ -815,7 +815,7 @@ export default {
openConsignee: '选择收货人',
consigneePhone: '电话',
consigneePhoneNotice: '请输入电话',
consigneeCompany: '收货人公司名称',
consigneeCompany: '公司名称',
consigneeCompanyNotice: '请输入公司名称',
consigneeCompanyNoticeEn: '请输入公司英文名称',
emailNotice: '请输入邮箱',
......@@ -831,7 +831,7 @@ export default {
objectiveNotice: '请选择目的地',
router: '请选择线路',
routerNotice: '请在右侧选择线路',
goods: '商品信息',
goods: '商品',
addPro: '添加货物',
addPros: '批量添加货物',
index: '序号',
......
<script>
export default {
props: {
title: String,
langKey: String
}
}
</script>
<template>
<div style="display: flex">
<div
style="
width: 6px;
height: 26px;
background: #659fd5;
border-radius: 0px 6px 6px 0px;
"
/>
<span
style="
font-size: 22px;
font-weight: 500;
color: #333;
line-height: 26px;
margin-left: 5px;
"
>
<slot>{{ title || $t(langKey) }}</slot>
</span>
</div>
</template>
<style scoped>
</style>
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment