|
@@ -172,7 +172,11 @@
|
|
|
prop="faceSuccessPercent"
|
|
|
width="100"
|
|
|
></el-table-column>
|
|
|
- <el-table-column label="IP" prop="ip" width="125"></el-table-column>
|
|
|
+ <el-table-column label="IP" prop="ip" width="125">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ showShortIpsStr(scope.row.ip, ",") }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
label="违纪描述"
|
|
|
prop="disciplineDetail"
|
|
@@ -226,12 +230,14 @@ import { mapState } from "vuex";
|
|
|
import commonFormVue from "../component/commonForm.vue";
|
|
|
import commonExportVue from "../component/commonExport.vue";
|
|
|
import pagePrivilege from "../mixin/pagePrivilege.js";
|
|
|
+import { showShortIpsStr } from "@/utils/utils.js";
|
|
|
import _ from "lodash";
|
|
|
export default {
|
|
|
components: { commonFormVue, commonExportVue },
|
|
|
mixins: [pagePrivilege],
|
|
|
data() {
|
|
|
return {
|
|
|
+ showShortIpsStr,
|
|
|
curSelectedExamRecordDataId: null,
|
|
|
curSelectedShowAuditButton: false,
|
|
|
needLoading: false,
|