Commit 052426b8 authored by 李苏's avatar 李苏 💬

Modify some parameters and adjust styles

parent 366ecd76
...@@ -142,6 +142,7 @@ ...@@ -142,6 +142,7 @@
dynamic:true, dynamic:true,
component:Rkd, component:Rkd,
label: 'rktzDjid', label: 'rktzDjid',
dialogTitle:'选择入库单',
transform: { transform: {
value: 'id', value: 'id',
label: 'djid' label: 'djid'
......
...@@ -11,6 +11,13 @@ ...@@ -11,6 +11,13 @@
<!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 --> <!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 -->
</template> </template>
<template slot="tabCustom2">
<el-table-column label="操作" width="90" header-align="center" fixed="right">
<template slot-scope="scope">
<div style="cursor: pointer;color: cornflowerblue;text-align: center;width: 70px;" @click.prevent.self="selected(scope.row)" >装包</div>
</template>
</el-table-column>
</template>
</BasePage> </BasePage>
</div> </div>
...@@ -64,11 +71,11 @@ ...@@ -64,11 +71,11 @@
return { return {
editTableConfig:{ editTableConfig:{
editTableTitle:[ editTableTitle:[
{ // {
label: "唯一码", // label: "唯一码",
prop: "packCode", // prop: "packCode",
width: 140 // width: 140
}, // },
{ {
label: "物料编码", label: "物料编码",
prop: "wlxxCode", prop: "wlxxCode",
...@@ -239,8 +246,8 @@ ...@@ -239,8 +246,8 @@
this.editTableConfig.editTableData.splice(index,1) this.editTableConfig.editTableData.splice(index,1)
}, },
selected(){ selected(row){
let list=this.$refs.basePage.$refs.TablePager.selectedList||[] let list=[row]
if(list.length!=1){ if(list.length!=1){
this.$warning('该操作只能选中一条数据后操作') this.$warning('该操作只能选中一条数据后操作')
}else{ }else{
......
...@@ -33,12 +33,12 @@ ...@@ -33,12 +33,12 @@
tableTitle: [ tableTitle: [
{ {
title: "状态", title: "状态",
field: "zt", field: "bzzt",
fieldType: "ftString", fieldType: "ftString",
align: 'center', align: 'center',
width: 80, width: 80,
"transform": { "transform": {
"url": "wms/rkgl/rktz/init/zt", "url": "wms/rkgl/rktz/init/bzzt",
"label": "name", "label": "name",
"value": "id" "value": "id"
} }
...@@ -53,11 +53,11 @@ ...@@ -53,11 +53,11 @@
field: "ywrq", field: "ywrq",
fieldType: 'ftDate' fieldType: 'ftDate'
}, },
{ // {
title: "入库人", // title: "入库人",
field: "rkr", // field: "rkr",
width: 140 // width: 140
}, // },
{ {
title: "事务类型", title: "事务类型",
field: "swlxName", field: "swlxName",
...@@ -95,14 +95,20 @@ ...@@ -95,14 +95,20 @@
} }
], ],
queryParams: [ queryParams: [
[{ [
label: '日期', {
startProp: "start", label: '开始日期',
endProp: "end", prop: 'start',
span: 12, span: 6,
type: 'RelDaterangeV2', type: 'date',
startValue: new Date().getTime()-1000*60*60*24*30, value: ''
endValue:new Date().getTime(), },
{
label: '开始日期',
prop: 'end',
span: 6,
type: 'date',
value: ''
}, },
{ {
"label": "仓库", "label": "仓库",
......
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