From fcbba75febaa36d23c6c49473ab5bcee0e1a2c04 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 08 四月 2025 09:37:11 +0800
Subject: [PATCH] 检验项目新增是否委托要求字段
---
src/views/CNAS/process/method/standardMethodsChange/index.vue | 40 ++++++++++++++++------------------------
1 files changed, 16 insertions(+), 24 deletions(-)
diff --git a/src/views/CNAS/process/method/standardMethodsChange/index.vue b/src/views/CNAS/process/method/standardMethodsChange/index.vue
index 9a4ac26..2be8ffd 100644
--- a/src/views/CNAS/process/method/standardMethodsChange/index.vue
+++ b/src/views/CNAS/process/method/standardMethodsChange/index.vue
@@ -7,31 +7,24 @@
<el-input size="small" placeholder="璇疯緭鍏�" clearable v-model="searchForm.methodName"></el-input>
</el-form-item>
<el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="searchList">鏌� 璇�</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetSearchForm">閲� 缃�</el-button>
+ <el-button type="primary" size="mini" @click="searchList">鏌ヨ</el-button>
+ <el-button size="mini" @click="resetSearchForm">閲嶇疆</el-button>
</el-form-item>
</el-form>
</div>
<div>
- <el-button size="medium" type="primary" @click="openFormDia('add')">鏂� 澧�</el-button>
+ <el-button size="small" type="primary" @click="openFormDia('add')">鏂� 澧�</el-button>
</div>
</div>
<div class="table">
- <div>
- <TableCard :showForm="false" :showTitle="false">
- <template v-slot:table>
- <lims-table :tableData="tableData" :column="tableColumn" :height="'calc(100vh - 250px)'" @pagination="pagination"
- :page="page" :tableLoading="tableLoading"></lims-table>
- </template>
- </TableCard>
- </div>
+ <lims-table :tableData="tableData" :column="tableColumn" :height="'calc(100vh - 250px)'"
+ @pagination="pagination" :page="page" :tableLoading="tableLoading"></lims-table>
</div>
<formDIaChange v-if="formDIa" ref="formDIa" :operationType="operationType" @closeDia="closeDia"></formDIaChange>
</div>
</template>
<script>
-import TableCard from '@/views/CNAS/externalService/serviceAndSupplyPro/component/index.vue';
import formDIaChange from './component/formDIaChange.vue';
import limsTable from '@/components/Table/lims-table.vue'
import {
@@ -41,9 +34,9 @@
} from '@/api/cnas/process/method/standardMethodsChange'
export default {
- name: 'a7-changes-standard-methods',
+ name: 'StandardMethodschange',
// import 寮曞叆鐨勭粍浠堕渶瑕佹敞鍏ュ埌瀵硅薄涓墠鑳戒娇鐢�
- components: { limsTable, formDIaChange, TableCard },
+ components: { limsTable, formDIaChange },
data() {
// 杩欓噷瀛樻斁鏁版嵁
return {
@@ -125,9 +118,9 @@
operationType: this.searchForm.operationType,
}
this.tableLoading = true
- pagesMethodVerify({... this.page,...entity}).then(res => {
+ pagesMethodVerify({ ... this.page, ...entity }).then(res => {
this.tableLoading = false
- if (res.code === 200){
+ if (res.code === 200) {
this.tableData = res.data.records
this.page.total = res.data.total
}
@@ -137,16 +130,16 @@
})
},
// 鍒犻櫎
- deleteRow (row) {
+ deleteRow(row) {
this.$confirm('姝ゆ搷浣滃皢姘镐箙鍒犻櫎璇ユ暟鎹�, 鏄惁缁х画?', '鎻愮ず', {
confirmButtonText: '纭畾',
cancelButtonText: '鍙栨秷',
type: 'warning'
}).then(() => {
this.tableLoading = true
- delMethodVerify({methodVerifyId:row.methodVerifyId}).then(res => {
+ delMethodVerify({ methodVerifyId: row.methodVerifyId }).then(res => {
this.tableLoading = false
- if (res.code === 200){
+ if (res.code === 200) {
this.$message.success('鍒犻櫎鎴愬姛')
this.searchList()
}
@@ -161,7 +154,7 @@
this.searchForm.methodName = '';
this.searchList()
},
- openFormDia (type, row) {
+ openFormDia(type, row) {
this.formDIa = true
this.operationType = type
this.$nextTick(() => {
@@ -169,18 +162,17 @@
})
},
// 鍏抽棴寮规
- closeDia () {
+ closeDia() {
this.formDIa = false
this.searchList()
},
// 瀵煎嚭
downLoadPost(row) {
this.outLoading = true
- exportMethodVerify({methodVerifyId:row.methodVerifyId}).then(res => {
+ exportMethodVerify({ methodVerifyId: row.methodVerifyId }).then(res => {
this.outLoading = false
- const blob = new Blob([res],{ type: 'application/msword' });
+ const blob = new Blob([res], { type: 'application/msword' });
this.$download.saveAs(blob, '鏍囧噯锛堟柟娉曪級纭璁板綍.docx')
- this.$message.success('瀵煎嚭鎴愬姛')
})
},
// 鍒嗛〉鍒囨崲
--
Gitblit v1.9.3