commit
This commit is contained in:
@@ -193,6 +193,11 @@ export default {
|
||||
title: '合规评估', // 把 标准涉及项目 这几个字 改成 标准合规评估结果
|
||||
path: '/standInvolveProject',
|
||||
menuId: '8a9c87fe06244fb9d55e78fb281f625b'
|
||||
},
|
||||
{
|
||||
title: '企标制修订计划',
|
||||
path: '/enterpriseStandardPlan',
|
||||
// menuId: '8a9c87fe06244fb9d55e78fb281f625b'
|
||||
}
|
||||
// {
|
||||
// title: '动态信息',
|
||||
|
||||
@@ -0,0 +1,157 @@
|
||||
<template>
|
||||
<div id="enterpriseStandardPlan">
|
||||
<div class="action-bar">
|
||||
<el-button type="primary"
|
||||
class="common-button-primary add-button"
|
||||
size="mini"
|
||||
@click=""><i class="el-icon-plus"></i>新增
|
||||
</el-button>
|
||||
<el-button class="common-button-default in-button"
|
||||
size="mini"
|
||||
@click=""><i class="iconfont"></i>导入
|
||||
</el-button>
|
||||
<el-button class="common-button-default export-button"
|
||||
size="mini"
|
||||
@click=""><i class="iconfont"></i>导出
|
||||
</el-button>
|
||||
<el-button class="common-button-default"
|
||||
size="mini" @click=""><i class="iconfont"></i>下载
|
||||
</el-button>
|
||||
<el-button class="common-button-default"
|
||||
size="mini"
|
||||
@click=""><i class="iconfont"></i>删除
|
||||
</el-button>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="table-wrap">
|
||||
<el-table
|
||||
ref="multipleTable"
|
||||
:data="data"
|
||||
tooltip-effect="dark"
|
||||
border
|
||||
style="width: 100%; flex: auto;"
|
||||
class="drag-table"
|
||||
height="100%"
|
||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||
fontWeight: 'bold', height: '48px'}">
|
||||
<el-table-column
|
||||
label="计划状态"
|
||||
width="120">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="standName"
|
||||
label="计划类型"
|
||||
width="350">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="issueTime"
|
||||
width="150"
|
||||
label="企标类别">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="SSRQ"
|
||||
width="150"
|
||||
label="企业编号">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="XCXSSRQ"
|
||||
width="150"
|
||||
label="代替企标编号">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="ZCCSSRQ"
|
||||
width="150"
|
||||
label="企标名称">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="textStatus"
|
||||
width="120"
|
||||
label="英文名称">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="textStatus"
|
||||
label="主要起草人">
|
||||
</el-table-column>
|
||||
<!-- <el-table-column fixed="right" v-if="isPermission('f9745194958bc9ed3ee5127459795dbc,e8d690904ee1895dd0d17d9c794fbcd7,b299fa5edb3f3f35badb2adb6bda9f2e')>0" label="操作" align="center" width="100">-->
|
||||
<el-table-column fixed="right" label="操作" align="center" width="60">
|
||||
<template slot-scope="scope">
|
||||
<div @click.stop style="display: inline-block">
|
||||
<el-dropdown trigger="click" @command="handleCommand">
|
||||
<i class="iconfont"></i>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-item :command="[scope.row, '编辑']">
|
||||
编辑
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item :command="[scope.row, '删除']">
|
||||
删除
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</el-dropdown>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<pagination :page="form.page" :total="total"
|
||||
@pageChange="pageChange" @pageSizeChange="pageSizeChange"></pagination>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "enterpriseStandardPlan",
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
page: 1,
|
||||
pageSize: '',
|
||||
},
|
||||
total: 0,
|
||||
|
||||
data: []
|
||||
}
|
||||
},
|
||||
props: {},
|
||||
watch: {},
|
||||
methods: {
|
||||
pageChange () {},
|
||||
pageSizeChange () {},
|
||||
handleCommand () {},
|
||||
getData () {
|
||||
this.$http.get('esRevisePlan/es-revise-plan/getAllPlans', {}, {
|
||||
_this: this
|
||||
}, res => {
|
||||
if (res.ok) {
|
||||
this.data = res.data
|
||||
}
|
||||
})
|
||||
},
|
||||
},
|
||||
computed: {},
|
||||
mounted() {
|
||||
this.getData()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
@import '~@/assets/styles/mixins';
|
||||
@import '~@/assets/styles/style';
|
||||
#enterpriseStandardPlan {
|
||||
height: 100%;
|
||||
.content {
|
||||
height: calc(~'100% - 53px');
|
||||
.table-wrap {
|
||||
height: calc(~'100% - 56px');
|
||||
}
|
||||
.pagination {
|
||||
position: static;
|
||||
/deep/ .pagination-slot {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -1857,6 +1857,17 @@ const routes = [
|
||||
requireAuth: true,
|
||||
title: '工作组',
|
||||
}
|
||||
},
|
||||
// 企标制修订计划
|
||||
{
|
||||
path: '/enterpriseStandardPlan',
|
||||
name: 'enterpriseStandardPlan',
|
||||
component: () =>
|
||||
import('@/pages/regulatoryRepository/enterpriseStandardPlan/index'),
|
||||
meta: {
|
||||
requireAuth: true,
|
||||
title: '企标制修订计划',
|
||||
}
|
||||
},
|
||||
// 标准涉及项目
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user