|
@@ -280,19 +280,24 @@
|
|
stripe
|
|
stripe
|
|
>
|
|
>
|
|
<el-table-column
|
|
<el-table-column
|
|
- property="materialOldNumber"
|
|
|
|
|
|
+ type="index"
|
|
align="left"
|
|
align="left"
|
|
- min-width="120"
|
|
|
|
|
|
+ min-width="50"
|
|
label="序号"
|
|
label="序号"
|
|
- show-overflow-tooltip
|
|
|
|
/>
|
|
/>
|
|
<el-table-column
|
|
<el-table-column
|
|
property="orderId"
|
|
property="orderId"
|
|
align="left"
|
|
align="left"
|
|
- min-width="100"
|
|
|
|
|
|
+ min-width="150"
|
|
label="订单号"
|
|
label="订单号"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
- />
|
|
|
|
|
|
+ >
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-link type="primary" :underline="false" @click="handleToDaily(scope.row.orderId)">{{
|
|
|
|
+ scope.row.orderId
|
|
|
|
+ }}</el-link>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
property="specification"
|
|
property="specification"
|
|
align="left"
|
|
align="left"
|
|
@@ -303,7 +308,7 @@
|
|
<el-table-column
|
|
<el-table-column
|
|
property="full"
|
|
property="full"
|
|
align="left"
|
|
align="left"
|
|
- min-width="350"
|
|
|
|
|
|
+ min-width="120"
|
|
label="是否已生成仓租"
|
|
label="是否已生成仓租"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
>
|
|
>
|
|
@@ -314,14 +319,14 @@
|
|
<el-table-column
|
|
<el-table-column
|
|
property="fullTime"
|
|
property="fullTime"
|
|
align="left"
|
|
align="left"
|
|
- min-width="200"
|
|
|
|
|
|
+ min-width="150"
|
|
label="货满日期"
|
|
label="货满日期"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|
|
- <el-table-column property="fullNum" align="left" min-width="100" label="计算天数" show-overflow-tooltip />
|
|
|
|
|
|
+ <el-table-column property="fullNum" align="left" min-width="80" label="计算天数" show-overflow-tooltip />
|
|
<el-table-column align="center" label="操作" min-width="80" show-overflow-tooltip fixed="right">
|
|
<el-table-column align="center" label="操作" min-width="80" show-overflow-tooltip fixed="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-button type="text" class="textColor" @click="handLogistics(scope.row)">查看</el-button>
|
|
|
|
|
|
+ <el-button type="text" class="textColor" @click="handleToDaily(scope.row.orderId)">查看</el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -553,8 +558,9 @@ export default {
|
|
pageNum: this.currentPage,
|
|
pageNum: this.currentPage,
|
|
materialName: '',
|
|
materialName: '',
|
|
materialNumber: '',
|
|
materialNumber: '',
|
|
- materialOldNumber: this.stockOrderNo,
|
|
|
|
|
|
+ materialOldNumber: '',
|
|
specification: '',
|
|
specification: '',
|
|
|
|
+ orderId: this.stockOrderNo,
|
|
endTime: time.length ? time[0] : '',
|
|
endTime: time.length ? time[0] : '',
|
|
startTime: time.length ? time[1] : ''
|
|
startTime: time.length ? time[1] : ''
|
|
}
|
|
}
|
|
@@ -668,6 +674,12 @@ export default {
|
|
this.type = 0
|
|
this.type = 0
|
|
this.$emit('reset')
|
|
this.$emit('reset')
|
|
this.$store.commit('user/showMessage', 'no')
|
|
this.$store.commit('user/showMessage', 'no')
|
|
|
|
+ },
|
|
|
|
+ handleToDaily(orderId) {
|
|
|
|
+ this.$router.push({ path: `/basic_data/dailyWarehouseRent?orderId=${orderId}` })
|
|
|
|
+ this.type = 0
|
|
|
|
+ this.$emit('reset')
|
|
|
|
+ this.$store.commit('user/showMessage', 'no')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|