|
|
@@ -84,7 +84,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="age" sortable label="年代" width="180">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="textureType" sortable label="质地" width="220">
|
|
|
+ <el-table-column prop="texture" sortable label="质地" width="220">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="status" label="状态" width="130">
|
|
|
</el-table-column>
|
|
|
@@ -218,8 +218,8 @@ export default {
|
|
|
this.imgList = res.data.list
|
|
|
this.tableData = res.data.list
|
|
|
this.tableData.forEach(v => {
|
|
|
- if (v.textureType === 0) v.textureType = '单一质地'
|
|
|
- else if (v.textureType === 1) v.textureType = '复合质地'
|
|
|
+ // if (v.textureType === 0) v.textureType = '单一质地'
|
|
|
+ // else if (v.textureType === 1) v.textureType = '复合质地'
|
|
|
if (v.status === 0) v.status = '保管中'
|
|
|
else if (v.status === 1) v.status = '已提用'
|
|
|
else v.status = '已注销'
|