|
|
@ -13,19 +13,26 @@
|
|
|
|
<el-input v-model="filterQuery.name" placeholder="请输入项目名称"></el-input>
|
|
|
|
<el-input v-model="filterQuery.name" placeholder="请输入项目名称"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="11" offset="1">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-form-item>
|
|
|
|
<el-form-item label="对照状态:">
|
|
|
|
|
|
|
|
<el-select v-model="filterQuery.contrastStatus" style="width: 90%" placeholder="请选择对照状态">
|
|
|
|
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
|
|
|
|
<el-option label="未对照" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="已对照" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-divider></el-divider>
|
|
|
|
|
|
|
|
<div class="top-right-btn" style="margin-top: -5px">
|
|
|
|
<el-button-group>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit">查询</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit">查询</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-download" @click="onDownload">更新下载</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-download" @click="onDownload">更新下载</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="handleAddClick">新增</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="handleAddClick">新增</el-button>
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" @current-change="handleDetail" border highlight-current-row
|
|
|
|
<el-table v-loading="loading" :data="list" @current-change="handleDetail" border highlight-current-row
|
|
|
|
style="width: 100%">
|
|
|
|
style="width: 100%">
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
@ -33,6 +40,15 @@
|
|
|
|
<el-table-column label="项目名称" prop="name" width="160"></el-table-column>
|
|
|
|
<el-table-column label="项目名称" prop="name" width="160"></el-table-column>
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" width="160"></el-table-column>
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" width="160"></el-table-column>
|
|
|
|
<el-table-column label="价格" prop="price" width="160"></el-table-column>
|
|
|
|
<el-table-column label="价格" prop="price" width="160"></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column label="状态" prop="contrastStatus" show-overflow-tooltip width="120">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<el-tag :type="statusFilterType(scope.row.contrastStatus)">{{
|
|
|
|
|
|
|
|
statusMap[scope.row.contrastStatus]
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="备注" prop="remark" width="180"></el-table-column>
|
|
|
|
<el-table-column label="备注" prop="remark" width="180"></el-table-column>
|
|
|
|
<!-- <el-table-column label="创建人" prop="createByName" width="140"></el-table-column>-->
|
|
|
|
<!-- <el-table-column label="创建人" prop="createByName" width="140"></el-table-column>-->
|
|
|
|
<el-table-column label="更新时间" prop="createTime" width="160"></el-table-column>
|
|
|
|
<el-table-column label="更新时间" prop="createTime" width="160"></el-table-column>
|
|
|
@ -160,7 +176,8 @@ export default {
|
|
|
|
code: "",
|
|
|
|
code: "",
|
|
|
|
type: 2,
|
|
|
|
type: 2,
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 20
|
|
|
|
limit: 20,
|
|
|
|
|
|
|
|
contrastStatus: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
editType: "",
|
|
|
|
editType: "",
|
|
|
|
formVisible: false,
|
|
|
|
formVisible: false,
|
|
|
@ -192,6 +209,10 @@ export default {
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 10,
|
|
|
|
limit: 10,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
statusMap: {
|
|
|
|
|
|
|
|
1: "未对照",
|
|
|
|
|
|
|
|
2: "已对照"
|
|
|
|
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
@ -229,7 +250,13 @@ export default {
|
|
|
|
this.$message.error("数据加载失败")
|
|
|
|
this.$message.error("数据加载失败")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
|
|
|
|
const statusMap = {
|
|
|
|
|
|
|
|
1: 'warning',
|
|
|
|
|
|
|
|
2: 'success'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return statusMap[status]
|
|
|
|
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.loading = true;
|
|
|
|
getBasicDestinyfilter(this.filterQuery).then(response => {
|
|
|
|
getBasicDestinyfilter(this.filterQuery).then(response => {
|
|
|
|