提交修改

dev
dsh 12 months ago
parent c35aac1d6b
commit be3cb0865a

@ -2,7 +2,7 @@
<div>
<el-table
:data="tableData"
style="width: 100%;height: 681px;overflow: auto;"
style="width: 100%;height: 630px;overflow: auto;"
@expand-change="handleExpand"
>
<el-table-column type="expand">
@ -11,7 +11,7 @@
class="down"
:data="scope.row.childrenList"
stripe
style="width: 100%;margin-top: 20px;"
style="width: 100%;"
:show-header="false"
ref="table"
>
@ -247,6 +247,12 @@ export default {
</script>
<style scoped lang="scss">
::v-deep .el-table::before {
left: 0;
bottom: 0;
width: 0;
height: 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}

@ -325,7 +325,7 @@ export default {
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus:'0,1,3',
applyStatus:undefined,
applyType: this.applyParam.applyType
}
listApply(item ==='mounted' ? queryObj:this.queryParams).then(response => {
@ -497,6 +497,9 @@ export default {
};
</script>
<style scoped lang="scss">
::v-deep .el-table__cell{
padding: 8px 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}

@ -103,7 +103,7 @@
v-model="form.score"
placeholder="请进行评分"
clearable
oninput="this.value = this.value.replace(/[^0-9]/g, '');"
oninput="this.value = this.value.replace(/[^\d.]/g, '').replace(/^(\d*\.\d{0,1}).*$/,'$1');"
/>
</el-form-item>
</el-col>

Loading…
Cancel
Save