first commit

This commit is contained in:
2026-09-09 09:14:28 +08:00
commit 5343198112
5199 changed files with 1052895 additions and 0 deletions
@@ -0,0 +1,13 @@
const mCondolence = {
typeList: [],
async getType() {
const {data} = await $.get("/platform/condolence/type/getAll")
data.forEach(v => {
v.text = v.name + '(' + v.code + ')'
v.value = v.id
})
data.unshift({text: "全部类型", value: null})
this.typeList = data
}
}