da0e5ab8 by chentao

no message

1 parent 4434aee0
......@@ -8,7 +8,7 @@
<el-form-item label="" prop="configName">
<el-select
v-model="queryParams.status"
placeholder="Select"
placeholder="发布状态"
clearable
style="width: 240px;margin-left: 16px;"
>
......@@ -26,7 +26,7 @@
</el-form>
<!-- 列表操作 -->
<el-col :span="1.5">
<el-button
<el-button
type="primary"
plain
icon="Plus"
......@@ -37,7 +37,7 @@
</el-header>
<el-main id="max-height">
<!-- 列表内容 -->
<el-table
<el-table
v-loading="status.loading"
:data="list"
:max-height="windowSize.height - 70"
......@@ -58,7 +58,7 @@
</el-table-column>
<el-table-column :label="$t('problem.tableControlsName')" class-name="small-padding fixed-width">
<template #default="{ row }">
<el-button
<el-button
link
type="info"
@click="handleEdit(row)"
......@@ -75,7 +75,7 @@
type="info"
@click="handleChangeStatus(row, 1)"
>{{ $t('problem.controlsReleaseName') }}</el-button>
<el-button
<el-button
link
type="info"
@click="handleDel(row)"
......@@ -218,7 +218,7 @@ function handleDel(row) {
getList();
proxy.$modal.msgSuccess(res.msg);
}).finally(() => {
});
}
......@@ -253,4 +253,4 @@ function closeDialog() {
form: {}
}
}
</script>
\ No newline at end of file
</script>
......
......@@ -8,7 +8,7 @@
<el-form-item :label="$t('upgradation.cateName')" prop="fileType">
<el-select
v-model="queryParams.fileType"
placeholder="Select"
placeholder="请选择"
clearable
style="width: 240px;margin-left: 16px;"
>
......@@ -23,7 +23,7 @@
<el-form-item :label="$t('upgradation.procedureName')" prop="platformType">
<el-select
v-model="queryParams.platformType"
placeholder="Select"
placeholder="请选择"
clearable
style="width: 240px;margin-left: 16px;"
>
......@@ -41,7 +41,7 @@
</el-form>
<!-- 列表操作 -->
<el-col :span="1.5">
<el-button
<el-button
type="primary"
plain
icon="Plus"
......@@ -52,7 +52,7 @@
</el-header>
<el-main id="max-height">
<!-- 列表内容 -->
<el-table
<el-table
v-loading="status.loading"
:data="list"
:max-height="windowSize.height - 70"
......@@ -91,18 +91,18 @@
<el-table-column :label="$t('upgradation.tableControlsName')" class-name="small-padding fixed-width">
<template #default="{ row }">
<el-button
<el-button
v-if="row.status != 1"
link
type="text"
@click="handleEdit(row)"
>{{ $t('upgradation.controlsEditName') }}</el-button>
<el-button
<el-button
link
type="text"
@click="handleDel(row)"
>{{ $t('upgradation.controlsDelName') }}</el-button>
<el-button
<el-button
v-if="row.status != 1"
link
type="text"
......@@ -262,7 +262,7 @@ function handleDel(row) {
getList();
proxy.$modal.msgSuccess(res.msg);
}).finally(() => {
});
}
......@@ -292,4 +292,4 @@ function closeDialog() {
form: {}
}
}
</script>
\ No newline at end of file
</script>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!