riku
2025-11-27 63d9a9c62fd34f4b48a157e0bc57dd82ee09a197
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<template>
  <BaseContentLayout>
    <template #header> </template>
    <template #aside>
      <SideList
        :items="domainCatalog"
        :loading="sideLoading"
        @item-click="chooseCatalog"
      >
        <template #header>
          <el-row justify="end">
            <el-button
              type="primary"
              icon="CirclePlusFilled"
              size="small"
              @click="handelDownload"
            >
            </el-button>
          </el-row>
        </template>
      </SideList>
    </template>
    <template #main>
      <ToolBar
        class="toolbar-sticky"
        :title="selectedCatalog?.name"
        :loading="loading"
      ></ToolBar>
      <!-- <FormCol> -->
      <el-table
        :data="domainItems"
        v-loading="loading"
        :height="contentHeight + 'px'"
        table-layout="fixed"
        :show-overflow-tooltip="true"
        size="small"
        style="z-index: 20"
        border
      >
        <el-table-column fixed="left" prop="index" label="编号" width="50">
          <template #default="{ row }">
            <el-input
              v-if="row._isAdd || row._isEdit"
              size="small"
              v-model="row.index"
            />
            <span v-else>{{ row.index }}</span>
          </template>
        </el-table-column>
        <el-table-column
          prop="catelogname"
          label="类别"
          :show-overflow-tooltip="true"
          width="180"
        >
        </el-table-column>
        <el-table-column
          prop="text"
          label="值域项"
          :show-overflow-tooltip="true"
          min-width="200"
        >
          <template #default="{ row }">
            <el-input
              v-if="row._isAdd || row._isEdit"
              size="small"
              v-model="row.text"
            />
            <span v-else>{{ row.text }}</span>
          </template>
        </el-table-column>
        <el-table-column
          prop="value"
          label="值域值"
          :formatter="timeFormat"
          width="90"
        >
          <template #default="{ row }">
            <el-input
              v-if="row._isAdd || row._isEdit"
              size="small"
              v-model="row.value"
            />
            <span v-else>{{ row.value }}</span>
          </template>
        </el-table-column>
        <el-table-column prop="remark" label="版本" width="80" />
        <el-table-column
          prop="guid"
          label="ID"
          :show-overflow-tooltip="true"
          width="150"
        >
        </el-table-column>
        <el-table-column fixed="right" label="操作" width="160">
          <template #default="scope">
            <el-button
              v-if="scope.row._isAdd"
              type="primary"
              size="small"
              icon="Select"
              @click="savePut(scope)"
              >新增</el-button
            >
            <el-button
              v-else-if="scope.row._isEdit"
              type="success"
              size="small"
              icon="Select"
              @click="saveUpdate(scope)"
              >修改</el-button
            >
            <el-button-group v-else>
              <el-button
                type="default"
                size="small"
                icon="Edit"
                @click="itemEdit(scope)"
              ></el-button>
              <el-button
                :loading="scope.row.loadingDelete"
                type="danger"
                size="small"
                icon="Delete"
                @click="itemDelete(scope)"
              ></el-button>
            </el-button-group>
            <el-button
              v-if="scope.row._isEdit || scope.row._isAdd"
              type="default"
              size="small"
              icon="CloseBold"
              @click="cancelEdit(scope)"
              >取消</el-button
            >
          </template>
        </el-table-column>
      </el-table>
      <el-row justify="center" style="margin-top: -2px">
        <el-button type="default" icon="Plus" @click="itemAdd"
          >新增值域项</el-button
        >
      </el-row>
      <!-- </FormCol> -->
    </template>
  </BaseContentLayout>
</template>
<script setup>
import { onMounted, ref } from 'vue';
import domainApi from '@/api/fysp/domainApi';
import { ElMessage } from 'element-plus';
 
const loading = ref(false);
const domainCatalog = ref([]);
const selectedCatalog = ref(null);
const domainItems = ref([]);
 
// 选择值域目录
const chooseCatalog = (catalog) => {
  selectedCatalog.value = catalog.data;
  loading.value = true;
  domainApi
    .fetchItemByCatalogId(catalog.data.guid)
    .then((res) => {
      domainItems.value = res.data;
    })
    .finally(() => {
      loading.value = false;
    });
};
 
// 添加值域项
const itemAdd = () => {
  const lastOne = domainItems.value[domainItems.value.length - 1];
  domainItems.value.push({
    index: lastOne ? lastOne.index + 1 : 0,
    catelogname: selectedCatalog.value.name,
    dcguid: selectedCatalog.value.guid,
    text: '',
    value: '',
    remark: '0',
    _isAdd: true
  });
};
 
function itemEdit(scope) {
  scope.row._isEdit = true;
  console.log(scope);
}
 
function itemDelete(scope) {
  scope.row.loadingDelete = true;
  setTimeout(() => {
    domainItems.value.splice(scope.$index, 1);
    scope.row.loadingDelete = false;
  }, 1000);
}
 
function savePut(scope) {
  if (_validate(scope.row)) {
    scope.row._isAdd = false;
    domainApi.putDomainItem(scope.row).then((res) => {
      scope.row.guid = res.guid;
      ElMessage.success('新增成功');
    });
  } else {
    ElMessage.error('请填写完整信息');
  }
}
 
function saveUpdate(scope) {
  if (_validate(scope.row)) {
    scope.row._isEdit = false;
    domainApi.updateDomainItem(scope.row).then((res) => {
      ElMessage.success('修改成功');
    });
  } else {
    ElMessage.error('请填写完整信息');
  }
}
 
// 取消编辑
function cancelEdit(scope) {
  if (scope.row._isAdd) {
    domainItems.value.splice(scope.$index, 1);
  }
  scope.row._isAdd = false;
  scope.row._isEdit = false;
}
 
function _validate(row) {
  return (
    row.index !== undefined &&
    row.index !== '' &&
    row.text !== undefined &&
    row.text !== '' &&
    row.value !== undefined &&
    row.value !== ''
  );
}
 
onMounted(() => {
  domainApi.fetchDomainCatalog().then((res) => {
    domainCatalog.value = res.map((item) => ({
      title: item.name,
      categoly: '系统配置项',
      data: item
    }));
    chooseCatalog(domainCatalog.value[0]);
  });
});
</script>