diff --git a/src/components/FirstJob/recordBill.vue b/src/components/FirstJob/recordBill.vue index 60c66a7..c92fe89 100644 --- a/src/components/FirstJob/recordBill.vue +++ b/src/components/FirstJob/recordBill.vue @@ -25,7 +25,7 @@
- +
@@ -70,7 +70,7 @@ - +
{{ storeName || "-" }} diff --git a/src/components/FirstJob/recordBillTable.vue b/src/components/FirstJob/recordBillTable.vue index 5b63b66..d36db6e 100644 --- a/src/components/FirstJob/recordBillTable.vue +++ b/src/components/FirstJob/recordBillTable.vue @@ -1,26 +1,21 @@ @@ -61,21 +56,21 @@ export default { dataIndex: "agencyName", key: "agencyName", ellipsis: true, - width:200, + width:140, }, { title: "服务费", dataIndex: "servetype", key: "servetype", ellipsis: true, - width:180, + width:100, }, { title: "员工薪资", dataIndex: "jobpricemonth", key: "jobpricemonth", ellipsis: true, - width:180, + width:100, customRender: (text, row, index) => { // console.log(row); // console.log(row.salaryClassify); @@ -146,14 +141,17 @@ export default { openModal() { this.isModalVisible = true; // 可在此处加载或更新表格数据 + // this.$emit('update:isModalVisible', true); }, confirmModal() { this.isModalVisible = false; // 处理确认逻辑,如保存更改等 + // this.$emit('update:isModalVisible', false); }, cancelModal() { this.isModalVisible = false; // 清理或重置状态 + this.$emit('update:isModalVisible', false); }, // 获取工作列表