linwe
2024-08-08 3c738f4fe2762bba8087e5a22fc0dc06560eab0e
subPackage/school/troubleTaskList.vue
@@ -13,10 +13,11 @@
                  <text class="f-28">时间筛选</text>
                  <u-icon name="arrow-down"></u-icon>
               </view>
               <u-search placeholder="请输入姓名" v-model="keyWord" :clearabled="true" :showAction="true"
               <u-search placeholder="请输入学校名称" v-model="keyWord" :clearabled="true" :showAction="true"
                  :animation="true" @search="searchConfirm" @clear="clearConfirm"
                  @custom="searchConfirm"></u-search>
            </view>
         </view>
      </u-sticky>
@@ -29,10 +30,10 @@
                  :type="findObjValue(item.confirmFlag, tabList).type" plain plainFill></u-tag>
               <!-- <u-tag text="审核拒绝" type="error" plain plainFill></u-tag> -->
            </view>
            <!-- <view class="item-row flex a-i-c j-c-s-b">
               <text class="f-28">法人信息</text>
               <text class="f-28 c-66">{{ item.legalPerson  ? item.legalPerson : '未完善'}}</text>
            </view> -->
            <view class="item-row flex a-i-c j-c-s-b">
               <text class="f-28">描述</text>
               <text class="f-28 c-66 remarkText">{{item.remark}}</text>
            </view>
            <view class="item-row flex a-i-c j-c-s-b f-28">
               <text>时间</text>
               <text class="c-66">{{item.createTime}}</text>
@@ -134,7 +135,7 @@
            const params = {
               placeName: this.keyWord,
               confirmFlag: this.tabStatus,
               isReporting: 1
               // isReporting: 1
            }
            if (this.selectDate.length) {
               params.startTime = this.selectDate[0]
@@ -273,6 +274,19 @@
            width: 65%;
            text-align: right;
         }
         .remarkText {
            width: 200px;
            /* 定义容器宽度 */
            white-space: nowrap;
            /* 确保文本在一行内显示 */
            overflow: hidden;
            /* 隐藏超出容器的文本 */
            text-overflow: ellipsis;
            /* 使用点点表示文本的溢出 */
            text-align: right;
            /* 文本居中对齐 */
         }
      }
   }
</style>