File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ module.exports = {
35
35
filter : function ( pathname , req ) {
36
36
return pathname . match ( '^/(ui|mi|shop|open)/' ) ;
37
37
} ,
38
- target : 'http://djq.51zxiu.cn ' ,
38
+ target : 'http://localhost:8080 ' ,
39
39
changeOrigin : true
40
40
}
41
41
} ,
Original file line number Diff line number Diff line change 6
6
<el-form-item label =" 商户名称" prop =" name" >
7
7
<el-input v-model =" detail.name" ></el-input >
8
8
</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 >
9
18
<el-form-item label =" 商标" >
10
19
<template v-if =" dialogStatus == ' create' || checkPermission (permissionConstant .shop_u ) && dialogStatus === ' update' " >
11
20
<upload
135
144
type: Object ,
136
145
default () {
137
146
return {
147
+ phoneNumber: ' ' ,
148
+ titleFirst: ' ' ,
149
+ titleSecond: ' ' ,
138
150
address: ' ' ,
139
151
hide: ' true' ,
140
152
id: ' ' ,
Original file line number Diff line number Diff line change 88
88
import { mapGetters } from ' vuex'
89
89
import ShopDetail from ' ./detail.vue'
90
90
const temp = {
91
+ phoneNumber: ' ' ,
92
+ titleFirst: ' ' ,
93
+ titleSecond: ' ' ,
91
94
address: ' ' ,
92
95
hide: ' false' ,
93
96
id: ' ' ,
You can’t perform that action at this time.
0 commit comments