|
@@ -17,12 +17,12 @@
|
|
|
@feedback="feedback"
|
|
|
@getList="getList"
|
|
|
:hasPermi="hasPermi"
|
|
|
+ :tatolLabel="tatolLabel"
|
|
|
:isItHidden="isItHidden"
|
|
|
:customButton="customButton"
|
|
|
:listStyle="listStyle"
|
|
|
:queryList="queryList"
|
|
|
:setRowList="setRowList"
|
|
|
- :tatolLabel="tatolLabel"
|
|
|
/>
|
|
|
<el-pagination
|
|
|
style="float: right;margin-top: 10px"
|
|
@@ -46,7 +46,9 @@ export default {
|
|
|
data(){
|
|
|
return{
|
|
|
tatolLabel:['数量'],
|
|
|
- dataList:{},
|
|
|
+ dataList:{
|
|
|
+ fCorpid:[]
|
|
|
+ },
|
|
|
tableData:[],
|
|
|
setRowList:[],
|
|
|
isItHidden: true,
|
|
@@ -267,11 +269,12 @@ export default {
|
|
|
this.queryList.columnList = this.queryList.columnList.filter((e) => e.checked == 0)
|
|
|
// this.waitFor = true
|
|
|
} else {
|
|
|
- this.$set(this.queryList, 'columnList', this.$options.data().contentStyle)
|
|
|
- this.setRowList = this.$options.data().contentStyle
|
|
|
+ this.$set(this.queryList, 'columnList', this.$options.data().listStyle)
|
|
|
+ this.setRowList = this.$options.data().listStyle
|
|
|
}
|
|
|
- this.isItHidden = false
|
|
|
- this.inDex = this.formOption.length
|
|
|
+ this.isItHidden = true
|
|
|
+ // this.inDex = this.formOption.length
|
|
|
+ this.inDex = 4
|
|
|
})
|
|
|
},
|
|
|
//修改
|
|
@@ -328,7 +331,8 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
-
|
|
|
-<style scoped>
|
|
|
-
|
|
|
+<style scoped lang="scss">
|
|
|
+.app-container ::v-deep .el-form-item {
|
|
|
+ margin-bottom: 4px;
|
|
|
+}
|
|
|
</style>
|