调整工程目录
This commit is contained in:
		@@ -1,7 +1,8 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="walkObject">
 | 
			
		||||
    <div class="header-top">
 | 
			
		||||
      <u-search v-model="keyword" placeholder="搜索" :show-action="false" bg-color="#F5F5F5" search-icon-color="#CCCCCC" placeholder-color="#999999" @search="handerSearch" @clear="handerClear"></u-search>
 | 
			
		||||
      <u-search v-model="keyword" placeholder="搜索" :show-action="false" bg-color="#F5F5F5" search-icon-color="#CCCCCC"
 | 
			
		||||
                placeholder-color="#999999" @search="handerSearch" @clear="handerClear"></u-search>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="header-middle">
 | 
			
		||||
@@ -12,7 +13,8 @@
 | 
			
		||||
      <div class="Checkbox">
 | 
			
		||||
        <div v-if="DiyList.length > 0">
 | 
			
		||||
          <u-collapse event-type="close" arrowaccordion>
 | 
			
		||||
            <u-collapse-item v-for="(item, index) in DiyList" :title="item.menuLevel2Name" :key="index" @change="selectUser(item)">
 | 
			
		||||
            <u-collapse-item v-for="(item, index) in DiyList" :title="item.menuLevel2Name" :key="index"
 | 
			
		||||
                             @change="selectUser(item)">
 | 
			
		||||
              <u-radio-group v-model="value">
 | 
			
		||||
                <u-radio v-for="(item, index) in userList" :key="index" :name="item.create_user_name">
 | 
			
		||||
                  {{ item.create_user_name }}
 | 
			
		||||
@@ -26,7 +28,7 @@
 | 
			
		||||
          </u-collapse>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <AiEmpty description="没有数据" class="emptyWrap" v-else> </AiEmpty>
 | 
			
		||||
        <AiEmpty description="没有数据" class="emptyWrap" v-else></AiEmpty>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
@@ -73,7 +75,8 @@ export default {
 | 
			
		||||
  created() {
 | 
			
		||||
    this.getDiyList()
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {},
 | 
			
		||||
  mounted() {
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    getDiyList() {
 | 
			
		||||
      this.$http.post('/app/appapplicationinfo/queryApplicationListByType?type=0').then((res) => {
 | 
			
		||||
@@ -86,7 +89,7 @@ export default {
 | 
			
		||||
    selectUser(item) {
 | 
			
		||||
      console.log(item.id)
 | 
			
		||||
      this.appId = item.id
 | 
			
		||||
      this.$http.post(`/app/appapplicationinfo/list?appId=${item.id}¤t=${this.current}&size=${99}`, { searchParam: this.keyword }).then((res) => {
 | 
			
		||||
      this.$http.post(`/app/appapplicationinfo/list?appId=${item.id}¤t=${this.current}&size=${99}`, {searchParam: this.keyword}).then((res) => {
 | 
			
		||||
        if (res.code == 0) {
 | 
			
		||||
          this.userList = res.data.records
 | 
			
		||||
        }
 | 
			
		||||
@@ -96,7 +99,7 @@ export default {
 | 
			
		||||
    submit() {
 | 
			
		||||
      this.userList.map((item) => {
 | 
			
		||||
        if (item.create_user_name == this.value) {
 | 
			
		||||
          this.$emit('back', { item: item, appId: this.appId })
 | 
			
		||||
          this.$emit('back', {item: item, appId: this.appId})
 | 
			
		||||
        }
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
@@ -109,6 +112,7 @@ export default {
 | 
			
		||||
.walkObject {
 | 
			
		||||
  background: #ffffff;
 | 
			
		||||
  padding-bottom: 118px;
 | 
			
		||||
 | 
			
		||||
  .header-top {
 | 
			
		||||
    background: #fff;
 | 
			
		||||
    padding: 20px 32px;
 | 
			
		||||
@@ -123,10 +127,12 @@ export default {
 | 
			
		||||
      font-size: 30px;
 | 
			
		||||
      font-weight: 500;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .empty-div {
 | 
			
		||||
      height: 16px;
 | 
			
		||||
      background: #f5f5f5;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .Checkbox {
 | 
			
		||||
      padding: 0 20px 0 30px;
 | 
			
		||||
 | 
			
		||||
@@ -153,6 +159,7 @@ export default {
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    box-sizing: border-box;
 | 
			
		||||
    padding: 0 32px;
 | 
			
		||||
 | 
			
		||||
    .subBtn {
 | 
			
		||||
      margin: 20px 0 18px 0;
 | 
			
		||||
      padding: 18px 32px;
 | 
			
		||||
@@ -161,8 +168,10 @@ export default {
 | 
			
		||||
      font-size: 32px;
 | 
			
		||||
      color: #ffffff;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .typeName {
 | 
			
		||||
      margin: 36px 0 22px 0;
 | 
			
		||||
 | 
			
		||||
      .typeName-box {
 | 
			
		||||
        padding: 16px 14px;
 | 
			
		||||
        background: #eaeef1;
 | 
			
		||||
@@ -171,6 +180,7 @@ export default {
 | 
			
		||||
        font-weight: 500;
 | 
			
		||||
        margin-left: 10px;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      .typeName-box:first-child {
 | 
			
		||||
        margin-left: 0;
 | 
			
		||||
      }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user