|
@@ -1,14 +1,11 @@
|
|
|
<template>
|
|
|
- <hc-dialog is-to-body is-table is-footer-center widths="90%" :show="isShow" title="预变更清单添加" @save="addModalSave" @close="addModalClose">
|
|
|
+ <hc-dialog is-to-body is-table is-footer-center widths="90%" :show="isShow" title="引用预变更" @save="addModalSave" @close="addModalClose">
|
|
|
<hc-card-item>
|
|
|
<template #header>
|
|
|
<div class="w-60">
|
|
|
- <el-input v-model="searchForm.key1" placeholder="清单编号" />
|
|
|
+ <el-input v-model="searchForm.key1" placeholder="变更方案编号" />
|
|
|
</div>
|
|
|
</template>
|
|
|
- <template #extra>
|
|
|
- <el-link type="primary">显示已分解</el-link>
|
|
|
- </template>
|
|
|
<hc-table :column="tableColumn" :datas="tableData" :loading="tableLoading" is-check @selection-change="tableCheckChange" />
|
|
|
<template #action>
|
|
|
<hc-pages :pages="searchForm" @change="pageChange" />
|
|
@@ -64,13 +61,11 @@ const pageChange = ({ current, size }) => {
|
|
|
//表格数据
|
|
|
const tableLoading = ref(false)
|
|
|
const tableColumn = ref([
|
|
|
- { key: 'key1', name: '清单编号' },
|
|
|
- { key: 'key2', name: '清单名称' },
|
|
|
- { key: 'key3', name: '现行单价(元)' },
|
|
|
- { key: 'key4', name: '合同数量' },
|
|
|
- { key: 'key5', name: '合同变更后数量' },
|
|
|
- { key: 'key6', name: '已分解量' },
|
|
|
- { key: 'key7', name: '是否增补' },
|
|
|
+ { key: 'key1', name: '预变更编号' },
|
|
|
+ { key: 'key2', name: '预变更名称' },
|
|
|
+ { key: 'key3', name: '业务日期' },
|
|
|
+ { key: 'key4', name: '变更类型' },
|
|
|
+ { key: 'key5', name: '变更申请金额' },
|
|
|
])
|
|
|
const tableData = ref([
|
|
|
{ key1: '1111' },
|
|
@@ -91,7 +86,3 @@ const addModalClose = () => {
|
|
|
emit('close')
|
|
|
}
|
|
|
</script>
|
|
|
-
|
|
|
-<style scoped lang="scss">
|
|
|
-
|
|
|
-</style>
|