| | |
| | | style="width: 100%"> |
| | | <el-table-column label="排查内容" align="center"> |
| | | <el-table-column |
| | | prop="province" |
| | | prop="factor_1" |
| | | label="Ⅰ级要素" |
| | | width="120"> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="city" |
| | | prop="factor_2" |
| | | label="Ⅱ级要素" |
| | | width="120"> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="address" |
| | | prop="factor_3" |
| | | label="Ⅲ级要素" |
| | | width="120"> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="zip" |
| | | prop="factor_4" |
| | | label="Ⅳ级要素" |
| | | width="120"> |
| | | </el-table-column> |
| | | </el-table-column> |
| | | <el-table-column label="排查标准" align="center"> |
| | | <el-table-column |
| | | prop="province" |
| | | prop="Standard" |
| | | label="标准项具体描述" |
| | | width="300"> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="city" |
| | | prop="reference" |
| | | width="200" |
| | | label="参考依据"> |
| | | </el-table-column> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="date" |
| | | prop="method" |
| | | label="排查方法" |
| | | width="150"> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="date" |
| | | prop="period" |
| | | label="排查周期" |
| | | width="150"> |
| | | </el-table-column> |
| | | <el-table-column label="排查责任" align="center"> |
| | | <el-table-column |
| | | prop="province" |
| | | prop="level" |
| | | label="排查级别"> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="city" |
| | | prop="branch" |
| | | label="责任单位"> |
| | | </el-table-column> |
| | | </el-table-column> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import {stand_list} from "@/api/sgyhpczl/hiddenDangerTroubleshootingList"; |
| | | |
| | | export default { |
| | | name: "preview", |
| | | data() { |
| | | return { |
| | | tableData: [{ |
| | | date: '2016-05-03', |
| | | name: '王小虎', |
| | | province: '上海', |
| | | city: '普陀区', |
| | | address: '上海市普陀区金沙江路 1518 弄', |
| | | zip: 200333 |
| | | }, { |
| | | date: '2016-05-02', |
| | | name: '王小虎', |
| | | province: '上海', |
| | | city: '普陀区', |
| | | address: '上海市普陀区金沙江路 1518 弄', |
| | | zip: 200333 |
| | | }, { |
| | | date: '2016-05-04', |
| | | name: '王小虎', |
| | | province: '上海', |
| | | city: '普陀区', |
| | | address: '上海市普陀区金沙江路 1518 弄', |
| | | zip: 200333 |
| | | }, { |
| | | date: '2016-05-01', |
| | | name: '王小虎', |
| | | province: '上海', |
| | | city: '普陀区', |
| | | address: '上海市普陀区金沙江路 1518 弄', |
| | | zip: 200333 |
| | | }, { |
| | | date: '2016-05-08', |
| | | name: '王小虎', |
| | | province: '上海', |
| | | city: '普陀区', |
| | | address: '上海市普陀区金沙江路 1518 弄', |
| | | zip: 200333 |
| | | }, { |
| | | date: '2016-05-06', |
| | | name: '王小虎', |
| | | province: '上海', |
| | | city: '普陀区', |
| | | address: '上海市普陀区金沙江路 1518 弄', |
| | | zip: 200333 |
| | | }, { |
| | | date: '2016-05-07', |
| | | name: '王小虎', |
| | | province: '上海', |
| | | city: '普陀区', |
| | | address: '上海市普陀区金沙江路 1518 弄', |
| | | zip: 200333 |
| | | }] |
| | | tableData: [] |
| | | } |
| | | }, |
| | | mounted() { |
| | | this.getTableData() |
| | | }, |
| | | methods: { |
| | | getTableData() { |
| | | stand_list(this.$route.query.templateName).then((res) => { |
| | | if (res.data.ok) { |
| | | console.log(res); |
| | | this.tableData = res.data.data; |
| | | } else { |
| | | this.$message({type: 'error', message: res.data.msg, duration: 3000}) |
| | | } |
| | | }) |
| | | } |
| | | } |
| | | } |