|
|
@@ -3,7 +3,7 @@
|
|
3
|
3
|
<el-row :gutter="20" />
|
|
4
|
4
|
<el-form :inline="true" :model="ruleForm" class="demo-form-inline">
|
|
5
|
5
|
<el-form-item>
|
|
6
|
|
- <el-input v-model="ruleForm.sbmc" clearable placeholder="请输入设备名称" size="medium" />
|
|
|
6
|
+ <el-input v-model="ruleForm.sbmc" clearable placeholder="请输入耗材名称" size="medium" />
|
|
7
|
7
|
</el-form-item>
|
|
8
|
8
|
<el-form-item>
|
|
9
|
9
|
<el-button type="primary" size="medium" @click="btn_search_task">查询</el-button>
|
|
|
@@ -16,9 +16,9 @@
|
|
16
|
16
|
</el-form>
|
|
17
|
17
|
<el-table :data="dataLists" border highlight-current-row stripe>
|
|
18
|
18
|
<el-table-column type="index" label="序号" align="center" width="100" />
|
|
19
|
|
- <el-table-column prop="F_EquipName" label="设备名称" align="center" min-width />
|
|
|
19
|
+ <el-table-column prop="F_EquipName" label="耗材名称" align="center" min-width />
|
|
20
|
20
|
<el-table-column prop="F_EquipNumber" label="规格型号" align="center" min-width />
|
|
21
|
|
- <el-table-column prop="F_EquipPrice" label="价格(元)" align="center" min-width />
|
|
|
21
|
+ <el-table-column prop="F_EquipPrice" label="耗材价格(元)" align="center" min-width />
|
|
22
|
22
|
<el-table-column label="状态" align="center" min-width>
|
|
23
|
23
|
<template slot-scope="scope">
|
|
24
|
24
|
<span v-if="scope.row.F_State==1">有效</span>
|
|
|
@@ -143,7 +143,7 @@
|
|
143
|
143
|
} // props
|
|
144
|
144
|
},
|
|
145
|
145
|
area: ['40%', '50%'],
|
|
146
|
|
- title: '添加设备'
|
|
|
146
|
+ title: '添加耗材'
|
|
147
|
147
|
})
|
|
148
|
148
|
},
|
|
149
|
149
|
handleEdit(row) {
|
|
|
@@ -156,11 +156,11 @@
|
|
156
|
156
|
} // props
|
|
157
|
157
|
},
|
|
158
|
158
|
area: ['40%', '50%'],
|
|
159
|
|
- title: '编辑设备'
|
|
|
159
|
+ title: '编辑耗材'
|
|
160
|
160
|
})
|
|
161
|
161
|
},
|
|
162
|
162
|
handleDelete(row) {
|
|
163
|
|
- this.$confirm('确定要删除此设备吗?', '提示', {
|
|
|
163
|
+ this.$confirm('确定要删除此耗材吗?', '提示', {
|
|
164
|
164
|
confirmButtonText: '确定',
|
|
165
|
165
|
cancelButtonText: '取消',
|
|
166
|
166
|
type: 'warning'
|