|
@@ -101,6 +101,13 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="域名或IP地址:" prop="domain">
|
|
|
+ <el-input ref="domain" v-model="edit.temp.domain" placeholder="请联系技术人员索要牧场端域名或者服务器IP地址" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<div slot="footer" class="dialog-footer" style="right:30px;position:absolute;bottom: 40px;">
|
|
@@ -170,6 +177,11 @@ export default {
|
|
|
message: '必填',
|
|
|
trigger: 'blur'
|
|
|
}],
|
|
|
+ domain: [{
|
|
|
+ required: true,
|
|
|
+ message: '必填',
|
|
|
+ trigger: 'blur'
|
|
|
+ }],
|
|
|
},
|
|
|
create:{
|
|
|
dialogStatus:'',
|
|
@@ -277,7 +289,8 @@ export default {
|
|
|
username:'',
|
|
|
manager_user:'',
|
|
|
manager_phone:'',
|
|
|
- address:''
|
|
|
+ address:'',
|
|
|
+ domain:''
|
|
|
}
|
|
|
},
|
|
|
createData(){
|
|
@@ -295,6 +308,7 @@ export default {
|
|
|
"manager_phone": this.edit.temp.manager_phone,
|
|
|
"address": this.edit.temp.address,
|
|
|
"is_show": this.edit.temp.is_show,
|
|
|
+ "domain":this.edit.temp.domain,
|
|
|
// "create_user": Cookies.get('username')
|
|
|
}
|
|
|
console.log(data)
|
|
@@ -333,7 +347,8 @@ export default {
|
|
|
"manager_user": this.edit.temp.manager_user,
|
|
|
"address": this.edit.temp.address,
|
|
|
"manager_phone": this.edit.temp.manager_phone,
|
|
|
- "account": this.edit.temp.account
|
|
|
+ "account": this.edit.temp.account,
|
|
|
+ "domain":this.edit.temp.domain,
|
|
|
}
|
|
|
postJson(url, data).then(response => {
|
|
|
if (response.code == 200) {
|