md
This commit is contained in:
parent
71afd736ae
commit
ed90ef0ddd
@ -2,7 +2,8 @@
|
|||||||
<el-breadcrumb class="app-breadcrumb" separator="/">
|
<el-breadcrumb class="app-breadcrumb" separator="/">
|
||||||
<transition-group name="breadcrumb">
|
<transition-group name="breadcrumb">
|
||||||
<el-breadcrumb-item v-for="(item,index) in levelList" :key="item.path">
|
<el-breadcrumb-item v-for="(item,index) in levelList" :key="item.path">
|
||||||
<span v-if="item.redirect === 'noRedirect' || index == levelList.length - 1" class="no-redirect">{{ item.meta.title }}</span>
|
<!-- <span v-if="item.redirect === 'noRedirect' || index == levelList.length - 1" class="no-redirect">{{ item.meta.title() }}</span> -->
|
||||||
|
<span v-if="item.meta.title&&typeof item.meta.title === 'function'">{{ item.meta.title($route.params) }}</span>
|
||||||
<a v-else @click.prevent="handleLink(item)">{{ item.meta.title }}</a>
|
<a v-else @click.prevent="handleLink(item)">{{ item.meta.title }}</a>
|
||||||
</el-breadcrumb-item>
|
</el-breadcrumb-item>
|
||||||
</transition-group>
|
</transition-group>
|
||||||
|
|||||||
@ -14,7 +14,10 @@
|
|||||||
@click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''"
|
@click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''"
|
||||||
@contextmenu.prevent.native="openMenu(tag,$event)"
|
@contextmenu.prevent.native="openMenu(tag,$event)"
|
||||||
>
|
>
|
||||||
{{ tag.title }}
|
<!-- 原代码 {{ tag.title }}-->
|
||||||
|
<span v-if="tag.title && typeof tag.title === 'function'">{{ tag.title(tag.params)}}</span>
|
||||||
|
<span v-else>{{tag.title}}</span>
|
||||||
|
|
||||||
<span v-if="!isAffix(tag)" class="el-icon-close" @click.prevent.stop="closeSelectedTag(tag)" />
|
<span v-if="!isAffix(tag)" class="el-icon-close" @click.prevent.stop="closeSelectedTag(tag)" />
|
||||||
</router-link>
|
</router-link>
|
||||||
</scroll-pane>
|
</scroll-pane>
|
||||||
|
|||||||
@ -522,9 +522,9 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="unit" :label="$t('单位')" align="center" width="100">
|
<el-table-column prop="unit" :label="$t('单位')" align="center" width="100">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-select filterable v-model="scope.row.unit" style="width: 100%;">
|
<el-select filterable v-model="scope.row.unit" size="mini" style="width: 100%;">
|
||||||
<el-option key="件" label="件" value="件" ></el-option>
|
<el-option key="件" label="件" value="件" ></el-option>
|
||||||
<el-option key="个" label="米" value="个" ></el-option>
|
<el-option key="个" label="个" value="个" ></el-option>
|
||||||
<el-option key="条" label="条" value="条" ></el-option>
|
<el-option key="条" label="条" value="条" ></el-option>
|
||||||
<el-option key="米" label="米" value="米" ></el-option>
|
<el-option key="米" label="米" value="米" ></el-option>
|
||||||
<el-option key="根" label="根" value="根" ></el-option>
|
<el-option key="根" label="根" value="根" ></el-option>
|
||||||
@ -587,11 +587,12 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column prop="length" :label="$t('长(cm)')" align="center" width="80">
|
<el-table-column prop="length" :label="$t('长(cm)')" align="center" width="80">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input v-model="scope.row.length" size="mini" placeholder=""></el-input>
|
<el-input v-model="scope.row.length" size="mini" placeholder=""></el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column prop="width" :label="$t('宽(cm)')" align="center" width="80">
|
<el-table-column prop="width" :label="$t('宽(cm)')" align="center" width="80">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input v-model="scope.row.width" size="mini" placeholder=""></el-input>
|
<el-input v-model="scope.row.width" size="mini" placeholder=""></el-input>
|
||||||
@ -1014,12 +1015,36 @@ watch: {
|
|||||||
deep: true
|
deep: true
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// beforeRouteEnter:(to,from,next) => {
|
||||||
|
// if(to.query.action=="modify") {
|
||||||
|
// to.meta.title = '修改'
|
||||||
|
// }else if(to.query.type == 'copyOrder') {
|
||||||
|
// to.meta.title = '再来一单'
|
||||||
|
// }
|
||||||
|
// next()
|
||||||
|
// },
|
||||||
created() {
|
created() {
|
||||||
|
|
||||||
if(this.$route.query.action=="copyOrder"||this.$route.query.action=="modify"){
|
if(this.$route.query.action=="copyOrder"){
|
||||||
|
// this.$router.meta.title="再来一单";
|
||||||
this.action=this.$route.query.action;
|
this.action=this.$route.query.action;
|
||||||
this.billCode=this.$route.query.billCode;
|
this.billCode=this.$route.query.billCode;
|
||||||
|
|
||||||
|
const title = '再来一单';
|
||||||
|
const route = Object.assign({}, this.$route, { title: `${title}` })
|
||||||
|
this.$store.dispatch('tagsView/updateVisitedView', route)
|
||||||
|
|
||||||
|
this.initData();
|
||||||
|
}
|
||||||
|
else if(this.$route.query.action=="modify"){
|
||||||
|
// this.$router.meta.title="订单修改";
|
||||||
|
this.action=this.$route.query.action;
|
||||||
|
this.billCode=this.$route.query.billCode;
|
||||||
|
|
||||||
|
const title = '修改:'+this.billCode;
|
||||||
|
const route = Object.assign({}, this.$route, { title: `${title}` })
|
||||||
|
this.$store.dispatch('tagsView/updateVisitedView', route)
|
||||||
|
|
||||||
this.initData();
|
this.initData();
|
||||||
}
|
}
|
||||||
else if(this.$route.query.action=="preOrderByProd"){
|
else if(this.$route.query.action=="preOrderByProd"){
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
:model="queryParams"
|
:model="queryParams"
|
||||||
ref="queryForm"
|
ref="queryForm"
|
||||||
size="mini"
|
size="mini"
|
||||||
:maxShow="8"
|
:maxShow="40"
|
||||||
label-width="90px"
|
label-width="90px"
|
||||||
v-show="showSearch" @search="handleQuery"
|
v-show="showSearch" @search="handleQuery"
|
||||||
@reset="resetQuery">
|
@reset="resetQuery">
|
||||||
@ -312,6 +312,16 @@
|
|||||||
>导出</el-button>
|
>导出</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
size="mini"
|
||||||
|
:disabled="single"
|
||||||
|
@click="handleShowGotPic"
|
||||||
|
>查看揽收底单</el-button>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -522,6 +532,14 @@
|
|||||||
<WaybillDetailReadOnly :key="currentTraceBillCode" :billCode="currentTraceBillCode" ></WaybillDetailReadOnly>
|
<WaybillDetailReadOnly :key="currentTraceBillCode" :billCode="currentTraceBillCode" ></WaybillDetailReadOnly>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
|
<el-dialog title="查看揽收底单图片" :visible.sync="openShowGotPic" width="30%" :close-on-click-modal="false" v-dialogDrag append-to-body>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<el-image :src="billPicSendRmk" style="width: 200px"></el-image>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
</XdPageContainer>
|
</XdPageContainer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -621,6 +639,7 @@ export default {
|
|||||||
titleForm: "",
|
titleForm: "",
|
||||||
billCode:null,
|
billCode:null,
|
||||||
|
|
||||||
|
|
||||||
openTraceInfo:false,
|
openTraceInfo:false,
|
||||||
currentTraceBillItem:null,
|
currentTraceBillItem:null,
|
||||||
currentTraceBillCode:null,
|
currentTraceBillCode:null,
|
||||||
@ -631,11 +650,15 @@ export default {
|
|||||||
|
|
||||||
queryStatInfoMap:null,
|
queryStatInfoMap:null,
|
||||||
|
|
||||||
|
|
||||||
// 弹出展示层
|
// 弹出展示层
|
||||||
id:null,
|
id:null,
|
||||||
titleView:"",
|
titleView:"",
|
||||||
openView: false,
|
openView: false,
|
||||||
|
|
||||||
|
openShowGotPic:false,
|
||||||
|
billPicSendRmk:null,
|
||||||
|
|
||||||
// 时间搜索
|
// 时间搜索
|
||||||
dateRange:[],
|
dateRange:[],
|
||||||
// 查询参数
|
// 查询参数
|
||||||
@ -842,7 +865,9 @@ export default {
|
|||||||
},
|
},
|
||||||
handleView(row){
|
handleView(row){
|
||||||
// this.billCode=row.billCode;
|
// this.billCode=row.billCode;
|
||||||
this.openView=true;
|
this.currentTraceBillCode=this.billCode;
|
||||||
|
this.currentTraceBillItem=row;
|
||||||
|
this.openTraceInfo=true;
|
||||||
},
|
},
|
||||||
handleCancel(row){
|
handleCancel(row){
|
||||||
|
|
||||||
@ -862,10 +887,43 @@ export default {
|
|||||||
}).catch(() => {});
|
}).catch(() => {});
|
||||||
},
|
},
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.$router.push({ path: '/orderMgnt/OrderRecord', query: { action:"modify",billCode: this.billCode }})
|
// const id = row.id;
|
||||||
|
// const title = '修改:'+this.billCode;
|
||||||
|
// const route = Object.assign({}, this.$route, { title: `${title}` })
|
||||||
|
// route.path='/orderMgnt/OrderRecord';
|
||||||
|
// route.query={ action:"modify",billCode: this.billCode};
|
||||||
|
|
||||||
|
// console.log("===>route==>",route);
|
||||||
|
|
||||||
|
// this.$store.dispatch('tagsView/updateVisitedView', route)
|
||||||
|
|
||||||
|
this.$router.push({
|
||||||
|
path: '/orderMgnt/OrderRecord',
|
||||||
|
query: { action:"modify",billCode: this.billCode },
|
||||||
|
meta:{
|
||||||
|
title:'修改'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleShowGotPic(row){
|
||||||
|
|
||||||
|
if(!this.billPicSendRmk){
|
||||||
|
this.$modal.msgError("无揽收底单" );
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if(this.billPicSendRmk){
|
||||||
|
this.openShowGotPic=true;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
handleCopyOrderRecord(row){
|
handleCopyOrderRecord(row){
|
||||||
this.$router.push({ path: '/orderMgnt/OrderRecord', query: { action:"copyOrder",billCode: this.billCode }})
|
this.$router.push({
|
||||||
|
path: '/orderMgnt/OrderRecord',
|
||||||
|
query: { action:"copyOrder",billCode: this.billCode },
|
||||||
|
meta:{
|
||||||
|
title:'再来一单'
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
initQueryParams(){
|
initQueryParams(){
|
||||||
// this.queryOrderType="1";
|
// this.queryOrderType="1";
|
||||||
@ -943,6 +1001,8 @@ export default {
|
|||||||
console.log("====>selection==>",selection)
|
console.log("====>selection==>",selection)
|
||||||
if(selection!=null){
|
if(selection!=null){
|
||||||
this.billCode=selection[0].billCode;
|
this.billCode=selection[0].billCode;
|
||||||
|
this.billPicSendRmk=selection[0].billPicSendRmk;
|
||||||
|
|
||||||
}
|
}
|
||||||
console.log("====>billCode==>",this.billCode)
|
console.log("====>billCode==>",this.billCode)
|
||||||
|
|
||||||
|
|||||||
@ -36,6 +36,14 @@
|
|||||||
<el-descriptions-item label="销售联系人">{{ form.salesmen }}</el-descriptions-item>
|
<el-descriptions-item label="销售联系人">{{ form.salesmen }}</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
|
|
||||||
|
<el-descriptions :title="$t('仓库收货信息')" size="small" :column="4" v-if="form.pickupMethod==1">
|
||||||
|
<el-descriptions-item label="仓库名称" :span="1">{{form.intoWarehouseName}}</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="仓库联系人" :span="1">{{form.intoWarehouseContact}} {{form.intoWarehousePhone}}</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="仓库地址" :span="4">{{form.intoWarehouseAddress}}</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="预计入仓时间" :span="1">{{form.pickStartDate}}</el-descriptions-item>
|
||||||
|
|
||||||
|
</el-descriptions>
|
||||||
|
|
||||||
<el-descriptions :title="$t('收寄件信息')" size="small" :column="4" style="margin-top:10px">
|
<el-descriptions :title="$t('收寄件信息')" size="small" :column="4" style="margin-top:10px">
|
||||||
<el-descriptions-item label="寄件人">{{ form.sender.name }}</el-descriptions-item>
|
<el-descriptions-item label="寄件人">{{ form.sender.name }}</el-descriptions-item>
|
||||||
<el-descriptions-item label="寄件电话">{{ form.sender.phone }}</el-descriptions-item>
|
<el-descriptions-item label="寄件电话">{{ form.sender.phone }}</el-descriptions-item>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user