123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- <template>
- <view class="appWrapper">
-
- <!-- 站点新增start -->
- <form action="" @submit="formSubmit" v-if="!id">
- <view class="form-item margin-top">
- <view class="title">
- <text class="necessary">*</text>
- 站点名称:
- </view>
- <input name="userName" v-model="formMess.siteName"></input>
- </view>
- <view class="form-item">
- <view class="title"><text class="necessary">*</text>地址:</view>
- <input name="input" v-model="formMess.address"></input>
- </view>
- <view class="form-item">
- <view class="title"><text class="necessary">*</text>经度:</view>
- <input name="input" v-model="formMess.longitude"></input>
- </view>
- <view class="form-item">
- <view class="title"><text class="necessary">*</text>维度:</view>
- <input name="input" v-model="formMess.latitude"></input>
- </view>
- <view class="form-item">
- <view class="title"><text class="necessary">*</text>联系人:</view>
- <input name="input" v-model="formMess.userName"></input>
- </view>
- <view class="form-item">
- <view class="title"><text class="necessary">*</text>手机号码:</view>
- <input name="input" v-model="formMess.phone"></input>
- </view>
- <view class="btn-area submitBottomBtn padding-lr-sm">
- <button class="bg-blue round margin-top" @click="addSubmit">提 交 </button>
- </view>
- </form>
- <!-- 站点新增end -->
-
- <!-- 站点修改start -->
- <form action="" @submit="formSubmit" v-else>
- <view class="form-item margin-top">
- <view class="title">
- <text class="necessary">*</text>
- 站点名称:
- </view>
- <input name="userName" v-model="siteMessage.siteName"></input>
- </view>
- <view class="form-item">
- <view class="title">地址:</view>
- <input name="input" v-model="siteMessage.address"></input>
- </view>
- <view class="form-item">
- <view class="title">经度:</view>
- <input name="input" v-model="siteMessage.longitude"></input>
- </view>
- <view class="form-item">
- <view class="title">维度:</view>
- <input name="input" v-model="siteMessage.latitude"></input>
- </view>
- <view class="form-item">
- <view class="title">联系人:</view>
- <input name="input" v-model="siteMessage.userName"></input>
- </view>
- <view class="form-item">
- <view class="title">手机号码:</view>
- <input name="input" v-model="siteMessage.phone"></input>
- </view>
-
-
- <view class="btn-area submitBottomBtn padding-lr-sm">
- <button class="bg-blue round margin-top" @click="editSubmit">提 交 </button>
- </view>
- </form>
- <!-- 站点修改end -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- id: 0,
- formMess: {
- "siteName": "",
- "userName": "",
- "phone": "",
- "address": "",
- "longitude": "",
- "latitude": "",
- },
- siteMessage:{}
- }
- },
-
- onLoad: function(option) {
- this.id=option.id
- if (option.id) {
- uni.setNavigationBarTitle({
- title: '站点修改'
- });
- this.getSiteList({"id":option.id})
- } else {
- uni.setNavigationBarTitle({
- title: '站点新增'
- });
- }
- // this.getLocation()
- },
- methods: {
-
- getLocation(){
- alert(1)
- uni.getLocation({
-
- type: 'wgs84',
- success: function (res) {
- alert(2)
- console.log('当前位置的经度:' + res.longitude);
- console.log('当前位置的纬度:' + res.latitude);
- }
- });
- },
- //新增验证并提交
- addSubmit() {
- if (!this.formMess.siteName) {
- uni.showToast({
- title: "请输入站点名称...",
- icon: "none"
- });
- return
- }
- if (!this.formMess.address) {
- uni.showToast({
- title: "请输入地址...",
- icon: "none"
- });
- return
- }
- if (!this.formMess.longitude) {
- uni.showToast({
- title: "请输入经度...",
- icon: "none"
- });
- return
- }
- if (!this.formMess.latitude) {
- uni.showToast({
- title: "请输入纬度...",
- icon: "none"
- });
- return
- }
- if (!this.formMess.userName) {
- uni.showToast({
- title: "请输入联系人...",
- icon: "none"
- });
- return
- }
- if (!this.formMess.phone) {
- uni.showToast({
- title: "请输入手机号码...",
- icon: "none"
- });
- return
- }
- if (!/^1[345678]\d{9}$/.test(this.formMess.phone)){
- uni.showToast({
- title: "请输入正确的手机号码...",
- icon:"none"
- });
- return
- }
- this.getAddSite({
- "siteName": this.formMess.siteName,
- "userName": this.formMess.userName,
- "phone": this.formMess.phone,
- "address": this.formMess.address,
- "longitude": this.formMess.longitude,
- "latitude": this.formMess.latitude
- })
- },
-
- //编辑验证并提交
- editSubmit() {
- if (!this.siteMessage.siteName) {
- uni.showToast({
- title: "请填写站点名称...",
- icon: "none"
- });
- return
- }
- if (!this.siteMessage.address) {
- uni.showToast({
- title: "请输入地址...",
- icon: "none"
- });
- return
- }
- if (!this.siteMessage.longitude) {
- uni.showToast({
- title: "请输入经度...",
- icon: "none"
- });
- return
- }
- if (!this.siteMessage.latitude) {
- uni.showToast({
- title: "请输入纬度...",
- icon: "none"
- });
- return
- }
- if (!this.siteMessage.userName) {
- uni.showToast({
- title: "请输入联系人...",
- icon: "none"
- });
- return
- }
- if (!this.siteMessage.phone) {
- uni.showToast({
- title: "请输入手机号码...",
- icon: "none"
- });
- return
- }
- if (!/^1[345678]\d{9}$/.test(this.siteMessage.phone)){
- uni.showToast({
- title: "请输入正确的手机号码...",
- icon:"none"
- });
- return
- }
- this.setEditSite({
- "id":this.id,
- "siteName": this.siteMessage.siteName,
- "userName": this.siteMessage.userName,
- "phone": this.siteMessage.phone,
- "address": this.siteMessage.address,
- "longitude": this.siteMessage.longitude,
- "latitude": this.siteMessage.latitude
- })
- },
-
- // 新增请求
- async getAddSite(ming = {}) {
- const res = await this.$myRequest({
- url: 'SiteManagement/setAddSite',
- data: ming
- })
- if (!res.data.flag) {
- uni.showToast({
- title: "添加失败",
- icon: "none"
- });
- } else {
- uni.showToast({
- title: "添加成功",
- });
- }
- setTimeout(() => {
- uni.navigateTo({
- url: '/pages/siteManage/siteManage',
- });
- }, 1000);
- },
-
- // 修改回显请求
- async getSiteList(ming = {}) {
- const res = await this.$myRequest({
- url: 'SiteManagement/getSiteList',
- showLoading: true,
- data: ming
- })
- this.siteMessage=res.data.data[0];
- },
-
-
- // 编辑请求
- async setEditSite(ming = {}) {
- const res = await this.$myRequest({
- url: 'SiteManagement/setEditSite',
- data: ming
- })
- if (!res.data.flag) {
- uni.showToast({
- title: "编辑失败",
- icon: "none"
- });
- } else {
- uni.showToast({
- title: "编辑成功",
- });
- }
- setTimeout(() => {
- uni.navigateTo({
- url: '/pages/siteManage/siteManage',
- });
- }, 1000);
- },
- }
- }
- </script>
- <style lang="scss">
- .cu-form-group {
- border-top: 0;
- }
- input,
- select,
- option {
- line-height: 70rpx;
- padding: 0 20rpx;
- height: 70rpx;
- border: 1px solid #EDEDED;
- // width:500rpx!important;
- background-color: #fff;
- box-sizing: border-box;
- appearance: none;
- -moz-appearance: none;
- -webkit-appearance: none;
- color: #999;
- }
- select:focus,
- select:active,
- select:hover {
- outline: none;
- }
- select {
- background: url(../../static/arrow.png) no-repeat scroll 98% center;
- background-size: 6%;
- }
- .form-item label text {
- position: relative;
- top: 2rpx
- }
- .form-item {
- padding: 0 40rpx;
- display: flex;
- align-items: top;
- margin-bottom: 20rpx;
- .title {
- width: 170rpx;
- position: relative;
- .necessary {
- color: red;
- display: inline-block;
- position: absolute;
- top: -2rpx;
- left: -20rpx;
- font-size: 40rpx;
- }
- }
- input,
- select {
- width: 500rpx;
- font-size: 28rpx;
- }
- }
- /* 站点多选下拉样式 start */
- .layui-btn {
- background-color: #5fb878;
- }
- a {
- text-decoration: none;
- }
- .label {
- padding: 2px 0px;
- background: #aaa;
- border-radius: 2px;
- color: #fff;
- display: block;
- line-height: 20px;
- height: 20px;
- margin: 2px 5px 2px 0;
- float: left;
- }
- .label span {
- padding: 0 5px;
- color: #fff;
- }
- .close {
- padding: 1px 5px !important;
- }
- .close:hover {
- /* background-color: #009E94;
- border-radius: 2px;
- color: tomato; */
- }
- .selectId input {
- width: 100% !important;
- }
- .selectId input {
- height: 25px;
- padding: 1px 5px;
- border-radius: 3px;
- width: calc(100% - 12px);
- outline-color: #5fb878;
- border: 1px solid #5fb878;
- }
- .selectId {
- position: relative;
- }
- .selectId dl {
- border: 1px solid #eee;
- border-radius: 3px;
- margin: 2px 0px;
- max-height: 300px;
- overflow-x: hidden;
- white-space: nowrap;
- position: absolute;
- width: 100%;
- top: 40px;
- background: #fff;
- z-index: 1000
- }
- .selectId dl dd {
- margin: 0;
- padding: 5px 10px;
- }
- .selectId dl dd:hover {
- background-color: #5FB878;
- color: white;
- }
- .AD {
- /* width: 210px;
- margin-left: 40px; */
- overflow-y: auto;
- max-height: 200px;
- /* border: 2px solid #5fb878;
- border-radius: 6px;
- padding: 1px 2px; */
- }
- form .AD span {
- width: auto;
- }
- .siteSelect {
- width: 71%;
- display: inline-block;
- }
- /* 站点多选下拉样式end */
- </style>
|