Browse Source

不是成员列表中的成员

tall-check-work
xuesinan 3 years ago
parent
commit
2372585a30
  1. 7
      index.html

7
index.html

@ -178,7 +178,10 @@
const { success, code, data, msg } = res;
if (success && code === 200) {
if (data && data.length && data[0].recordList && data[0].recordList.length) {
that.memberId = data[0].recordList[0].memberId
if (data[0].recordList[0].isMine === 1) {
that.memberId = data[0].recordList[0].memberId
}
that.id = data[0].recordList[0].id
// 审核人
if (data[0].recordList[0].lastCheckerId) {
@ -294,14 +297,12 @@
// 显示选择框
show(){
console.log('11111111');
var statusChoose = this.dom.querySelector('.statusChoose');
statusChoose.style.display='block';
var list = ''
for (let i=0;i < this.lists.length; i++) {
list += `<li class="py-3" onclick="p1485171846022434817.chooseItem(${i})">` + this.lists[i].name + '</li>';
}
console.log('22222222222', list);
var ul = this.dom.querySelector('ul');
ul.innerHTML = list
},

Loading…
Cancel
Save