From 451012362a26f1e34590c055222ee7787455e14f Mon Sep 17 00:00:00 2001 From: wwl <xchao828@163.com> Date: 星期一, 19 五月 2025 17:21:17 +0800 Subject: [PATCH] 新增页面 --- src/views/hosp/biaoben/index.vue | 123 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 123 insertions(+), 0 deletions(-) diff --git a/src/views/hosp/biaoben/index.vue b/src/views/hosp/biaoben/index.vue new file mode 100644 index 0000000..aacb526 --- /dev/null +++ b/src/views/hosp/biaoben/index.vue @@ -0,0 +1,123 @@ +<template> + <div class="app-container"> + + <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px"> + <el-form-item label="椤圭洰鍚嶇О" prop="tjh"> + <el-input v-model="queryParams.tjh" placeholder="璇疯緭鍏ラ」鐩悕绉�" clearable /> + </el-form-item> + <el-form-item> + <el-button type="primary" size="mini" @click="handleManual">鏌ヨ</el-button> + <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">閲嶇疆</el-button> + </el-form-item> + </el-form> + <el-table border v-loading="loading" :data="partList" height="350"> + <el-table-column type="selection" width="40px" align="center" /> + <el-table-column label="搴忓彿" align="center" prop="newID" width="50px" /> + <el-table-column label="椤圭洰鍚嶇О" align="center" prop="groupingName" /> + </el-table> + + + <el-dialog :title="title" :visible.sync="openOne" width="1400px" append-to-body :close-on-click-modal="false"> + <el-row :gutter="24"> + <el-col :span="15" :xs="24"> + <el-form :model="form" ref="queryForm" size="small" :inline="true" label-width="46px" + style="height: 35px" @submit.native.prevent> + <el-form-item label="鏍囨湰绫诲瀷"> + <el-input ref="inputName" v-model="form.price" placeholder="鏍囨湰绫诲瀷" clearable + style="width: 140px" /> + </el-form-item> + <el-form-item> + <el-button icon="el-icon-refresh" size="mini" @click="resetQuerys">閲嶇疆</el-button> + </el-form-item> + </el-form> + <el-table border v-loading="loading" :data="OnenewpacName" :row-class-name="tableRowClassName" + height="478"> + <el-table-column label="鍘熶环" align="center" prop="proPrice" width="85"></el-table-column> + <el-table-column label="鎿嶄綔" align="center" width="85"> + <template slot-scope="scope"> + <el-button size="mini" type="text" icon="el-icon-delete" + @click="handledbelete(scope.row)">鍒犻櫎</el-button> + </template> + </el-table-column> + </el-table> + </el-col> + + <el-col :span="7" :xs="24"> + <el-form :model="queryParams1" ref="queryForm" size="small" :inline="true" v-show="showSearch" + label-width="68px" @submit.native.prevent> + + + <el-form-item label="椤圭洰鍚嶇О" prop="proName"> + <el-input ref="inputName" v-model="queryParams1.proName" placeholder="璇疯緭鍏ラ」鐩悕绉�" clearable + @keyup.enter.native="handleSearchFor" style="width: 140px" /> + </el-form-item> + <el-form-item> + <el-button type="primary" icon="el-icon-search" size="mini" + @click="handleSearchFor">鎼滅储</el-button> + </el-form-item> + </el-form> + <el-table border v-loading="loading" ref="tre" :data="Treedata" + @selection-change="handleChangesingle" height="478" style="width: 100%"> + <el-table-column type="selection" width="40px" align="center" /> + <el-table-column label="椤圭洰鍚嶇О" align="center" prop="proName" width="230px" /> + <el-table-column label="椤圭洰浠锋牸/鍏�" align="center" prop="proPrice" width="100px" /> + </el-table> + </el-col> + </el-row> + <div slot="footer" class="dialog-footer1"> + <el-button type="primary" @click="submitrighr">纭骞朵繚瀛�</el-button> + <el-button @click="cancell">鍙� 娑�</el-button> + </div> + </el-dialog> + </div> +</template> + +<script> +// import { } from "@/api/system/menu"; +export default { + name: "Part", + // dicts: [ + // "", + // ], + data() { + return { + loading: false, + openOne: false, + partList: [], + Treedata: [], + queryParams: { + + }, + queryParams1: { + + }, + form: { + + }, + + } + }, + created() { + }, + methods: { + getList() { + + }, + resetQuery() { + this.resetForm("queryForm"); + }, + handleManual() { + + }, + handleChangesingle(selection) { + + }, + cancell() { + this.openOne = false + }, + submitrighr() { + + }, + } +}; +</script> \ No newline at end of file -- Gitblit v1.8.0