|
@@ -111,6 +111,7 @@ const pageChange = ({ current, size }) => {
|
|
|
const tableLoading = ref(false)
|
|
|
const tableColumn = ref([
|
|
|
{ key: 'periodNumber', name: '期号' },
|
|
|
+ { key: 'no-key', name: '支付期编号' },
|
|
|
{ key: 'periodYear', name: '年份' },
|
|
|
{ key: 'periodMonth', name: '月份' },
|
|
|
{ key: 'startDate', name: '开始日期' },
|
|
@@ -189,6 +190,7 @@ const delRow = (row, index)=>{
|
|
|
//编辑的表格
|
|
|
const tableEditColumn = [
|
|
|
{ key: 'periodNumber', name: '期号' },
|
|
|
+ { key: 'no-key', name: '支付期编号' },
|
|
|
{ key: 'periodYear', name: '年份' },
|
|
|
{ key: 'periodMonth', name: '月份' },
|
|
|
{ key: 'startDate', name: '开始日期' },
|
|
@@ -251,7 +253,7 @@ const changeStart = (val, row)=>{
|
|
|
}
|
|
|
}
|
|
|
const changeEnd = (val, row)=>{
|
|
|
-
|
|
|
+
|
|
|
if (val < row.startDate) {
|
|
|
window.$message.warning('结束时间不能早于开始时间')
|
|
|
row.endDate = ''
|
|
@@ -262,7 +264,7 @@ const changeEnd = (val, row)=>{
|
|
|
if (val) {
|
|
|
row.formPrintDate = row.endDate
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
</script>
|
|
|
|