意见反馈表格修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
32de7c4f18
commit
bbfd119d08
|
@ -49,5 +49,6 @@ export default {
|
|||
<style lang="scss" scoped>
|
||||
::v-deep .el-dialog__body {
|
||||
padding-bottom: 0;
|
||||
height: 500px;
|
||||
}
|
||||
</style>
|
|
@ -151,6 +151,7 @@
|
|||
align="center"
|
||||
width="45"
|
||||
v-if="level > 7"
|
||||
:selectable="handleSelectTable"
|
||||
/>
|
||||
<el-table-column type="index" width="50" />
|
||||
<el-table-column
|
||||
|
@ -355,6 +356,10 @@ export default {
|
|||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
// 通过提交状态决定该行的 CheckBox 是否可以勾选
|
||||
handleSelectTable(row) {
|
||||
return row.State < 1;
|
||||
},
|
||||
async getList() {
|
||||
try {
|
||||
this.loading = true;
|
||||
|
|
Loading…
Reference in New Issue