Blame view

pages/receiptRegistration/receiptRegistrationSchedule.vue 957 Bytes
1f3f2378   起风了   我的第一次
1
2
  <template>

  	<view class="page">

5e015590   smile   111
3
4
5
6
  		<view class="top-box" v-for="(item, index) in list" :key="index">

  			<view>{{item.nodeTime}} {{item.nodeName}}<span v-if="item.nodeAuditStatus =='true'"

  					style="margin-left: 20rpx;color: #00D970;">已完成</span><span v-if="item.nodeAuditStatus =='flase'"

  					style="margin-left: 20rpx;color: red;">正在进行</span></view>

1f3f2378   起风了   我的第一次
7
8
9
10
11
12
13
14
15
  		</view>

  	</view>

  </template>

  

  <script>

  	import BASE_URL from "@/common/config.js"

  	export default {

  		data() {

  			return {

cfa1fec6   “DataPlanet”   111
16
  				list: []

1f3f2378   起风了   我的第一次
17
18
  			};

  		},

cfa1fec6   “DataPlanet”   111
19
20
21
22
  		onLoad(params) {

  			this.list = JSON.parse(params.item);

  			console.log('list', this.list)

  		},

5e015590   smile   111
23
24
  		computed: {},

  		methods: {}

1f3f2378   起风了   我的第一次
25
26
27
28
29
30
31
  	}

  </script>

  

  <style scoped lang="scss">

  	.page {

  		padding: 15rpx;

  	}

5e015590   smile   111
32
  

1f3f2378   起风了   我的第一次
33
34
35
36
37
38
39
40
41
42
  	.top-box {

  		display: flex;

  		justify-content: space-between;

  		margin: 30rpx;

  		font-size: 28rpx;

  		font-weight: bold;

  		background-color: #fff;

  		border-radius: 21rpx;

  		padding: 30rpx;

  	}

1f3f2378   起风了   我的第一次
43
  </style>