店铺编辑增加显示数字编号
This commit is contained in:
parent
9ff61ef0d6
commit
cac377365c
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Vue Typescript Admin",
|
"name": "Game Admin",
|
||||||
"short_name": "Vue Ts Admin",
|
"short_name": "Game Admin",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "./img/icons/android-chrome-192x192.png",
|
"src": "./img/icons/android-chrome-192x192.png",
|
||||||
|
1
src/api/types.d.ts
vendored
1
src/api/types.d.ts
vendored
@ -30,4 +30,5 @@ export interface IShopData {
|
|||||||
category?: string
|
category?: string
|
||||||
qtypes: string[]
|
qtypes: string[]
|
||||||
location?: number[]
|
location?: number[]
|
||||||
|
numid?: number
|
||||||
}
|
}
|
||||||
|
@ -36,6 +36,13 @@
|
|||||||
>
|
>
|
||||||
{{postForm.sid}}
|
{{postForm.sid}}
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
label="编号"
|
||||||
|
prop="numid"
|
||||||
|
v-if="postForm.numid"
|
||||||
|
>
|
||||||
|
{{postForm.numid}}
|
||||||
|
</el-form-item>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="显示名"
|
label="显示名"
|
||||||
prop="showName"
|
prop="showName"
|
||||||
|
@ -62,6 +62,13 @@
|
|||||||
</router-link>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="编号"
|
||||||
|
>
|
||||||
|
<template slot-scope="{row}">
|
||||||
|
<span>{{ row.numid }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="ID"
|
label="ID"
|
||||||
>
|
>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
const path = require('path')
|
const path = require('path')
|
||||||
const name = 'Vue Typescript Admin'
|
const name = 'Game Admin'
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// TODO: Remember to change publicPath to fit your need
|
// TODO: Remember to change publicPath to fit your need
|
||||||
|
Loading…
x
Reference in New Issue
Block a user