<script setup>
|
import {Search} from "@element-plus/icons-vue";
|
import {reactive} from "vue";
|
import {useRouter} from "vue-router"
|
const router = useRouter()
|
const adda = ref(false)
|
import request from "@/utils/request"
|
import { ref, onMounted } from "vue";
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
import { useI18n } from 'vue-i18n'
|
const { t } = useI18n()
|
let language = ref(localStorage.getItem('lang') || 'zh')
|
const selectedProjectNoa = ref(null);
|
const configName = ref('');
|
const configCode = ref('');
|
const tableData = ref([])
|
const currentPage2 = ref(1)
|
const totalRecords = ref(0)
|
const configValue = ref('')
|
const isEnable = ref('')
|
const listByUserName = async () => {
|
try {
|
const response = await request.post('/loadGlass/sys/sysConfig/queryConfigPage',{
|
pageNo: 1,
|
pageSize: 10,
|
configName: "",
|
configCode: "",
|
configValue: "",
|
isEnable: -1
|
});
|
if (response.code === 200) {
|
const formattedData = response.data.records.map(record => ({
|
...record,
|
formattedCreateTime: formatTimestamp(record.createTime),
|
formattedUpdateTime: formatTimestamp(record.updateTime),
|
}));
|
tableData.value = formattedData;
|
totalRecords.value = response.data.total/2 || 0
|
} else {
|
ElMessage.warning(response.data);
|
}
|
} catch (error) {
|
}
|
};
|
onMounted(() => {
|
listByUserName('');
|
});
|
const handleClick = async () => {
|
try {
|
const response = await request.post('/loadGlass/sys/sysConfig/queryConfigPage',{
|
pageNo: 1,
|
pageSize: 10,
|
configName: configName.value,
|
configCode: configCode.value,
|
configValue: configValue.value,
|
// isEnable: isEnable.value
|
isEnable: isEnable.value !== '' ? isEnable.value : -1,
|
|
});
|
if (response.code === 200) {
|
const formattedData = response.data.records.map(record => ({
|
...record,
|
formattedCreateTime: formatTimestamp(record.createTime),
|
formattedUpdateTime: formatTimestamp(record.updateTime),
|
}));
|
tableData.value = formattedData;
|
totalRecords.value = response.data.total/2 || 0
|
} else {
|
ElMessage.warning(response.data);
|
}
|
} catch (error) {
|
}
|
};
|
const handlePageChange2 = (newPage) => {
|
currentPage2.value = newPage;
|
window.localStorage.setItem('pagenumber', currentPage2.value)
|
historicala(currentPage2.value);
|
};
|
const historicala = async (page) => {
|
try {
|
let page = window.localStorage.getItem('pagenumber')
|
const response = await request.post('/loadGlass/sys/sysConfig/queryConfigPage',{
|
pageNo: page,
|
pageSize: 10,
|
configName: "",
|
configCode: "",
|
configValue: "",
|
isEnable: -1
|
});
|
if (response.code === 200) {
|
const formattedData = response.data.records.map(record => ({
|
...record,
|
formattedCreateTime: formatTimestamp(record.createTime),
|
formattedUpdateTime: formatTimestamp(record.updateTime),
|
}));
|
tableData.value = formattedData;
|
totalRecords.value = response.data.total/2 || 0
|
} else {
|
ElMessage.warning(response.data);
|
}
|
} catch (error) {
|
}
|
};
|
// 处理编辑按钮点击
|
function handleEdit(row) {
|
adda.value = true;
|
configValue.value = row.configValue
|
isEnable.value = row.isEnable
|
window.localStorage.setItem('id', row.id)
|
window.localStorage.setItem('configName', row.configName)
|
window.localStorage.setItem('configCode', row.configCode)
|
}
|
const optionsa = [
|
{
|
value: 0,
|
label: t('sorter.disable'),
|
},
|
{
|
value: 1,
|
label: t('sorter.start'),
|
}
|
]
|
// 编辑
|
const getTableRowa = async () => {
|
let configName = window.localStorage.getItem('configName')
|
let configCode = window.localStorage.getItem('configCode')
|
let id = window.localStorage.getItem('id')
|
let page = window.localStorage.getItem('pagenumber')
|
try {
|
const response = await request.post('/loadGlass/sys/sysConfig/updateConfig',{
|
id: id,
|
configName: configName,
|
configCode: configCode,
|
configValue: configValue.value,
|
isEnable: isEnable.value
|
}
|
);
|
if (response.code === 200) {
|
ElMessage.success(response.message);
|
adda.value = false;
|
historicala(page)
|
} else {
|
ElMessage.error(response.message);
|
}
|
} catch (error) {
|
}
|
};
|
// 格式化时间戳为年月日时间字符串的函数
|
function formatTimestamp(timestamp) {
|
const date = new Date(timestamp);
|
const year = date.getFullYear();
|
const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,需要加1,并补零
|
const day = String(date.getDate()).padStart(2, '0'); // 补零
|
const hours = String(date.getHours()).padStart(2, '0'); // 补零(如果需要显示时间)
|
const minutes = String(date.getMinutes()).padStart(2, '0'); // 补零(如果需要显示时间)
|
const seconds = String(date.getSeconds()).padStart(2, '0'); // 补零(如果需要显示时间)
|
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
|
}
|
</script>
|
<template>
|
<div>
|
<el-card style="flex: 1;margin-left: 10px;margin-top: 20px;" >
|
<div style="display: flex;width: 1770px;">
|
<el-input v-model="configName" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" :placeholder="$t('productStock.configName')" />
|
<el-input v-model="configCode" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" @input="handleInputa" :placeholder="$t('productStock.configCode')" />
|
<el-input v-model="configValue" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" @input="handleInputb" :placeholder="$t('productStock.configValue')" />
|
<el-select v-model="isEnable" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" :placeholder="$t('sorter.startstatus')">
|
<el-option :label="$t('sorter.start')" value="1"></el-option>
|
<el-option :label="$t('sorter.disable')" value="0"></el-option>
|
</el-select>
|
<el-button type="primary" style="margin-left: 10px;margin-bottom: 10px;" @click="handleClick()">{{$t('reportmanage.inquire')}}</el-button>
|
</div>
|
<div style="width: 98%; height: calc(100% - 35px); overflow-y: auto;">
|
<el-table height="700" ref="table" :header-cell-style="{ background: '#F2F3F5 ', color: '#1D2129' }"
|
:data="tableData">
|
<el-table-column prop="configName" align="center" :label="$t('productStock.configName')"/>
|
<el-table-column prop="configCode" align="center" :label="$t('productStock.configCode')"/>
|
<el-table-column prop="configValue" align="center" :label="$t('productStock.configValue')"/>
|
<el-table-column
|
align="center"
|
:label="$t('sorter.startstatus')"
|
prop="isEnable"
|
>
|
<template #default="scope">
|
<el-tag
|
:type="scope.row.isEnable === 1 ? 'success' : 'warning'"
|
>
|
{{ scope.row.isEnable === 1 ? $t('sorter.start') : $t('sorter.disable') }}
|
</el-tag>
|
</template>
|
</el-table-column>
|
<el-table-column prop="formattedCreateTime" align="center" :label="$t('film.createtime')"/>
|
<el-table-column prop="formattedUpdateTime" align="center" :label="$t('sorter.updateTime')" />
|
<el-table-column fixed="right" :label="$t('productStock.operate')" align="center" width="270">
|
<template #default="scope">
|
<el-button type="text" plain @click="handleEdit(scope.row)">{{ $t('productStock.exit') }}</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
</div>
|
<div style="margin-top: 20px;margin-left: 40%;">
|
<el-pagination
|
v-model:current-page="currentPage2"
|
:page-size="pageSize"
|
:size="large"
|
:disabled="disabled"
|
layout="prev, pager, next, jumper"
|
:total="totalRecords"
|
@current-change="handlePageChange2"
|
style="margin-top: 10px;"
|
/>
|
</div>
|
</el-card>
|
</div>
|
<el-dialog v-model="adda" top="23vh" width="37%" :title="$t('productStock.reusername')" >
|
<div style="margin-left: -50px;margin-top: 10px;margin-bottom: 10px;">
|
<el-form ref="formRef" label-width="150px">
|
<el-form label-width="120px" label-position="right">
|
<el-row style="margin-top: -15px;margin-bottom: -2px;">
|
<el-col :span="6">
|
<div id="dt" style="font-size: 15px;">
|
<div>
|
<el-form-item :label="$t('productStock.configValuea')" :required="true" style="width: 25vw">
|
<el-input :placeholder="$t('productStock.configValue')" v-model="configValue" autocomplete="off" style="width: 350px;"/>
|
</el-form-item></div></div>
|
</el-col>
|
</el-row>
|
<el-row style="margin-top: 10px;">
|
<el-col :span="6">
|
<div id="dt" style="font-size: 15px;">
|
<div>
|
<el-form-item :label="$t('searchOrder.startstatusa')" :required="true" style="width: 25vw;">
|
<el-select
|
:placeholder="$t('searchOrder.startstatus')"
|
clearable
|
style="width: 350px;"
|
v-model="isEnable">
|
<el-option
|
v-for="item in optionsa"
|
:key="item.value"
|
:label="item.label"
|
:value="item.value"
|
/>
|
</el-select>
|
</el-form-item></div></div>
|
</el-col>
|
</el-row>
|
</el-form>
|
</el-form>
|
</div>
|
<template #footer>
|
<div id="dialog-footer">
|
<el-button type="primary" @click="getTableRowa">
|
{{ $t('productStock.sure') }}
|
</el-button>
|
<el-button @click="adda = false">{{ $t('productStock.cancel') }}</el-button>
|
</div>
|
</template>
|
</el-dialog>
|
</template>
|
<style scoped>
|
#dt { display:block; float:left;line-height: 20px;margin-left: 150px;}
|
#dta { display:block; float:left;line-height: 20px;margin-left: 80%;}
|
#dialog-footer{
|
text-align: center;
|
margin-top: -15px;
|
}
|
#message{
|
text-align: center;
|
align-items: center;
|
color: black;
|
width: 200px;
|
height: 100px;
|
background-color: #337ecc;
|
margin-left: 28%;
|
}
|
#awatch{
|
height: 460px;
|
/* margin-top: -60px; */
|
}
|
</style>
|