Commit f9a1da4e authored by wangxl's avatar wangxl

333

parent c088f369
......@@ -62,7 +62,7 @@
<a-col :span="2">
<div class="special-middle">
<div>
{{ item.releaseDate }}
{{ moment(item.releaseDate).format('YYYY-MM-DD') }}
</div>
</div>
</a-col>
......@@ -76,7 +76,7 @@
<a-col :span="2">
<div class="special-middle">
<div>
{{ item.validityPeriod }}
{{ moment(item.validityPeriod).format('YYYY-MM-DD') }}
</div>
</div>
</a-col>
......@@ -102,7 +102,7 @@
<script>
import documentView from '@/views/components/common/documentView'
import moment from 'moment'
export default {
name: "managementRuleInfo",
......@@ -129,7 +129,7 @@ export default {
},
methods: {
moment,
},
};
</script>
......
......@@ -130,7 +130,7 @@
<a-col :span="1">
<div class="special-middle">
<div>
{{ item.birthday }}
{{ moment(item.birthday).format('YYYY-MM-DD') }}
</div>
</div>
</a-col>
......@@ -257,6 +257,7 @@
//用法 <proj-group-member :members.sync="formData.members" />
import memberEdit from '@/views/report/project/components/memberEdit'
import moment from 'moment'
const Member = {
name: null,
......@@ -307,6 +308,7 @@ export default {
created () {
},
methods: {
moment,
closeWindow (value) {
if (!this.isEdit) {
this.memObject = {}
......
......@@ -125,7 +125,7 @@
<a-col :span="1">
<div class="special-middle">
<div>
{{ item.birthday }}
{{ moment(item.birthday).format('YYYY-MM-DD') }}
</div>
</div>
</a-col>
......@@ -234,6 +234,7 @@
<script>
//用法 <proj-group-member :members.sync="formData.members" />
import moment from 'moment'
export default {
name: 'projectMemberInfo',
......@@ -255,7 +256,7 @@ export default {
created () {
},
methods: {
moment,
}
}
</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