From eda704f48beacb5c68372482f73b50af3c4623fb Mon Sep 17 00:00:00 2001 From: wuyouming666 <2265557248@qq.com> Date: 星期三, 26 六月 2024 14:23:50 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes --- UI-Project/src/views/User/permissions.vue | 121 ++++++++++++++-------------------------- 1 files changed, 43 insertions(+), 78 deletions(-) diff --git a/UI-Project/src/views/User/permissions.vue b/UI-Project/src/views/User/permissions.vue index 80cff3d..cdaab17 100644 --- a/UI-Project/src/views/User/permissions.vue +++ b/UI-Project/src/views/User/permissions.vue @@ -6,6 +6,9 @@ const add = ref(false) const adda = ref(false) +import { useI18n } from 'vue-i18n' + const { t } = useI18n() + let language = ref(localStorage.getItem('lang') || 'zh') const editingUser = ref({}); // 鐢ㄤ簬瀛樺偍褰撳墠缂栬緫鐨勭敤鎴锋暟鎹� import request from "@/utils/request" import { ref, onMounted } from "vue"; @@ -114,16 +117,16 @@ }; // 鍒犻櫎 const opena = async(row) => { - try { + try { const confirmResult = await ElMessageBox.confirm( - '鏄惁鍒犻櫎璇ヨ彍鍗�?', - '鎻愮ず', + t('customer.demenu'), + t('customer.prompt'), { - confirmButtonText: '鏄�', - cancelButtonText: '鍙栨秷', + confirmButtonText: t('customer.yes'), + cancelButtonText: t('customer.cancel'), type: 'warning', - } - ); + } + ); if (confirmResult === 'confirm') { // 鐢ㄦ埛鐐瑰嚮浜嗏�滄槸鈥濓紝鐜板湪璋冪敤鍒犻櫎鎺ュ彛 const response = await request.post("/loadGlass/sys/menu/deleteMenu", { @@ -143,54 +146,16 @@ } }; -// const gridOptions = reactive({ -// border: "full",//琛ㄦ牸鍔犺竟妗� -// keepSource: true,//淇濇寔婧愭暟鎹� -// align: 'center',//鏂囧瓧灞呬腑 -// stripe:true,//鏂戦┈绾� -// rowConfig: {isCurrent: true, isHover: true,height: 50},//榧犳爣绉诲姩鎴栭�夋嫨楂樹寒 -// id: 'OrderList', -// showFooter: true,//鏄剧ず鑴� -// printConfig: {}, -// importConfig: {}, -// exportConfig: {}, -// scrollY:{ enabled: true },//寮�鍚櫄鎷熸粴鍔� -// showOverflow:true, -// columnConfig: { -// resizable: true, -// useKey: true -// }, -// filterConfig: { //绛涢�夐厤缃」 -// remote: true -// }, -// customConfig: { -// storage: true -// }, -// editConfig: { -// trigger: 'click', -// mode: 'row', -// showStatus: true -// }, -// data: [ -// { -// 'id': '1', -// 'long': '5', -// 'wide': '1005', -// 'thick': '183.6', -// } -// ] - -// }) </script> <template> - <div style="height: 700px;"> - <el-button type="primary" style="margin-top: 10px;margin-left: 10px;" size="mini" id="searchButton" @click="add = true">娣诲姞鑿滃崟</el-button> + <div style="height: 600px;"> + <el-button type="primary" style="margin-top: 10px;margin-left: 10px;" size="mini" id="searchButton" @click="add = true">{{ $t('customer.addmenu') }}</el-button> <el-card style="flex: 1;margin-left: 10px;margin-top: 20px;" v-loading="loading"> <div style="width: 98%; height: calc(100% - 35px); overflow-y: auto;max-height: 650px;"> <el-table :data="tableData" - height="650" + height="550" @expand-change="handleExpandChange" row-key="id" :header-cell-style="{background:'#F2F3F5 ',color:'#1D2129'}" @@ -205,33 +170,33 @@ row-key="id" :header-cell-style="{background:'#F2F3F5 ',color:'#1D2129'}" > - <el-table-column prop="menuName" label="浜岀骇鑿滃崟鏍�" align="center" min-width="140" :header-cell-style="{background:'#F2F3F5 ',color:'#1D2129'}"/> - <el-table-column prop="url" label="閾炬帴" align="center" min-width="160"/> - <el-table-column prop="id" align="center" label="鎺掑簭" min-width="140"/> - <el-table-column fixed="right" label="鎿嶄綔" align="center"> + <el-table-column prop="menuName" :label="$t('customer.semenu')" align="center" min-width="140" :header-cell-style="{background:'#F2F3F5 ',color:'#1D2129'}"/> + <el-table-column prop="url" :label="$t('customer.link')" align="center" min-width="160"/> + <el-table-column prop="id" align="center" :label="$t('customer.sort')" min-width="140"/> + <el-table-column fixed="right" :label="$t('customer.operate')" align="center"> <template #default="scope"> - <el-button size="mini" type="text" plain @click="handleEdit(scope.row)">缂栬緫</el-button> - <el-button size="mini" type="text" plain @click="opena(scope.row)">鍒犻櫎</el-button> + <el-button size="mini" type="text" plain @click="handleEdit(scope.row)">{{ $t('customer.exit') }}</el-button> + <el-button size="mini" type="text" plain @click="opena(scope.row)">{{ $t('customer.delete') }}</el-button> </template> </el-table-column> </el-table> </div> </template> </el-table-column> - <el-table-column prop="menuName" label="涓�绾ц彍鍗曟爮" align="center" min-width="120" /> - <el-table-column prop="url" label="閾炬帴" align="center" min-width="200"/> - <el-table-column prop="id" align="center" label="鎺掑簭" min-width="180" /> - <el-table-column fixed="right" label="鎿嶄綔" align="center" width="200"> + <el-table-column prop="menuName" :label="$t('customer.firstmenu')" align="center" min-width="120" /> + <el-table-column prop="url" :label="$t('customer.link')" align="center" min-width="200"/> + <el-table-column prop="id" align="center" :label="$t('customer.sort')" min-width="180" /> + <el-table-column fixed="right" :label="$t('customer.operate')" align="center" width="200"> <template #default="scope"> - <el-button size="mini" type="text" plain @click="handleEdit(scope.row)">缂栬緫</el-button> - <el-button size="mini" type="text" plain @click="opena(scope.row)">鍒犻櫎</el-button> + <el-button size="mini" type="text" plain @click="handleEdit(scope.row)">{{ $t('customer.exit') }}</el-button> + <el-button size="mini" type="text" plain @click="opena(scope.row)">{{ $t('customer.delete') }}</el-button> </template> </el-table-column> </el-table> </div> </el-card> </div> - <el-dialog v-model="add" top="23vh" width="37%" title="娣诲姞鑿滃崟" > + <el-dialog v-model="add" top="23vh" width="37%" :title="$t('customer.addmenu')"> <div style="margin-left: -50px;margin-top: 10px;margin-bottom: 10px;"> <el-form size="mini" label-width="150px"> <el-form label-width="100px" label-position="right"> @@ -239,8 +204,8 @@ <el-col :span="6"> <div id="dt" style="font-size: 15px;"> <div> - <el-form-item label="鑿滃崟鏍忥細" :required="true" style="width: 25vw"> - <el-input v-model="menuName" autocomplete="off" /> + <el-form-item :label="$t('customer.menu')" :required="true" style="width: 25vw"> + <el-input v-model="menuName" autocomplete="off" :placeholder="$t('customer.inmenu')"/> </el-form-item></div></div> </el-col> </el-row> @@ -248,8 +213,8 @@ <el-col :span="6"> <div id="dt" style="font-size: 15px;"> <div> - <el-form-item label="閾炬帴锛�" :required="true" style="width: 25vw"> - <el-input v-model="url" autocomplete="off" /> + <el-form-item :label="$t('customer.linka')" :required="true" style="width: 25vw"> + <el-input v-model="url" autocomplete="off" :placeholder="$t('customer.inlink')"/> </el-form-item></div></div> </el-col> </el-row> @@ -257,8 +222,8 @@ <el-col :span="6"> <div id="dt" style="font-size: 15px;"> <div> - <el-form-item label="鎺掑簭锛�" :required="true" style="width: 25vw"> - <el-input v-model="parentId" autocomplete="off" /> + <el-form-item :label="$t('customer.sorta')" :required="true" style="width: 25vw"> + <el-input v-model="parentId" autocomplete="off" :placeholder="$t('customer.insort')"/> </el-form-item></div></div> </el-col> </el-row> @@ -268,13 +233,13 @@ <template #footer> <div id="dialog-footer"> <el-button type="primary" @click="getTableRow"> - 纭 + {{ $t('customer.sure') }} </el-button> - <el-button @click="add = false">鍙栨秷</el-button> + <el-button @click="add = false">{{ $t('customer.cancel') }}</el-button> </div> </template> </el-dialog> - <el-dialog v-model="adda" top="23vh" width="37%" title="淇敼鑿滃崟" > + <el-dialog v-model="adda" top="23vh" width="37%" :title="$t('customer.exmene')"> <div style="margin-left: -50px;margin-top: 10px;margin-bottom: 10px;"> <el-form :model="editingUser" ref="formRef" size="mini" label-width="150px"> <el-form label-width="100px" label-position="right"> @@ -282,8 +247,8 @@ <el-col :span="6"> <div id="dt" style="font-size: 15px;"> <div> - <el-form-item label="鑿滃崟鏍忥細" :required="true" style="width: 25vw"> - <el-input v-model="editingUser.menuName" autocomplete="off" /> + <el-form-item :label="$t('customer.menu')" :required="true" style="width: 25vw"> + <el-input v-model="editingUser.menuName" autocomplete="off" :placeholder="$t('customer.inmenu')"/> </el-form-item></div></div> </el-col> </el-row> @@ -291,8 +256,8 @@ <el-col :span="6"> <div id="dt" style="font-size: 15px;"> <div> - <el-form-item label="閾炬帴锛�" :required="true" style="width: 25vw"> - <el-input v-model="editingUser.url" autocomplete="off" /> + <el-form-item :label="$t('customer.linka')" :required="true" style="width: 25vw"> + <el-input v-model="editingUser.url" autocomplete="off" :placeholder="$t('customer.inlink')"/> </el-form-item></div></div> </el-col> </el-row> @@ -300,8 +265,8 @@ <el-col :span="6"> <div id="dt" style="font-size: 15px;"> <div> - <el-form-item label="鎺掑簭锛�" :required="true" style="width: 25vw"> - <el-input v-model="editingUser.parentId" autocomplete="off" /> + <el-form-item :label="$t('customer.sorta')" :required="true" style="width: 25vw"> + <el-input v-model="editingUser.parentId" autocomplete="off" :placeholder="$t('customer.insort')"/> </el-form-item></div></div> </el-col> </el-row> @@ -311,9 +276,9 @@ <template #footer> <div id="dialog-footer"> <el-button type="primary" @click="getTableRowa"> - 纭 + {{ $t('customer.sure') }} </el-button> - <el-button @click="adda = false">鍙栨秷</el-button> + <el-button @click="adda = false">{{ $t('customer.cancel') }}</el-button> </div> </template> </el-dialog> -- Gitblit v1.8.0