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

查询分析增加creatTime field

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