创建项目的项目设置bug

This commit is contained in:
X1627315083
2025-11-04 10:44:11 +08:00
parent 2f5c6346f0
commit e9461dce56
7 changed files with 213 additions and 5 deletions

View File

@@ -97,7 +97,7 @@
></a-select>
</div>
<div class="admin_state_item">
<span>Total Amount:</span>
<span>Total Amount: {{ totalPayer }}</span>
</div>
</div>
<div class="admin_search">
@@ -210,6 +210,8 @@ export default defineComponent({
orderBy:'',
status: "",
type: "",
totalPayer:0,
});
let selectList=reactive({
platformList:[
@@ -469,6 +471,9 @@ export default defineComponent({
filter.dataList = rv.content;
filterData.total = rv.total;
filter.tableLoading = false;
rv.content.forEach((item: any) => {
filterData.totalPayer += Number(item.payerTotal)
})
// this.workspaceItem.position = this.singleTypeList[0].label
}