Browse Source

居民信息男女,config打包恢复

feature
mk 2 years ago
parent
commit
9f25e0e4a6
  1. 2
      src/views/modules/base/resi.vue
  2. 24
      vue.config.js

2
src/views/modules/base/resi.vue

@ -70,7 +70,7 @@
{{ handleFilterSpan(scope.row, item) }} {{ handleFilterSpan(scope.row, item) }}
</a> </a>
<div v-else-if="item.columnName == 'gender'"> <div v-else-if="item.columnName == 'gender'">
{{ scope.row.gender == 1 ? "男" : "女" }} {{ scope.row.gender == null ? '--':scope.row.gender == 1?'男':scope.row.gender ==2?'女':'--' }}
</div> </div>
<div v-else-if="item.columnName == 'birthday'"> <div v-else-if="item.columnName == 'birthday'">
{{ {{

24
vue.config.js

@ -1,11 +1,11 @@
/* /*
* @Author: mk 2403457699@qq.com * @Author: mk 2403457699@qq.com
* @Date: 2023-08-28 19:45:33 * @Date: 2023-09-20 13:46:51
* @LastEditors: mk 2403457699@qq.com * @LastEditors: mk 2403457699@qq.com
* @LastEditTime: 2023-09-12 19:24:04 * @LastEditTime: 2023-09-22 15:16:23
* @Description: 介绍一下改动了什么 * @Description: 介绍一下改动了什么
* *
* *
*/ */
/** /**
* 配置参考: https://cli.vuejs.org/zh/config/ * 配置参考: https://cli.vuejs.org/zh/config/
@ -75,13 +75,13 @@ module.exports = {
"@m": "@/img", "@m": "@/img",
}, },
}, },
plugins: [ // plugins: [
new FileManagerPlugin({ // new FileManagerPlugin({
onEnd: { // onEnd: {
delete: ["./epmet-work-pc.zip"], // delete: ["./epmet-work-pc.zip"],
archive: [{ source: "./epmet-work-pc", destination: "./epmet-work-pc.zip" }], // archive: [{ source: "./epmet-work-pc", destination: "./epmet-work-pc.zip" }],
}, // },
}), // }),
], // ],
}, },
}; };

Loading…
Cancel
Save