|
@@ -143,6 +143,16 @@
|
|
|
<i class="el-icon-pie-chart"></i>
|
|
|
合并或拆分
|
|
|
</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item v-if="isShowOperate">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="showSaleLog()"
|
|
|
+ v-if="!notRoutList.includes('saleLog')"
|
|
|
+ >
|
|
|
+ <i class="el-icon-pie-chart"></i>
|
|
|
+ 操作日志
|
|
|
+ </el-button>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<label
|
|
@@ -1351,6 +1361,19 @@
|
|
|
>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ :visible.sync="isShowSaleLog"
|
|
|
+ width="90%"
|
|
|
+ center
|
|
|
+ title="操作日志"
|
|
|
+ >
|
|
|
+ <el-form >
|
|
|
+ <el-form-item label="请输入查询:">
|
|
|
+ <el-input v-model="optionSaleLog.requestQuery.con" style="width:300px"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <dil-table v-bind.sync="optionSaleLog"></dil-table>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -1368,6 +1391,14 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ isShowSaleLog:false,
|
|
|
+ optionSaleLog:{
|
|
|
+ maxHeight:400,
|
|
|
+ requestUrl:"/api/v1/ams/selectAllLog?apiId=522",
|
|
|
+ requestQuery:{
|
|
|
+ con:null
|
|
|
+ }
|
|
|
+ },
|
|
|
isCheckGPS: true,
|
|
|
userId: null,
|
|
|
orgCode: null,
|
|
@@ -1697,7 +1728,8 @@ export default {
|
|
|
'batchCarrier',
|
|
|
'select',
|
|
|
'exceptionHandle',
|
|
|
- 'mergeSplit'
|
|
|
+ 'mergeSplit',
|
|
|
+ 'saleLog'
|
|
|
]
|
|
|
this.noticeInterval = setInterval(() => {
|
|
|
this.getinformation()
|
|
@@ -1813,6 +1845,12 @@ export default {
|
|
|
},
|
|
|
computed: {},
|
|
|
methods: {
|
|
|
+ showSaleLog(){
|
|
|
+ this.isShowSaleLog=true;
|
|
|
+ if (this.steelMap) {
|
|
|
+ this.optionSaleLog.requestQuery.con=this.steelMap.orderNo;
|
|
|
+ }
|
|
|
+ },
|
|
|
//删除计量实绩
|
|
|
linkageDeleteTransportOrder(row, steelMap) {
|
|
|
console.log(row, 'row')
|
|
@@ -2941,6 +2979,7 @@ export default {
|
|
|
console.log('我只想测')
|
|
|
this.steelMap.capacityId = this.steelMap.newsCapacityId
|
|
|
this.steelMap.driverTel = this.steelMap.capacityTel
|
|
|
+ this.steelMap.userId =getCookie("userId")
|
|
|
if (this.steelMap.newsCapacityId == null) {
|
|
|
this.$message.warning('请先注册车牌号或者选中弹出后再提交!')
|
|
|
return
|