update i18n
This commit is contained in:
@ -60,7 +60,7 @@
|
||||
<!-- province--city--district -->
|
||||
<el-table-column label="所属领域" prop="territoryStr" />
|
||||
<el-table-column :label="t('admin.form.contact')" prop="contactUser" />
|
||||
<el-table-column label="联系电话" prop="contactPhone" />
|
||||
<el-table-column :label="t('webContact.phone')" prop="contactPhone" />
|
||||
<!-- <el-zh-column label="创建日期" align="center" prop="created_at">
|
||||
<template #default="{ row }">
|
||||
<span>{{ dayjs(row.created_at).format("YYYY-MM-DD HH:mm:ss") }}</span>
|
||||
@ -143,7 +143,9 @@
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button type="primary" @click="submitForm">{{
|
||||
t("admin.common.confirm")
|
||||
}}</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
@ -166,6 +168,7 @@ import {
|
||||
// import dayjs from "dayjs";
|
||||
import { useRouter } from "vue-router";
|
||||
import { ElMessage, ElMessageBox } from "element-plus";
|
||||
import modal from "@/plugins/modal";
|
||||
import { cloneDeep } from "lodash-unified";
|
||||
|
||||
const dataList = ref([]);
|
||||
@ -219,7 +222,7 @@ function handleQuery() {
|
||||
// }
|
||||
/** 删除按钮操作 */
|
||||
function handleDelete(id) {
|
||||
ElMessageBox.confirm(`是否确认删除数据编号为"${id}"的数据项?`).then(
|
||||
modal.confirm(`是否确认删除数据编号为"${id}"的数据项?`).then(
|
||||
async () => {
|
||||
await deleteExpertWantEnterpriseByIds({ ids: [id] });
|
||||
getList();
|
||||
|
Reference in New Issue
Block a user