n20-common-lib 2.7.46 → 2.7.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/ShowColumn/index.vue +7 -4
- package/style/index.css +2 -2
- package/theme/blue.css +3 -0
- package/theme/cctcRed.css +3 -0
- package/theme/fonts/element-icons.535877f5.woff +0 -0
- package/theme/fonts/element-icons.732389de.ttf +0 -0
- package/theme/fonts/iconfont.09d221ee.woff +0 -0
- package/theme/fonts/iconfont.1c4bfacc.ttf +0 -0
- package/theme/fonts/iconfont.a6f34dc7.woff2 +0 -0
- package/theme/fonts/iconfont.f4c32765.ttf +0 -0
- package/theme/green.css +3 -0
- package/theme/lightBlue.css +3 -0
- package/theme/orange.css +3 -0
- package/theme/purple.css +3 -0
- package/theme/red.css +3 -0
- package/theme/yellow.css +3 -0
package/package.json
CHANGED
|
@@ -173,13 +173,13 @@
|
|
|
173
173
|
</template>
|
|
174
174
|
|
|
175
175
|
<script>
|
|
176
|
-
import { $lc } from '../../utils/i18n/index'
|
|
177
176
|
import axios from '../../utils/axios'
|
|
177
|
+
import { $lc } from '../../utils/i18n/index'
|
|
178
178
|
|
|
179
|
+
import { Message } from 'element-ui'
|
|
180
|
+
import forEachs from '../../utils/forEachs'
|
|
179
181
|
import dialogWrap from '../Dialog/index.vue'
|
|
180
182
|
import dragList from '../DragList/index.vue'
|
|
181
|
-
import forEachs from '../../utils/forEachs'
|
|
182
|
-
import { Message } from 'element-ui'
|
|
183
183
|
export default {
|
|
184
184
|
name: 'ShowColumn',
|
|
185
185
|
components: { dialogWrap, dragList },
|
|
@@ -424,8 +424,11 @@ export default {
|
|
|
424
424
|
// 自动保存设置的显示列
|
|
425
425
|
this.userNo = sessionStorage.getItem('userNo')
|
|
426
426
|
!this.isExport && this.autoSave && this.saveColumns(list)
|
|
427
|
-
|
|
427
|
+
|
|
428
428
|
this.$emit('setColumns', list)
|
|
429
|
+
if (this.isExport) {
|
|
430
|
+
this.visible = false
|
|
431
|
+
}
|
|
429
432
|
},
|
|
430
433
|
saveColumns(list) {
|
|
431
434
|
let columns = saveTransform(list, this.labelKey, this.isFilter)
|