From 07702ce20f46449e7560c43b2f7b7b65e5e742ea Mon Sep 17 00:00:00 2001 From: 346149741 <346149741@qq.com> Date: 星期六, 22 六月 2024 11:51:37 +0800 Subject: [PATCH] 执法记录列表 --- qiye/complaint/details.vue | 22 +++++ pages.json | 15 +++ qiye/complaint/complaint.vue | 189 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 226 insertions(+), 0 deletions(-) diff --git a/pages.json b/pages.json index ab9ee85..e9f9140 100644 --- a/pages.json +++ b/pages.json @@ -204,6 +204,21 @@ { "navigationBarTitleText" : "璇勪环" } + }, + { + "path" : "complaint/complaint", + "style" : + { + "navigationBarTitleText" : "鎶曡瘔璁板綍" + } + }, + { + "path" : "complaint/details", + "style" : + { + "navigationBarTitleText" : "", + "navigationStyle": "custom" + } } ] diff --git a/qiye/complaint/complaint.vue b/qiye/complaint/complaint.vue new file mode 100644 index 0000000..a9b360e --- /dev/null +++ b/qiye/complaint/complaint.vue @@ -0,0 +1,189 @@ +<template> + <view> + <u-sticky bgColor="white"> + <view class="set-search"> + <u-search placeholder="璇疯緭鍏�" @search="search" @blur="search" shape="square" :showAction="false"></u-search> + </view> + <view class="border"></view> + <u-tabs :list="list1" @click="click" :current="current" :scrollable="false" bgColor="white"></u-tabs> + </u-sticky> + <view class="item"> + <img src="/static/i05.png" class="img" alt="" /> + <view class="right"> + <view class="name"> + <view class="l"> + 鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃 + </view> + <view class="r color1"> + 寰呰瘎浠� + </view> + </view> + <view class="box"> + <view class="l"> + <p>鎵ф硶鍗曚綅锛氬啘涓氬啘鏉戝眬</p> + <p>鎵ф硶鏃堕棿锛�2024-06-03 12:30:67</p> + </view> + <view class="r"> + 鍘绘煡鐪� + </view> + </view> + </view> + </view> + <view class="item"> + <img src="/static/i05.png" class="img" alt="" /> + <view class="right"> + <view class="name"> + <view class="l"> + 鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃 + </view> + <view class="r color2"> + 寰呰瘎浠� + </view> + </view> + <view class="box"> + <view class="l"> + <p>鎵ф硶鍗曚綅锛氬啘涓氬啘鏉戝眬鍐滀笟鍐滄潙灞�鍐滀笟鍐滄潙灞�鍐滀笟鍐滄潙灞�鍐滀笟鍐滄潙灞�鍐滀笟鍐滄潙灞�s</p> + <p>鎵ф硶鏃堕棿锛�2024-06-03 12:30:67</p> + </view> + <view class="r"> + 鍘绘煡鐪� + </view> + </view> + </view> + </view> + <view class="item"> + <img src="/static/i05.png" class="img" alt="" /> + <view class="right"> + <view class="name"> + <view class="l"> + 鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃鍖椾含灏氱瓥浜掑姩绉戞妧鏈夐檺鍏徃 + </view> + <view class="r color3"> + 寰呰瘎浠� + </view> + </view> + <view class="box"> + <view class="l"> + <p>鎵ф硶鍗曚綅锛氬啘涓氬啘鏉戝眬</p> + <p>鎵ф硶鏃堕棿锛�2024-06-03 12:30:67</p> + </view> + <view class="r"> + 鍘绘煡鐪� + </view> + </view> + </view> + </view> + <view style="height: 50rpx;"></view> + + </view> +</template> + +<script> + export default { + data() { + return { + current: 0, + list1: [{ + name: '鍏ㄩ儴', + value: '' + }, { + name: '寰呭搷搴�', + value: 1 + }, { + name: '澶勭悊涓�', + value: 2 + }, { + name: '宸插姙缁�', + value: 3 + }], + } + }, + methods: { + search(e){ + // this.queryParams.pageNum =1 + // this.queryParams.companyName = e + // this.orderList() + } + } + } +</script> + +<style> +page { + background-color: #F4F4F4; + } +</style> +<style lang="scss" scoped> + .set-search{ + margin: 0 32rpx 0; + padding-top: 26rpx; + + } + .border{ + border-bottom: 2rpx solid #F6F6F6; + margin: 20rpx 0 0; + } + + .item{ + background: #fff; + border-radius: 5px; + padding: 24rpx; + box-sizing: border-box; + margin: 20rpx 32rpx; + display: flex; + .img{ + width: 56rpx; + height: 56rpx; + } + .right{ + width: 90%; + .name{ + display: flex; + justify-content: space-between; + .l{ + color: #202d44; + font-size: 32rpx; + line-height: 44rpx; + margin-bottom: 24rpx; + width: 80%; + } + .r{ + font-size: 28rpx; + width: 20%; + text-align: right; + } + } + .box{ + display: flex; + justify-content: space-between; + .l{ + font-size: 26rpx; + color: #7e8593; + max-width: 80%; + } + .r{ + width: 132rpx; + height: 64rpx; + line-height: 64rpx; + border-radius: 5px; + border: 1px solid #ABD2FF; + background: #F0F8FF; + color: #1171e0; + text-align: center; + font-size: 30rpx; + } + } + } + } + .color1{ + color: #FE7B32; + } + .color2{ + color: #EB4746; + + } + .color3{ + color: #3EB47A; + + } +</style> \ No newline at end of file diff --git a/qiye/complaint/details.vue b/qiye/complaint/details.vue new file mode 100644 index 0000000..8183fd0 --- /dev/null +++ b/qiye/complaint/details.vue @@ -0,0 +1,22 @@ +<template> + <view> + + </view> +</template> + +<script> + export default { + data() { + return { + + } + }, + methods: { + + } + } +</script> + +<style> + +</style> -- Gitblit v1.9.1