aa
This commit is contained in:
@@ -47,7 +47,7 @@ export default {
|
||||
this.isAdmin = false
|
||||
this.$http.post('/app/appgirdmemberinfo/checkLogOnUser').then((res) => {
|
||||
if (res.code == 0) {
|
||||
if (res.data.checkType != '0') {
|
||||
if (res.data.appGirdInfo.checkType != '0') {
|
||||
this.isAdmin = true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,9 +29,9 @@
|
||||
<span>转交事件</span>
|
||||
</div>
|
||||
|
||||
<div class="btn" v-if="this.status == 2" @click="confirm">
|
||||
<!-- <div class="btn" v-if="this.status == 2" @click="confirm">
|
||||
<span>拒绝受理</span>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<div class="btn" v-if="this.status == 3" @click="confirm">
|
||||
<span>我已办结</span>
|
||||
|
||||
@@ -115,6 +115,7 @@ export default {
|
||||
created() {
|
||||
this.$dict.load('clapEventStatus', 'clapEventStatusAll', 'clapEventStatusHistory').then(() => {
|
||||
this.getList()
|
||||
this.getStaticList()
|
||||
this.listTypeAll = this.$dict.getDict('clapEventStatusAll')
|
||||
this.listTypeHistory = this.$dict.getDict('clapEventStatusHistory')
|
||||
this.listType = this.listTypeAll
|
||||
@@ -140,6 +141,12 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
getStaticList() {
|
||||
this.$http.post('/app/appclapeventgroup/list').then((res) => {
|
||||
console.log(111);
|
||||
console.log(res);
|
||||
})
|
||||
},
|
||||
// 切换类型
|
||||
changeType(e) {
|
||||
this.status = e[0].label
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<span>(最多9张)</span>
|
||||
</div>
|
||||
<div class="form-item__right">
|
||||
<AiUploader v-model="form.files" :limit="9"></AiUploader>
|
||||
<AiUploader v-model="form.files" :limit="9" action="/admin/file/add2"></AiUploader>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -109,7 +109,7 @@
|
||||
<span>(最多9张)</span>
|
||||
</div>
|
||||
<div class="form-item__right">
|
||||
<AiUploader v-model="form.resultFiles" :limit="9"></AiUploader>
|
||||
<AiUploader v-model="form.resultFiles" :limit="9" action="/admin/file/add2"></AiUploader>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -142,7 +142,7 @@
|
||||
flag: false,
|
||||
result: '',
|
||||
resultFiles: [],
|
||||
opts: 0,
|
||||
opts: 2,
|
||||
name: ''
|
||||
},
|
||||
dictList: [],
|
||||
@@ -169,7 +169,6 @@
|
||||
},
|
||||
|
||||
confirmSelect(e) {
|
||||
console.log(e)
|
||||
this.form.girdId = e[0].value
|
||||
this.girdList.map((item) => {
|
||||
if(item.id == this.form.girdId) {
|
||||
@@ -180,7 +179,6 @@
|
||||
|
||||
getDict () {
|
||||
this.$http.post(`/app/appclapeventgroup/list`).then(res => {
|
||||
console.log(res);
|
||||
if (res.code == 0) {
|
||||
this.dictList = res.data.records.map(v => {
|
||||
return {
|
||||
|
||||
@@ -164,7 +164,7 @@ export default {
|
||||
},
|
||||
|
||||
doThings() {
|
||||
this.$http.post(`/app/appclapeventinfo/acceptance?id=${this.id}`).then((res) => {
|
||||
this.$http.post(`/app/appclapeventinfo/finishByGirdMember?id=${this.id}`).then((res) => {
|
||||
if (res.code == 0) {
|
||||
this.getDetail()
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<div class="select-content">
|
||||
<div class="search-input" v-if="tabIndex">
|
||||
<img src="./img/search-icon.png" alt="">
|
||||
<u-input type="text" placeholder="请输入姓名" placeholder-style="color:#999;font-size:13px;" height="18" v-model="name" @confirm="getUserList" :clearable="false" maxlength="6" />
|
||||
<u-input type="text" placeholder="请输入姓名" placeholder-style="color:#999;font-size:13px;" height="18" v-model="name" @confirm="getUserList" :clearable="true" maxlength="6" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -171,7 +171,7 @@ export default {
|
||||
if(!idNumber) {
|
||||
idNumber = ''
|
||||
}else {
|
||||
idNumber = idNumber.substring(0, 5) + '******' + idNumber.substring(12, 15)
|
||||
idNumber = idNumber.substring(0, 6) + '********' + idNumber.substring(14, 18)
|
||||
}
|
||||
return idNumber
|
||||
},
|
||||
|
||||
@@ -240,7 +240,7 @@ const store = new Vuex.Store({
|
||||
return Promise.resolve()
|
||||
} else {
|
||||
agentSignURL = url
|
||||
if (sessionStorage.getItem("prj").indexOf("saas") > -1) {
|
||||
if (sessionStorage.getItem("prj")?.indexOf("saas") > -1) {
|
||||
params = {...params, corpId: "ww596787bb70f08288"}
|
||||
}
|
||||
if (qs.parse(location.search)?.corpId) {
|
||||
|
||||
Reference in New Issue
Block a user