a
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card style="padding: 3px 0px 3px 0px;width: 1135px">
|
||||
<el-card style="padding: 3px 0px 3px 0px;width: 1238px">
|
||||
<el-select v-model="entryNameValue" clearable filterable placeholder="项目名称" size="small" style="width:180px;margin: 0px 0px" @change="PageSize = 10;PageCurrent = 1;fetchTableData1()">
|
||||
<el-option
|
||||
v-for="item in entryName"
|
||||
@@ -48,7 +48,7 @@
|
||||
<el-button icon="el-icon-bottom" type="success" plain size="small" style="margin-left: 15px" @click="exportExcel()">导出</el-button>
|
||||
</el-card>
|
||||
<el-row>
|
||||
<el-col style="width: 680px">
|
||||
<el-col style="width: 783px">
|
||||
<el-card>
|
||||
<el-table v-loading="listLoading" :data="tableData1" :row-key="getRowKeys" :expand-row-keys="expands" style="width: 100%" height="700" border stripe size="mini" @row-click="selectMachine">
|
||||
<el-table-column align="center" label="合同编号" prop="合同编号" width="120px">
|
||||
@@ -73,6 +73,11 @@
|
||||
{{ scope.row.合同信息备注 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="创建人" width="90px">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.自家项目创建人 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" width="130px">
|
||||
<template slot-scope="scope">
|
||||
<el-button style="margin-left: 5px" size="mini" type="text" icon="el-icon-circle-plus-outline" @click.stop="addMachine(scope.row);flag = 1">机床</el-button>
|
||||
@@ -187,6 +192,7 @@
|
||||
import elInput from 'element-ui/packages/input'
|
||||
import { getNowTime } from '@/utils/tool'
|
||||
import { initProject, searchTable1, selectMachine, addList, editchar, delList, submitMachine, editMachine, delMachine } from '@/api/MarketingCenter/CreateProject'
|
||||
import { mapGetters } from 'vuex'
|
||||
export default {
|
||||
components: {
|
||||
elInput
|
||||
@@ -247,10 +253,16 @@ export default {
|
||||
flag: ''
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapGetters([
|
||||
'id'
|
||||
])
|
||||
},
|
||||
created() {
|
||||
this.init()
|
||||
// this.fetchTableData1()
|
||||
},
|
||||
|
||||
methods: {
|
||||
// EXCEL 导出
|
||||
// 姜福壮
|
||||
|
||||
Reference in New Issue
Block a user