| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <template>
- <view class="wrap">
- <uni-nav-bar dark :fixed="true" backgroundColor="#3F9EFF" statusBar="false" left-icon="left" left-text="返回"
- :title="title" @clickLeft="toBack" >
- </uni-nav-bar>
- <!-- <u-gap height="75px"></u-gap> -->
- <view class="container">
- <uni-list>
- <uni-list-item v-for="item in list" :key="item.id">
- <!-- 自定义 body -->
- <template v-slot:body>
- <view style="height: 130px;width: 100%;display: flex;flex-direction: column;">
- <view style="display: flex;flex-direction: row;width: 100%;justify-content: flex-start;">
- <view style="font-size: 0.9rem;font-weight: bold;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">{{item.planTitle}}
- </view>
- </view>
- <view style="margin-top: 10rpx;">
- <text style="margin-right: 10px;font-size: 0.7rem;">计划开始时间:</text>
- <text style="font-size: 0.7rem;color: orangered;">{{item.inspectionStartTime}}</text>
- </view>
- <view style="margin-top: 10rpx;">
- <text style="margin-right: 10px;font-size: 0.7rem;">计划结束时间:</text>
- <text style="font-size: 0.7rem;color: orangered;">{{item.inspectionEndTime}}</text>
- </view>
- <view v-if="item.planClose == 2" style="margin-top: 10rpx;padding-left: 0px;padding-right: 0px;">
- <button style="background-color: lightblue;" type="default" @click="openPage(item.id)">开始填报</button>
- </view>
- <view v-if="item.planClose == 1" style="margin-top: 10rpx;padding-left: 0px;padding-right: 0px;">
- <button type="default" @click="toPlanClose(item.id)">填报已结束</button>
- </view>
- </view>
- </template>
- </uni-list-item>
- </uni-list>
- </view>
- <u-gap height="70"></u-gap>
- </view>
- </template>
- <script>
- import uNavBar from '@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue'
- import uDataPicker from '@/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue'
- import uGroup from '@/uni_modules/uni-group/uni-group.vue'
- import uSection from '@/uni_modules/uni-section/uni-section.vue'
- import uPagination from '@/uni_modules/uni-pagination/components/uni-pagination/uni-pagination.vue'
- import uBreadcrumb from '@/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue'
- import uList from '@/uni_modules/uni-list/components/uni-list/uni-list.vue'
- import uListItem from '@/uni_modules/uni-list/components/uni-list-item/uni-list-item.vue'
- import uIcons from '@/uni_modules/uni-icons/components/uni-icons/uni-icons.vue'
- import http from '@/http/api.js';
- export default {
- components: {
- uNavBar,
- uList,
- uListItem,
- uIcons,
- uGroup,
- },
- onLoad(option) {
- this.getPlanList();
- },
- data() {
- return {
- list: [],
- title: '巡检计划',
- desc: '',
- }
- },
- computed: {
- getIcon() {
- return path => {
- return 'https://cdn.uviewui.com/uview/example/' + path + '.png';
- }
- },
- },
- onShow() {
- // uni.setNavigationBarTitle({
- // title: ""
- // });
- },
- created() {
- },
- methods: {
- toBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- getPlanList() {
- var that = this;
- http.request({
- url: '/galaxy-test/equipment/inspection/plan/all/list',
- method: 'GET',
- }).then(res => {
- console.log(res)
- if (res.data != null) {
- that.list = res.data;
- }
- }).catch(err => {
- console.log(err)
- })
- },
- openPage(id) {
- var url = '/pages/equipment-inspection/equipmentinspectionreportrtulist?id=' + id;
- uni.navigateTo({
- url: url
- })
- },
- toPlanClose(id){
-
- },
- }
- }
- </script>
- <style>
- /* page {
- background-color: rgb(240, 242, 244);
- } */
- </style>
- <style lang="scss" scoped>
- .container {
- padding: 0 0 150rpx;
- }
- .u-cell-icon {
- width: 36rpx;
- height: 36rpx;
- margin-right: 8rpx;
- }
- .slot-box {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- }
- .slot-image {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- margin-right: 10px;
- width: 30px;
- height: 30px;
- }
- .slot-text {
- flex: 1;
- font-size: 14px;
- color: #4cd964;
- margin-right: 10px;
- }
- .content-box {
- flex: 1;
- /* #ifdef APP-NVUE */
- justify-content: center;
- /* #endif */
- height: 100%;
- line-height: 44px;
- padding: 0 15px;
- position: relative;
- background-color: #fff;
- border-bottom-color: #f5f5f5;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- }
- .content-text {
- font-size: 15px;
- }
- .example-body {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- justify-content: center;
- padding: 10px 0;
- background-color: #fff;
- }
- .button {
- border-color: #e5e5e5;
- border-style: solid;
- border-width: 1px;
- padding: 4px 8px;
- border-radius: 4px;
- }
- .button-text {
- font-size: 15px;
- }
- .slot-button {
- /* #ifndef APP-NVUE */
- display: flex;
- height: 100%;
- /* #endif */
- flex: 1;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding: 0 20px;
- background-color: #ff5a5f;
- }
- .slot-button-text {
- color: #ffffff;
- font-size: 14px;
- }
- </style>
|