Commit 455a0134 authored by youjie's avatar youjie

车行订单翻译

parent a144c31f
......@@ -2664,5 +2664,7 @@ export const op={
import invoicesManager from './zhCN/invoicesManager'
import Ground from './zhCN/Ground'
import ObjFill from './zhCN/fill'
export const ios = invoicesManager
export const ground = Ground
export const objFill = ObjFill
export const obj = {
//#region ending v1.0.0
orderid: '订单Id',
pickup: '接机',
send: '送机',
halfday: '半天',
allday: '全天',
oneclickfinish: '一键完结',
finished: '已完结',
uncompleted: '未完结',
copy: '复制',
copied: '已复制',
petition: '请求书',
guestinfor: '客人信息',
orderholder: '下单人',
driver: '司机',
assistantdriver: '副司机',
preparedocument: '制单',
collectiondocument: '收款单据',
nocollectiondocument: '暂无收款单据',
refundreceipt: '退款单据',
norefundreceipt: '暂无退款单据',
costdocument: '成本单据',
nocostdocument: '暂无成本单据',
invoicedocument: '发票单据',
noinvoicedocument: '暂无发票单据',
balanceout: '冲抵',
groundsforcancellation: '取消理由',
caravanshopcol: {
t1: '车/使用时间/天数',
t2: '用车详情',
t3: '总金额',
t4: '代收金额',
t5: '实收',
t6: '退款',
t7: '平台在途金额',
t8: '平台税金',
t9: '成本金额',
},
unit: {
day: '天',
thefirst: '第',
}
//#endregion
}
export default obj;
......@@ -162,7 +162,7 @@
</li>
<li>
<span><em>{{ $t('OrderList.search.orderId') }}</em>
<el-input clearable type="Number" v-model="msg.OrderId" placeholder="订单ID" />
<el-input clearable type="Number" v-model="msg.OrderId" :placeholder="$t('objFill.v100.orderid')" />
</span>
</li>
<li>
......@@ -213,16 +213,16 @@ export default {
return {
useTypes: [
{
StatusName: '接機',StatusId: 1
StatusName: this.$t('objFill.v100.pickup'),StatusId: 1
},
{
StatusName: '送機',StatusId: 2
StatusName: this.$t('objFill.v100.send'),StatusId: 2
},
{
StatusName: '半天',StatusId: 3
StatusName: this.$t('objFill.v100.halfday'),StatusId: 3
},
{
StatusName: '全天', StatusId: 4
StatusName: this.$t('objFill.v100.allday'), StatusId: 4
}
],
userInfo: {},
......@@ -238,7 +238,7 @@ export default {
msg: {
pageIndex: 1,
pageSize: 5,
OrderId: 0,
OrderId: '0',
CustomerId: 0,
UseSTime: "",
UseETime: "",
......@@ -251,12 +251,6 @@ export default {
{ Name: this.$t('pub.normalSel'), ID: '1' },
{ Name: this.$t('OrderList.orderStatus.cancel'), ID: '2' },
],
MailingStateType: [
{ Name: '自行取票', ID: '1' },
{ Name: '邮寄票券', ID: '2' },
// {Name: '已邮寄票券',ID:'3'},
{Name: '电子券',ID:'4'},
],
orderType: [
{ Name: this.$t('OrderList.orderType.tour'), ID: '1' },
{ Name: this.$t('OrderList.orderType.guest'), ID: '2' },
......@@ -363,6 +357,7 @@ export default {
},
//获取酒店订单列表
GetList() {
if(this.msg.OrderId=='') this.msg.OrderId = 0
this.loading = true
let url
// 销售 OP
......
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