From 35618cf81b18d0d79f86099abccc9ca140c4fd95 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 27 May 2021 00:15:27 +0800
Subject: [PATCH] 业务办理修改
---
pages/infoRegistration/infoCheck.vue | 12 +++---
pages/infoRegistration/infoRegistration.vue | 39 +++++++++++++++----
pages/riskReporting/riskReporting.vue | 8 ++++
pages/visitRecord/visitRecord.vue | 29 ++++++++++----
4 files changed, 66 insertions(+), 22 deletions(-)
diff --git a/pages/infoRegistration/infoCheck.vue b/pages/infoRegistration/infoCheck.vue
index 51c7991..6a093f5 100644
--- a/pages/infoRegistration/infoCheck.vue
+++ b/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>
diff --git a/pages/infoRegistration/infoRegistration.vue b/pages/infoRegistration/infoRegistration.vue
index 51c7991..58efa8d 100644
--- a/pages/infoRegistration/infoRegistration.vue
+++ b/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>
diff --git a/pages/riskReporting/riskReporting.vue b/pages/riskReporting/riskReporting.vue
index 0b66c6e..356e845 100644
--- a/pages/riskReporting/riskReporting.vue
+++ b/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" />
diff --git a/pages/visitRecord/visitRecord.vue b/pages/visitRecord/visitRecord.vue
index 37ebd63..11ba148 100644
--- a/pages/visitRecord/visitRecord.vue
+++ b/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>
--
Gitblit v1.9.3