diff --git a/src/layouts/BasicLayout.vue b/src/layouts/BasicLayout.vue index b50e90d..b4505e8 100644 --- a/src/layouts/BasicLayout.vue +++ b/src/layouts/BasicLayout.vue @@ -62,8 +62,8 @@ @@ -103,6 +103,10 @@ + + + + @@ -110,17 +114,17 @@ - - - + @@ -129,6 +133,21 @@ + + + + + + + + + + + + + + + @@ -235,7 +254,34 @@ export default { flag.value = !flag.value } + const model = ref({ + old_password: '', + new_password: '', + confirm_password: '' + }) + const showPassword = ref(false) + function changePassword() { + showPassword.value = true; + } + const addButton = ref([ + { + text: "确认", + callback: async () => { + console.log(123) + } + }, + { + text: "取消", + callback: () => { + showPassword.value = false; + } + } + ]) return { + model, + addButton, + showPassword, + changePassword, sideWidth, mainSelectedKey, fullscreenRef, diff --git a/src/views/complaint/index.vue b/src/views/complaint/index.vue index aa4a5f9..fb2696d 100644 --- a/src/views/complaint/index.vue +++ b/src/views/complaint/index.vue @@ -150,9 +150,9 @@ const addData = reactive({ id: 0, politics_images: '', }) +// 回访表导出 const upPdf = (row: any) => { - console.log(row) - + window.open(baseURL + '/api/backend/pdf/exportPdf?id=' + row.id, '_blank') } // 添加详情弹窗相关变量和方法 const detailShow = ref(false) diff --git a/src/views/configuration/foundation.vue b/src/views/configuration/foundation.vue index 8e72ed2..d1d5be0 100644 --- a/src/views/configuration/foundation.vue +++ b/src/views/configuration/foundation.vue @@ -114,13 +114,14 @@ const delShowMsd = async (data) => { const columns6 = [ { title: "项目名称", - width: "100px", + width: "200px", key: "project_name" }, { title: "基础分值", - width: "200px", - key: "base_score" + width: "50px", + key: "base_score", + align: 'center' }, // { // title: "项目代码", @@ -135,7 +136,7 @@ const columns6 = [ // }, { title: '操作', - width: '180px', + width: '100px', customSlot: 'operator', key: 'operator', align: 'center', diff --git a/src/views/login/index.vue b/src/views/login/index.vue index c7529b3..f95142e 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -9,7 +9,7 @@