You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
557 B
42 lines
557 B
<template>
|
|
<view class="" style="background-color: #fff; height: 100%;">
|
|
<view class="" style="font-size: 35rpx;padding: 15rpx;">
|
|
请求地址
|
|
</view>
|
|
<uni-combox :candidates="candidates" placeholder="请选择请求地址" v-model="city"></uni-combox>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
candidates:["http://192.168.0.178:12080/admin-api(陈放)",
|
|
"http://192.168.0.178:12080/admin-api"
|
|
],
|
|
city:""
|
|
|
|
};
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|