121 lines
3.0 KiB
Vue
121 lines
3.0 KiB
Vue
|
<template>
|
|||
|
<view class="container">
|
|||
|
<unicloud-db ref="udb" v-slot:default="{data, loading, error, options}" :options="options" :collection="collectionList" field="dMeterType,departID,createBy,updateBy,createTime,updateTime" :where="queryWhere" :getone="true" :manual="true">
|
|||
|
<view v-if="error">{{error.message}}</view>
|
|||
|
<view v-else-if="loading">
|
|||
|
<uni-load-more :contentText="loadMore" status="loading"></uni-load-more>
|
|||
|
</view>
|
|||
|
<view v-else-if="data">
|
|||
|
<view>
|
|||
|
<text>流量计类别</text>
|
|||
|
<text>{{data.dMeterType}}</text>
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
<text>部门编号</text>
|
|||
|
<text>{{data.departID}}</text>
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
<text>创建人</text>
|
|||
|
<text>{{data.createBy}}</text>
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
<text>更新人</text>
|
|||
|
<text>{{data.updateBy}}</text>
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
<text>创建时间</text>
|
|||
|
<text>{{data.createTime}}</text>
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
<text>更新时间</text>
|
|||
|
<text>{{data.updateTime}}</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</unicloud-db>
|
|||
|
<view class="btns">
|
|||
|
<button type="primary" @click="handleUpdate">修改</button>
|
|||
|
<button type="warn" class="btn-delete" @click="handleDelete">删除</button>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
// 由schema2code生成,包含校验规则和enum静态数据
|
|||
|
import { enumConverter } from '../../js_sdk/validator/ngTools_MeterList.js'
|
|||
|
const db = uniCloud.database()
|
|||
|
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
queryWhere: '',
|
|||
|
collectionList: "ngTools_MeterList",
|
|||
|
loadMore: {
|
|||
|
contentdown: '',
|
|||
|
contentrefresh: '',
|
|||
|
contentnomore: ''
|
|||
|
},
|
|||
|
options: {
|
|||
|
// 将scheme enum 属性静态数据中的value转成text
|
|||
|
...enumConverter
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
onLoad(e) {
|
|||
|
this._id = e.id
|
|||
|
},
|
|||
|
onReady() {
|
|||
|
if (this._id) {
|
|||
|
this.queryWhere = '_id=="' + this._id + '"'
|
|||
|
}
|
|||
|
},
|
|||
|
methods: {
|
|||
|
handleUpdate() {
|
|||
|
// 打开修改页面
|
|||
|
uni.navigateTo({
|
|||
|
url: './edit?id=' + this._id,
|
|||
|
events: {
|
|||
|
// 监听修改页面成功修改数据后, 刷新当前页面数据
|
|||
|
refreshData: () => {
|
|||
|
this.$refs.udb.loadData({
|
|||
|
clear: true
|
|||
|
})
|
|||
|
}
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
handleDelete() {
|
|||
|
this.$refs.udb.remove(this._id, {
|
|||
|
success: (res) => {
|
|||
|
// 删除数据成功后跳转到list页面
|
|||
|
uni.navigateTo({
|
|||
|
url: './list'
|
|||
|
})
|
|||
|
}
|
|||
|
})
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style>
|
|||
|
.container {
|
|||
|
padding: 10px;
|
|||
|
}
|
|||
|
|
|||
|
.btns {
|
|||
|
margin-top: 10px;
|
|||
|
/* #ifndef APP-NVUE */
|
|||
|
display: flex;
|
|||
|
/* #endif */
|
|||
|
flex-direction: row;
|
|||
|
}
|
|||
|
|
|||
|
.btns button {
|
|||
|
flex: 1;
|
|||
|
}
|
|||
|
|
|||
|
.btn-delete {
|
|||
|
margin-left: 10px;
|
|||
|
}
|
|||
|
</style>
|