|
|
|
|
@ -1,8 +1,8 @@
|
|
|
|
|
<template>
|
|
|
|
|
<view class="box">
|
|
|
|
|
<scroll-view scroll-view class="container g_mt_16 g_radius_8" scroll-x="false" scroll-y="true" upper-threshold="50" lower-threshold="50" scroll-top="0" scroll-left="0" scroll-into-view scroll-with-animation="false" enable-back-to-top="false" bindscrolltoupper bindscrolltolower bindscroll>
|
|
|
|
|
<view class="box" v-for="item in annunciateList" @click="editAnnunciate" data-info="{{item}}">
|
|
|
|
|
<view class="subset {{index != 0 ? 'bt1' : ''}}">
|
|
|
|
|
<view class="box" v-for="item in annunciateList" @click="editAnnunciate(item)" >
|
|
|
|
|
<view class="subset" :class="index != 0 ? 'g_border_e_t' : ''">
|
|
|
|
|
<view class="left">
|
|
|
|
|
<view class="name" style="min-width: 148px">
|
|
|
|
|
<view class="g_fs_16">{{ item.title }}</view>
|
|
|
|
|
@ -62,7 +62,7 @@ export default {
|
|
|
|
|
editAnnunciate(e) {
|
|
|
|
|
console.log(e);
|
|
|
|
|
wx.navigateTo({
|
|
|
|
|
url: `/root/detail/addContact?info=${JSON.stringify(e.currentTarget.dataset.info)}`,
|
|
|
|
|
url: `/root/detail/addContact?info=${JSON.stringify(e)}`,
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addContact() {
|
|
|
|
|
|