| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <view class="wrap">
- <uni-nav-bar dark :fixed="true" backgroundColor="#3F9EFF" statusBar="false" left-icon="left" left-text="返回"
- @clickLeft="toBack">
- <view style="width: 100%;display: flex;flex-direction: row;justify-content: center;align-items: center;">
- <text style="color: white;font-size: 1rem;">{{title}}</text>
- </view>
- </uni-nav-bar>
- <view class="container">
- <uList>
- <uni-list-item v-for="item in list" :key="item.id" showArrow="right" clickable
- @click="toOrderProcessDetail(item.id)">
- <template v-slot:body>
- <view style="width: 100%;display: flex;flex-direction: column;">
- <view style="width: 100%;display: flex;flex-direction: row;align-items: center;">
- <uIcons class="input-uni-icon" type="info" size="18" color="coral" />
- <text style="margin-left: 5px;font-size: 0.8rem;">{{item.processDesc}}
- </text>
- </view>
- <view style="margin-top: 4px;display: flex;flex-direction: row;align-items: center;">
- <view style="font-size: 0.7rem;color: olivedrab;">{{item.orderStatusName}}</view>
- <view style="margin-left:10px;font-size: 0.7rem;color:black;">{{item.createTime}}
- </view>
- </view>
- </view>
- </template>
- </uni-list-item>
- </uList>
- <uGroup>
- <view class="uni-pagination-box">
- <uni-pagination show-icon :page-size="pageSize" :current="pageCurrent" :total="total"
- @change="change" />
- </view>
- </uGroup>
- </view>
- </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,
- uSection,
- },
- onLoad(option) {
- console.log(option.id);
- this.orderId = option.id;
- },
- data() {
- return {
- orderId: 0,
- list: [],
- title: '工单填报记录',
- desc: '',
- pageSize: 10,
- // 当前页
- pageCurrent: 1,
- // 数据总量
- total: 0,
- }
- },
- computed: {
- getIcon() {
- return path => {
- return 'https://cdn.uviewui.com/uview/example/' + path + '.png';
- }
- },
- },
- onShow() {
- this.getOrderProcessList();
- },
- methods: {
- toBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- // 分页触发
- change(e) {
- //this.$refs.table.clearSelection()
- this.selectedIndexs.length = 0
- this.pageCurrent = e.current;
- this.getOrderProcessList()
- },
- getOrderProcessList() {
- const current = this.pageCurrent;
- const size = this.pageSize;
- const isSubmit = '0';
- var that = this;
- var postData = {};
- postData['id'] = this.orderId;
- http.request({
- url: '/galaxy-test/rtu/check/order/process/page',
- method: 'GET',
- data: postData,
- params: {
- current,
- size,
- isSubmit
- }
- }).then(res => {
- if (res.data.records != null) {
- that.list = res.data.records;
- }
- this.total = res.data.total;
- }).catch(err => {
- console.log(err)
- })
- },
- toOrderProcessDetail(id) {
- console.log("opne record ", id)
- var url = '/pages/check-order/orderprocessreportdetail?processId=' + id;
- uni.navigateTo({
- url: url
- })
- },
- }
- }
- </script>
- <style>
- </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>
|