From d7d138b8ef200b0f6f7898d08ca4445d2c5d1313 Mon Sep 17 00:00:00 2001 From: yangbin <1796443586@qq.com> Date: Tue, 25 Aug 2026 17:39:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=95=99=E5=AD=A6=E5=9C=BA?= =?UTF-8?q?=E5=9C=B0=E5=BC=B9=E7=AA=97=E5=86=85=E5=AE=B9=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/teachBusiness/venue/index.vue | 47 +++++++++++++------ 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/frontend/src/views/teachBusiness/venue/index.vue b/frontend/src/views/teachBusiness/venue/index.vue index b494473a2..6c3bbefe4 100644 --- a/frontend/src/views/teachBusiness/venue/index.vue +++ b/frontend/src/views/teachBusiness/venue/index.vue @@ -100,11 +100,6 @@ :close-on-click-modal="false"> - - - - - @@ -135,7 +130,15 @@ - +
+ + ㎡ +
@@ -148,11 +151,6 @@ - - - - - @@ -227,7 +225,6 @@ export default { form: this.createEmptyForm() }, rules: { - jsbh: [{ required: true, message: '请输入教室编号', trigger: 'blur' }], jsmc: [{ required: true, message: '请输入教室名称', trigger: 'blur' }] } } @@ -324,7 +321,7 @@ export default { /* ---------- 新增 / 编辑 ---------- */ handleAdd() { - this.dialog.title = '新增教室' + this.dialog.title = '新增教学场地' this.dialog.form = this.createEmptyForm() this.dialog.visible = true this.$nextTick(() => { @@ -332,7 +329,7 @@ export default { }) }, handleEdit(row) { - this.dialog.title = '编辑教室' + this.dialog.title = '编辑教学场地' this.dialog.form = Object.assign({}, this.createEmptyForm(), row) this.dialog.visible = true this.$nextTick(() => { @@ -455,6 +452,28 @@ export default { } } +.number-unit-field { + display: flex; + align-items: center; + gap: 12px; + width: 100%; + + .el-input-number { + flex: 1; + width: auto; + min-width: 0; + } + + .number-unit { + display: inline-flex; + flex: none; + align-items: center; + justify-content: center; + height: 36px; + color: #606266; + } +} + .danger-text-btn { color: #f56c6c;