仓库信息中 增加是否被供应商使用即修改全局样式,固定操作栏

ywj_dev
wangwei 2 years ago
parent b7ef501166
commit b79ff6d5b1

@ -189,3 +189,8 @@ aside {
.multiselect--active {
z-index: 1000 !important;
}
.el-table--mini .el-table__cell {
padding:0px!important;
}

@ -103,7 +103,7 @@
width="60%"
top="5vh"
>
<el-form :model="subData" ref="dataForm" :rules="formRules" label-width="80px">
<el-form :model="subData" ref="dataForm" :rules="formRules" label-width="130px">
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<el-form-item label="所属部门" prop="parentId">
@ -161,8 +161,18 @@
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="是否能被供应商使用" prop="spUse" class="query-form-item">
<el-radio-group v-model="subData.spUse">
<el-radio :label="true"></el-radio>
<el-radio :label="false"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-row class="el-row" type="flex">
<el-col class="el-col">
<el-form-item label="备注" prop="remark" class="query-form-item">

@ -39,7 +39,7 @@
</el-row>
</el-form>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row class="table-fixed">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="用户名称" prop="nickName" width="220"></el-table-column>
<el-table-column
@ -70,7 +70,7 @@
</template>
</el-table-column>
<el-table-column label="操作"width="60px">
<el-table-column label="操作"width="60px" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
@ -557,7 +557,6 @@
});
},
openFile(path) {
debugger
window.open(this.fileUrl + path);
},
},
@ -573,12 +572,8 @@
};
</script>
<style>
.div-text {
float: right;
text-align: right;
margin-top: 10px;
}
<style lang="scss" scoped>
</style>

Loading…
Cancel
Save