Browse Source

Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev

fix_bug_pro20231227
zhangsiyu 2 years ago
parent
commit
454ce4c018
  1. 4
      src/option/basic/basicPrintTemplate.js
  2. 3
      src/views/basic/printTemplate/basicPrintTemplate.vue
  3. 20
      src/views/wel/index.vue

4
src/option/basic/basicPrintTemplate.js

@ -212,11 +212,11 @@ export default {
dicData: [ dicData: [
{ {
label: "开启", label: "开启",
value: "1", value: true,
}, },
{ {
label: "关闭", label: "关闭",
value: "0", value: false,
}, },
], ],
}, },

3
src/views/basic/printTemplate/basicPrintTemplate.vue

@ -141,6 +141,9 @@
rowSave(row, done, loading) { rowSave(row, done, loading) {
console.log("row",row); console.log("row",row);
row.fileName = this.fileName; row.fileName = this.fileName;
if(!row.knifeSwitch){
row.knifeSwitch = true;
}
add(row).then(() => { add(row).then(() => {
this.onLoad(this.page); this.onLoad(this.page);
this.$message({ this.$message({

20
src/views/wel/index.vue

@ -468,3 +468,23 @@
user-select: none; user-select: none;
} }
</style> </style>
<script>
import { mapGetters } from 'vuex';
export default {
name: 'wel',
data() {
return {
activeNames: ['1', '2', '3', '5'],
logActiveNames: ['29'],
};
},
computed: {
...mapGetters(['userInfo']),
},
methods: {
handleChange(val) {
window.console.log(val);
},
},
};
</script>

Loading…
Cancel
Save