.
This commit is contained in:
parent
cb217a779b
commit
0256138a1a
11
pages.json
11
pages.json
@ -157,13 +157,13 @@
|
||||
"path": "pages/work/land/create-new",
|
||||
"style": {
|
||||
"navigationBarTitleText": "新增地块",
|
||||
"enablePullDownRefresh": false
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/work/land/index-detail",
|
||||
"style": {
|
||||
"navigationBarTitleText": "地块详情",
|
||||
"enablePullDownRefresh": false
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/work/user/index",
|
||||
@ -175,20 +175,19 @@
|
||||
"path": "pages/work/user/create-user",
|
||||
"style": {
|
||||
"navigationBarTitleText": "新增用户",
|
||||
"enablePullDownRefresh": false
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/work/user/ground",
|
||||
"style": {
|
||||
"navigationBarTitleText": "用户地块",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/work/user/device",
|
||||
"style": {
|
||||
"navigationBarTitleText": "设备权限",
|
||||
"enablePullDownRefresh": false
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/work/user/otherDevice",
|
||||
@ -200,7 +199,7 @@
|
||||
"path": "pages/work/user/selectOtherDevice",
|
||||
"style": {
|
||||
"navigationBarTitleText": "其它设备选择",
|
||||
"enablePullDownRefresh": false
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/work/watering-history/index",
|
||||
|
@ -1,4 +1,7 @@
|
||||
<template>
|
||||
<!-- 顶部导航栏 -->
|
||||
<custom-nav-bar :left="true" leftText="" @leftClick="" title="新增地块">
|
||||
</custom-nav-bar>
|
||||
<view class="create-container">
|
||||
<u-form labelPosition="left" :model="landInfo" :rules="rules" ref="form" required>
|
||||
<u-form-item class="form-item" label="所属公司" labelWidth="100px" prop="companyName" required >
|
||||
|
@ -1,4 +1,7 @@
|
||||
<template>
|
||||
<!-- 顶部导航栏 -->
|
||||
<custom-nav-bar :left="true" leftText="" @leftClick="" title="地块详情">
|
||||
</custom-nav-bar>
|
||||
<view class="item-container" :style="{ height: `${windowHeight}px` }" @touchmove.stop.prevent="() => {}">
|
||||
<u-gap height="10" bgColor="#F3F3F3"></u-gap>
|
||||
<view class="info">
|
||||
|
@ -1,4 +1,8 @@
|
||||
<template>
|
||||
<!-- 顶部导航栏 -->
|
||||
<custom-nav-bar :left="true" leftText="" @leftClick="" title="新增用户">
|
||||
</custom-nav-bar>
|
||||
|
||||
<view class="create-container">
|
||||
<u--form labelPosition="left" :model="userForm" :rules="rules" ref="form">
|
||||
<u--image class="avatar" @click="onAvatarClick" :src="userForm.avatar?userForm.avatar:avatar" width="80px" height="80px"
|
||||
|
@ -1,4 +1,8 @@
|
||||
<template>
|
||||
<!-- 顶部导航栏 -->
|
||||
<custom-nav-bar :left="true" leftText="" @leftClick="" title="设备权限">
|
||||
</custom-nav-bar>
|
||||
|
||||
<view class="index-container">
|
||||
<z-paging class="paging" ref="paging" use-virtual-list bg-color="#F6F3F3" :loading-more-enabled="false">
|
||||
<template #top>
|
||||
|
@ -1,4 +1,8 @@
|
||||
<template>
|
||||
<!-- 顶部导航栏 -->
|
||||
<custom-nav-bar :left="true" leftText="" @leftClick="" title="用户地块">
|
||||
</custom-nav-bar>
|
||||
|
||||
<view class="index-container">
|
||||
<z-paging class="paging" ref="paging" use-virtual-list @query="queryList" bg-color="#F6F3F3"
|
||||
:loading-more-enabled="false">
|
||||
|
@ -1,4 +1,9 @@
|
||||
<template>
|
||||
<!-- 顶部导航栏 -->
|
||||
<custom-nav-bar :left="true" leftText="" @leftClick="" title="其它设备选择">
|
||||
</custom-nav-bar>
|
||||
|
||||
|
||||
<view class="index-container">
|
||||
<z-paging ref="paging" use-virtual-list @query="queryList" bg-color="#F6F3F3" :loading-more-enabled="false">
|
||||
<template #top>
|
||||
|
Loading…
Reference in New Issue
Block a user