质检和查询共识

This commit is contained in:
yanggongyan
2020-02-06 17:20:17 +08:00
32 changed files with 557 additions and 919 deletions

View File

@@ -39,11 +39,10 @@
<!-- size="small"-->
<!-- type="date"-->
<!-- placeholder="请选择结束日期"/>-->
<el-button type="success" icon="el-icon-search" size="small" style="margin-left: 10px" @click="PageSize = 10;PageCurrent = 1;fetchTableData1()">查询</el-button>
<el-button type="success" icon="el-icon-search" size="small" style="margin-left: 10px;background: #ecf5ff;border-color: #2d72d5;color: #2d72d5;" @click="PageSize = 10;PageCurrent = 1;fetchTableData1()">查询</el-button>
<el-tooltip :open-delay="1200" effect="dark" content="新增项目" placement="top">
<el-button type="primary" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px" @click="ADD()">新增</el-button>
<el-button type="primary" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px;background: #fdf6ec;border-color: #ff9759;color: #ff9759;" @click="ADD()">新增</el-button>
</el-tooltip>
<!-- <el-button type="info" size="small" style="margin-left: 10px">导出Excel</el-button>-->
</div>
</el-card>
<el-row>
@@ -74,7 +73,7 @@
</el-table-column>
<el-table-column align="center" label="项目下达日期" prop="合同签订日期" width="100">
<template slot-scope="scope">
{{ scope.row.合同签订日期 }}
{{ scope.row.合同签订日期.substring(0,10) }}
</template>
</el-table-column>
<el-table-column align="center" label="合同信息备注" min-width="150">
@@ -456,21 +455,21 @@ export default {
</script>
<style scoped>
.el-button--success {
background: #ffffff;
border-color: #2d72d5;
color: #2d72d5;
}
.el-button--primary {
background: #ffffff;
border-color: #ff9759;
color: #ff9759;
}
.el-button--info {
background: #ffffff;
border-color: #67c23a;
color: #67c23a;
}
/*.el-button--success {*/
/* background: #ecf5ff;*/
/* border-color: #2d72d5;*/
/* color: #2d72d5;*/
/*}*/
/*.el-button--primary {*/
/* background: #fdf6ec;*/
/* border-color: #ff9759;*/
/* color: #ff9759;*/
/* }*/
/*.el-button--info {*/
/* background: #f0f9eb;*/
/* border-color: #67c23a;*/
/* color: #67c23a;*/
/*}*/
</style>
<style lang="scss">
.subTableHeader {