Procházet zdrojové kódy

Merge remote-tracking branch 'origin/gzb' into wzl

gzb
wangzhonglu před 1 rokem
rodič
revize
db2cea5ac1
2 změnil soubory, kde provedl 31 přidání a 3 odebrání
  1. 15
    1
      src/views/school/index.vue
  2. 16
    2
      src/views/service/index.vue

+ 15
- 1
src/views/school/index.vue Zobrazit soubor

@@ -208,7 +208,15 @@ export default {
208 208
           title: "序号",
209 209
           align: "center",
210 210
           key: "slorder",
211
-          width: 70
211
+          width: 70,
212
+          render: (h, params) => {
213
+            return h(
214
+                "span",
215
+                params.index +
216
+                (this.form_search.page - 1) * this.form_search.size +
217
+                1
218
+            );
219
+          }
212 220
         },
213 221
         {
214 222
           title: "学校名称",
@@ -221,6 +229,12 @@ export default {
221 229
           align: "center",
222 230
           width: 180
223 231
         },
232
+        {
233
+          title: "排序",
234
+          align: "center",
235
+          key: "slorder",
236
+          width: 70
237
+        },
224 238
         {
225 239
           title: "创建人",
226 240
           key: "createname",

+ 16
- 2
src/views/service/index.vue Zobrazit soubor

@@ -202,8 +202,16 @@ export default {
202 202
         {
203 203
           title: "序号",
204 204
           align: "center",
205
-          key: "scorder",
206
-          width: 70
205
+          key: "slorder",
206
+          width: 70,
207
+          render: (h, params) => {
208
+            return h(
209
+                "span",
210
+                params.index +
211
+                (this.form_search.page - 1) * this.form_search.size +
212
+                1
213
+            );
214
+          }
207 215
         },
208 216
         {
209 217
           title: "服务名称",
@@ -216,6 +224,12 @@ export default {
216 224
           align: "center",
217 225
           width: 180
218 226
         },
227
+        {
228
+          title: "排序",
229
+          align: "center",
230
+          key: "scorder",
231
+          width: 70
232
+        },
219 233
         {
220 234
           title: "创建人",
221 235
           key: "createname",

Načítá se…
Zrušit
Uložit