Commit 92f9fa30 by chenyu

update: update

parent d4dda31a
......@@ -848,7 +848,7 @@
<template slot-scope="{row}">{{row.agreementType|agreementTypeFilter}}</template>
</el-table-column>
<el-table-column width="200" property="createTime" label="上传时间">
<template slot-scope="{row}">{{row.createTime|formatDate}}</template>
<template slot-scope="{row}">{{row.createTime}}</template>
</el-table-column>
</el-table>
<el-button slot="reference" type="text" class="m-l-16" v-if="!parent.channel">查看上传记录</el-button>
......@@ -1515,7 +1515,9 @@ export default {
.post(`${this.baseUrl}/api-admin/list-service-privacy-agreement`, qs.stringify(para))
.then(res => {
if (res.data.errorCode === 0) {
this[templateCode].options = [].concat(res.data.result||[]);
let list=res.data.result||[];
list.map(el=>(el.createTime=moment(el.createTime).format('YYYY-MM-DD HH:mm:ss')))
this[templateCode].options =[].concat(list)
}
})
.catch(err => {
......
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