diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue
index e4efdd534..c776c8c2e 100644
--- a/src/views/modules/base/resi.vue
+++ b/src/views/modules/base/resi.vue
@@ -70,7 +70,7 @@
{{ handleFilterSpan(scope.row, item) }}
- {{ scope.row.gender == 1 ? "男" : "女" }}
+ {{ scope.row.gender == null ? '--':scope.row.gender == 1?'男':scope.row.gender ==2?'女':'--' }}
{{
diff --git a/vue.config.js b/vue.config.js
index fb36a74d2..be8704556 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -1,11 +1,11 @@
/*
* @Author: mk 2403457699@qq.com
- * @Date: 2023-08-28 19:45:33
+ * @Date: 2023-09-20 13:46:51
* @LastEditors: mk 2403457699@qq.com
- * @LastEditTime: 2023-09-12 19:24:04
+ * @LastEditTime: 2023-09-22 15:16:23
* @Description: 介绍一下改动了什么
- *
- *
+ *
+ *
*/
/**
* 配置参考: https://cli.vuejs.org/zh/config/
@@ -75,13 +75,13 @@ module.exports = {
"@m": "@/img",
},
},
- plugins: [
- new FileManagerPlugin({
- onEnd: {
- delete: ["./epmet-work-pc.zip"],
- archive: [{ source: "./epmet-work-pc", destination: "./epmet-work-pc.zip" }],
- },
- }),
- ],
+ // plugins: [
+ // new FileManagerPlugin({
+ // onEnd: {
+ // delete: ["./epmet-work-pc.zip"],
+ // archive: [{ source: "./epmet-work-pc", destination: "./epmet-work-pc.zip" }],
+ // },
+ // }),
+ // ],
},
};