123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <template>
- <view class="box">
- <template v-if="shareList.length > 0">
- <view class="meauList" v-for="item in shareList" :key="item.devId">
- <view class="menu-item">
- <view class="meanLeft">
- <text>分享人号码</text>
- </view>
- <view class="meanRight">
- <text>{{ item.sharerPhone }}</text></view
- >
- </view>
- <view class="menu-item">
- <view class="meanLeft">
- <text>设备名称</text>
- </view>
- <view class="meanRight">
- <text>{{ item.devName }}</text></view
- >
- </view>
- <view class="menu-item">
- <view class="meanLeft">
- <text>设备序列号</text>
- </view>
- <view class="meanRight">
- <text>{{ item.clientId }}</text></view
- >
- </view>
- <view class="menu-item">
- <view class="meanLeft">
- <text>分享时间</text>
- </view>
- <view class="meanRight">
- <text>{{ item.shareTime }}</text></view
- >
- </view>
- <view class="menu-item">
- <view class="meanLeft">
- <text>分享状态</text>
- </view>
- <view class="meanRight">
- <text v-if="item.state == 0" style="color: #7a5446"
- >待确认</text
- >
- <text v-if="item.state == 1" style="color: #22b85e"
- >已确认</text
- >
- <text v-if="item.state == 2" style="color: #ee3535"
- >已拒绝</text
- >
- </view>
- </view>
- <view class="menu-bottom" v-if="item.state == 0">
- <view class="meanLeft" @click="acceptDevice(item)"
- >授权</view
- >
- <view class="meanRight" @click="refuseDevice(item)"
- >拒绝</view
- >
- </view>
- </view>
- </template>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- shareList: [],
- };
- },
- methods: {
- getShareList() {
- this.$http
- .get("wap/share/queryDevShare", {
- userId: uni.getStorageSync("userId"),
- })
- .then((res) => {
- if (res.data.data) {
- this.shareList = res.data.data;
- }
- })
- .catch((err) => {});
- },
- acceptDevice(item) {
- let shareConfirmParam = {
- devId: item.devId,
- sharedUserId: item.sharedUserId,
- state: 1,
- };
- this.$http
- .post("wap/share/Confirm", shareConfirmParam, {
- header: {
- "Content-Type": "application/json;charset=UTF-8",
- },
- })
- .then((res) => {
- if (res.data.code == 200) {
- uni.showToast({
- title: "授权成功",
- icon: "success",
- duration: 1500,
- });
- } else {
- uni.showToast({
- title: res.data.message,
- icon: "none",
- duration: 1500,
- });
- }
- this.getShareList();
- });
- },
- refuseDevice(item) {
- let shareConfirmParam = {
- devId: item.devId,
- sharedUserId: item.sharedUserId,
- state: 2,
- };
- this.$http
- .post("wap/share/Confirm", shareConfirmParam, {
- header: {
- "Content-Type": "application/json;charset=UTF-8",
- },
- })
- .then((res) => {
- if (res.data.code == 200) {
- uni.showToast({
- title: "已拒绝该设备",
- icon: "success",
- duration: 1500,
- });
- } else {
- uni.showToast({
- title: res.data.message,
- icon: "none",
- duration: 1500,
- });
- }
- this.getShareList();
- });
- },
- },
- onPullDownRefresh() {
- this.getShareList();
- setTimeout(() => {
- uni.stopPullDownRefresh();
- }, 1000);
- },
- onShow() {
- this.getShareList();
- },
- };
- </script>
- <style lang="less" scoped>
- // Main Styles
- .box {
- padding: 10rpx 18rpx;
- width: 100vw;
- height: 100vh;
- background: linear-gradient(180deg, #faede2 0%, #f4f4f4 100%);
- box-sizing: border-box;
- .meauList {
- width: 710rpx;
- margin: 18rpx auto;
- background: #fff;
- border-radius: 16rpx;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.08);
- overflow: hidden;
- transition: all 0.3s ease;
- .menu-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin: 0 32rpx;
- padding: 32rpx 0;
- border-bottom: 1rpx solid #f0f0f0;
- &:last-of-type {
- border-bottom: none;
- }
- .meanLeft {
- flex: 1;
- color: #666;
- font-size: 28rpx;
- font-weight: 400;
- }
- .meanRight {
- flex: 1;
- text-align: right;
- color: #333;
- font-size: 28rpx;
- font-weight: 500;
- padding-left: 20rpx;
- }
- }
- .menu-bottom {
- display: flex;
- padding: 24rpx 32rpx;
- border-top: 1rpx solid #f0f0f0;
- .meanLeft,
- .meanRight {
- flex: 1;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 8rpx;
- font-size: 30rpx;
- font-weight: 500;
- transition: all 0.2s;
- &:active {
- opacity: 0.8;
- }
- }
- .meanLeft {
- background: #7b5245;
- color: white;
- margin-right: 16rpx;
- }
- .meanRight {
- background: fade(#ff4d4f, 10%);
- color: #ff4d4f;
- border: 1rpx solid fade(#ff4d4f, 30%);
- }
- }
- }
- }
- </style>
|