|
|
@@ -90,7 +90,11 @@
|
|
|
label="入驻时间"
|
|
|
min-width="200"
|
|
|
align="center"
|
|
|
- ></el-table-column>
|
|
|
+ >
|
|
|
+ <template v-slot="scope">
|
|
|
+ {{ subTimeStr(scope.row.createTime) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" min-width="80" align="center">
|
|
|
<template v-slot="scope">
|
|
|
<el-button
|
|
|
@@ -121,6 +125,7 @@ import store from "../../store";
|
|
|
import router from "../../router";
|
|
|
import md5 from "md5";
|
|
|
import api from "../../apis/fetch";
|
|
|
+import { subTimeStr } from "../../utils/utils";
|
|
|
|
|
|
export default {
|
|
|
setup() {
|
|
|
@@ -232,6 +237,7 @@ export default {
|
|
|
form,
|
|
|
...toRefs(ruleForm),
|
|
|
...toRefs(rules),
|
|
|
+ subTimeStr,
|
|
|
};
|
|
|
},
|
|
|
};
|