Skip to content

Commit 166f254

Browse files
committed
#fixed 验收反馈1.2
1 parent df2de98 commit 166f254

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

config/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = {
3535
filter: function (pathname, req) {
3636
return pathname.match('^/(ui|mi|shop|open)/');
3737
},
38-
target: 'http://djq.51zxiu.cn',
38+
target: 'http://localhost:8080',
3939
changeOrigin: true
4040
}
4141
},

src/views/shop/detail.vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@
66
<el-form-item label="商户名称" prop="name">
77
<el-input v-model="detail.name"></el-input>
88
</el-form-item>
9+
<el-form-item label="商户标题1">
10+
<el-input v-model="detail.titleFirst"></el-input>
11+
</el-form-item>
12+
<el-form-item label="商户标题2">
13+
<el-input v-model="detail.titleSecond"></el-input>
14+
</el-form-item>
15+
<el-form-item label="电话">
16+
<el-input v-model="detail.phoneNumber"></el-input>
17+
</el-form-item>
918
<el-form-item label="商标">
1019
<template v-if="dialogStatus=='create' || checkPermission(permissionConstant.shop_u) && dialogStatus === 'update'">
1120
<upload
@@ -135,6 +144,9 @@
135144
type: Object,
136145
default () {
137146
return {
147+
phoneNumber: '',
148+
titleFirst: '',
149+
titleSecond: '',
138150
address: '',
139151
hide: 'true',
140152
id: '',

src/views/shop/records.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@
8888
import { mapGetters } from 'vuex'
8989
import ShopDetail from './detail.vue'
9090
const temp = {
91+
phoneNumber: '',
92+
titleFirst: '',
93+
titleSecond: '',
9194
address: '',
9295
hide: 'false',
9396
id: '',

0 commit comments

Comments
 (0)