南昌市物联网技防平台-小程序
Administrator
2021-05-27 35618cf81b18d0d79f86099abccc9ca140c4fd95
业务办理修改
4 files modified
88 ■■■■ changed files
pages/infoRegistration/infoCheck.vue 12 ●●●● patch | view | raw | blame | history
pages/infoRegistration/infoRegistration.vue 39 ●●●● patch | view | raw | blame | history
pages/riskReporting/riskReporting.vue 8 ●●●●● patch | view | raw | blame | history
pages/visitRecord/visitRecord.vue 29 ●●●● patch | view | raw | blame | history
pages/infoRegistration/infoCheck.vue
@@ -1,20 +1,20 @@
<template>
    <view class="content">
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主名称: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主名称" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户名称: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入客户名称" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>联系电话: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入联系电话" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主地址: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主地址" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户地址: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入客户地址" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主类型: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主类型" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户类型: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入客户类型" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>安防等级: </text>
pages/infoRegistration/infoRegistration.vue
@@ -1,20 +1,29 @@
<template>
    <view class="content">
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主名称: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主名称" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户名称: </text>
                <view class="uni-list">
                    <view class="uni-list-cell">
                        <view class="uni-list-cell-db">
                            <picker @change="bindPickerChange" :value="index" :range="array">
                                <view class="uni-input">{{array[index]}}</view>
                            </picker>
                        </view>
                    </view>
                </view>
                <!-- <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入客户名称" placeholder-class="placeholder" /> -->
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>联系电话: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入联系电话" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主地址: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主地址" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户地址: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入客户地址" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主类型: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主类型" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户类型: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入客户类型" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>安防等级: </text>
@@ -24,6 +33,7 @@
                <text class="info-title"><!-- <span style="color: red;">* --></span>备注: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入备注" placeholder-class="placeholder" />
            </view>
            <button class="btn" @click="confirm">上传</button>
        </view>
    </view>
@@ -43,14 +53,19 @@
                display:'none',
                display1:'none',
                display2:'none',
                display3:'none'
                display3:'none',
                array:['中国', '美国', '巴西', '日本'],
                index:0
            }
        },
        onLoad() {
            
        },
        methods: {
            bindPickerChange: function(e) {
                        console.log('picker发送选择改变,携带值为', e.target.value)
                        this.index = e.target.value
                    },
        }
    }
</script>
@@ -103,4 +118,12 @@
        color: #FFFFFF;
        letter-spacing: 2rpx;
    }
    .uni-list {
        position: relative;
        left: 40rpx;
        top: 28rpx;
        width: 300rpx;
        height: 30rpx;
    }
</style>
pages/riskReporting/riskReporting.vue
@@ -1,5 +1,13 @@
<template>
    <view class="content">
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>上报时间: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请选择上报时间" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户名称: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请选择客户" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>风险等级: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请选择风险等级" placeholder-class="placeholder" />
pages/visitRecord/visitRecord.vue
@@ -1,16 +1,19 @@
<template>
    <view class="content">
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>拜访日期: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请选择拜访日期" placeholder-class="placeholder" />
                <text class="info-title">拜访日期: </text>
                <view class="regis-info-date">
                    <uni-datetime-picker></uni-datetime-picker>
                </view>
                <!-- <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请选择拜访日期" placeholder-class="placeholder" /> -->
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主名称: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主名称" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户名称: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输客户主名称" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>业主地址: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入业主地址" placeholder-class="placeholder" />
                <text class="info-title"><!-- <span style="color: red;">* --></span>客户地址: </text>
                <input class="input" type="text" v-on:input ="ondeviceName" v-model="deviceName" placeholder="请输入客户地址" placeholder-class="placeholder" />
            </view>
            <view class="row regis-info">
                <text class="info-title"><!-- <span style="color: red;">* --></span>营业信息: </text>
@@ -43,10 +46,14 @@
            }
        },
        onLoad() {
            //进入页面后查询客户信息
            this.getTenantInfo();
        },
        methods: {
            //查询客户信息
            getTenantInfo(){
            }
        }
    }
</script>
@@ -99,4 +106,10 @@
        color: #FFFFFF;
        letter-spacing: 2rpx;
    }
    .regis-info-date{
        position: relative;
        top: 7rpx;
        left: 20rpx;
    }
</style>