Commit 8baeafec authored by 李苏's avatar 李苏 💬

查询分析增加creatTime field

parent 4c73b7d8
......@@ -123,6 +123,11 @@
field: "fjldwname",
width: 120
},
{
title: "创建时间",
field: "sjsj",
fieldType: 'ftDateTime'
},
{
title: "备注",
field: "bz",
......@@ -138,8 +143,8 @@
type: 'RelDaterangeV2',
// startValue: this.$moment().startOf('month').valueOf(),
// endValue: this.$moment().endOf('month').valueOf(),
startValue:null,
endValue:null,
startValue: null,
endValue: null,
},
{
"label": "仓库",
......@@ -197,28 +202,28 @@
components: {
Edit
},
watch: {
'$route.params.row': {
handler(newValue, oldValue) {
/* 覆盖查询条件*/
if(newValue){
this.$nextTick(()=>{
this.$refs.basePage.queryParams.start=newValue.start
this.$refs.basePage.queryParams.end=newValue.end
this.$forceUpdate()
this.$refs.basePage.queryParams.ckid=newValue.ckid
this.$refs.basePage.queryParams.kwid=newValue.kwid
this.$refs.basePage.queryParams.phxx=newValue.wlph
this.$refs.basePage.queryParams.zlh=newValue.zlh
this.$refs.basePage.queryParams.wlid=newValue.wlid
this.$refs.basePage.refresh()
})
watch: {
'$route.params.row': {
handler(newValue, oldValue) {
/* 覆盖查询条件*/
if (newValue) {
this.$nextTick(() => {
this.$refs.basePage.queryParams.start = newValue.start
this.$refs.basePage.queryParams.end = newValue.end
this.$forceUpdate()
this.$refs.basePage.queryParams.ckid = newValue.ckid
this.$refs.basePage.queryParams.kwid = newValue.kwid
this.$refs.basePage.queryParams.phxx = newValue.wlph
this.$refs.basePage.queryParams.zlh = newValue.zlh
this.$refs.basePage.queryParams.wlid = newValue.wlid
this.$refs.basePage.refresh()
})
}
},
deep: true
}
},
}
},
deep: true
}
},
}
</script>
......
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