|
@@ -8,7 +8,7 @@
|
|
|
</template>
|
|
|
<template #right>
|
|
|
<view class="u-navbar__content__right__item">
|
|
|
- <u-icon name="list" size="20" color="#000" @click="handleSubmit('insert')" ></u-icon>
|
|
|
+ <u-icon name="plus" size="20" color="#000" @click="handleSubmit('insert')"></u-icon>
|
|
|
</view>
|
|
|
</template>
|
|
|
</u-navbar>
|
|
@@ -49,14 +49,10 @@
|
|
|
<view class="menu-list m0">
|
|
|
<view class="list-cell" style="color: #666666; line-height: 25px" v-for="(base, index) in dataList" :key="index">
|
|
|
<view class="content-area-top menu-item">
|
|
|
- <view class="content-area-top-time"> </view>
|
|
|
- <u-icon class="content-area-top-icon" name="man-delete" size="20" color="orange" @click="tips('warn',`确认退出名为 '${base.projectName}' 的项目?`,base,'exit')"
|
|
|
- v-if="base.projectHead != useStore.userId && base.createBy != useStore.name && base.projectMember.indexOf(useStore.userId) != -1"></u-icon>
|
|
|
- <u-icon class="content-area-top-icon" name="edit-pen" size="20" color="rgb(20, 158, 255)" @click="handleSubmit('update',base)" v-if="base.projectHead == useStore.userId || base.createBy == useStore.name"></u-icon>
|
|
|
- <u-icon class="content-area-top-icon" name="trash" size="20" color="red" @click="tips('error',`确认删除名为 '${base.projectName}' 的项目?`,base,'delete')" v-if="base.projectHead == useStore.userId || base.createBy == useStore.name"></u-icon>
|
|
|
+ <view class="content-area-top-name">{{ base.projectName }} </view>
|
|
|
+ <u-icon class="content-area-top-icon" name="more-dot-fill" size="20" color="#000" @click="moreClick(base)"></u-icon>
|
|
|
</view>
|
|
|
<view class="content-area-row_wrap menu-item">
|
|
|
- <view class="content-area-row_wrap-view"> <strong>{{ base.projectName }}</strong> </view>
|
|
|
<view class="content-area-row_wrap-view"> 负责人: {{ proxy.$common.mapping("nickName", "userId", base.projectHead, userDate) }} </view>
|
|
|
<view class="content-area-row_wrap-view">
|
|
|
状态:
|
|
@@ -76,10 +72,95 @@
|
|
|
</oa-scroll>
|
|
|
|
|
|
<oa-tabbar :tabbarValue="2" :tabbarList="proxy.$constData.projectTabbar" :isSwitchTab="false"></oa-tabbar>
|
|
|
- <uni-popup ref="alertDialog" type="dialog">
|
|
|
- <uni-popup-dialog :type="state.tip.type" cancelText="取消" confirmText="确定" title="操作提醒" :content="state.tip.content" @confirm="dialogConfirm"
|
|
|
- @close="dialogClose"></uni-popup-dialog>
|
|
|
- </uni-popup>
|
|
|
+
|
|
|
+ <u-popup :show="popup.show" mode="bottom" bgColor="#fff" :round="10" @close="popup.show = false">
|
|
|
+ <view
|
|
|
+ :style="{
|
|
|
+ borderTopLeftRadius: '10px',
|
|
|
+ borderTopRightRadius: '10px',
|
|
|
+ overflow: 'hidden',
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ <u-button
|
|
|
+ class="custom-style"
|
|
|
+ type="info"
|
|
|
+ size="normal"
|
|
|
+ text="加入项目"
|
|
|
+ :customStyle="{
|
|
|
+ color: '#3c9cff',
|
|
|
+ borderWidth: 0,
|
|
|
+ borderRadius: 0,
|
|
|
+ borderBottomWidth: '1px',
|
|
|
+ }"
|
|
|
+ @click="handleModal('join', `确认加入名为 “ ${eventList.projectName} ” 的项目?`)"
|
|
|
+ v-if="eventList.projectMember.indexOf(useStore.userId) == -1"
|
|
|
+ ></u-button>
|
|
|
+ <u-button
|
|
|
+ class="custom-style"
|
|
|
+ type="info"
|
|
|
+ size="normal"
|
|
|
+ text="退出项目"
|
|
|
+ :customStyle="{
|
|
|
+ color: '#f9ae3d',
|
|
|
+ borderWidth: 0,
|
|
|
+ borderRadius: 0,
|
|
|
+ borderBottomWidth: '1px',
|
|
|
+ }"
|
|
|
+ @click="handleModal('exit', `确认退出名为 “ ${eventList.projectName} ” 的项目?`)"
|
|
|
+ v-if="eventList.projectMember.indexOf(useStore.userId) != -1"
|
|
|
+ ></u-button>
|
|
|
+ <u-button
|
|
|
+ class="custom-style"
|
|
|
+ type="info"
|
|
|
+ size="normal"
|
|
|
+ text="编辑项目"
|
|
|
+ :customStyle="{
|
|
|
+ color: '#3c9cff',
|
|
|
+ borderWidth: 0,
|
|
|
+ borderRadius: 0,
|
|
|
+ borderBottomWidth: '1px',
|
|
|
+ }"
|
|
|
+ @click="handleSubmit('update', eventList)"
|
|
|
+ v-if="eventList.projectHead == useStore.userId"
|
|
|
+ ></u-button>
|
|
|
+ <u-button
|
|
|
+ class="custom-style"
|
|
|
+ type="info"
|
|
|
+ size="normal"
|
|
|
+ text="删除项目"
|
|
|
+ :customStyle="{
|
|
|
+ color: '#f56c6c',
|
|
|
+ borderWidth: 0,
|
|
|
+ borderRadius: 0,
|
|
|
+ borderBottomWidth: '3px',
|
|
|
+ }"
|
|
|
+ @click="handleModal('delete', `确认删除名为 “ ${eventList.projectName} ” 的项目?`)"
|
|
|
+ v-if="eventList.projectHead == useStore.userId"
|
|
|
+ ></u-button>
|
|
|
+ <u-button
|
|
|
+ class="custom-style"
|
|
|
+ type="info"
|
|
|
+ size="normal"
|
|
|
+ text="取消"
|
|
|
+ :customStyle="{
|
|
|
+ color: '#3c9cff',
|
|
|
+ border: 'none',
|
|
|
+ borderRadius: 0,
|
|
|
+ }"
|
|
|
+ @click="popup.show = false"
|
|
|
+ ></u-button>
|
|
|
+ </view>
|
|
|
+ </u-popup>
|
|
|
+ <u-modal
|
|
|
+ :show="modal.show"
|
|
|
+ title="操作提醒"
|
|
|
+ :content="modal.content"
|
|
|
+ :showCancelButton="true"
|
|
|
+ :closeOnClickOverlay="true"
|
|
|
+ @confirm="handleSubmit(state.modal.type, eventList)"
|
|
|
+ @cancel="modal.show = false"
|
|
|
+ @close="modal.show = false"
|
|
|
+ ></u-modal>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
@@ -111,19 +192,19 @@ const state = reactive({
|
|
|
current: 1,
|
|
|
total: 0,
|
|
|
userDate: [],
|
|
|
- modalShow: false,
|
|
|
- modalType: "",
|
|
|
- modalEvent: {},
|
|
|
- msgContent:undefined,
|
|
|
- tip:{
|
|
|
- type:undefined,//弹框类型
|
|
|
- content:"",//提示信息
|
|
|
- data:{},//带入数据
|
|
|
- operation:undefined,//操作类型
|
|
|
- }
|
|
|
+ popup: {
|
|
|
+ show: false, //弹窗显示
|
|
|
+ content: "", //提示信息
|
|
|
+ },
|
|
|
+ modal: {
|
|
|
+ type: "", //操作类型
|
|
|
+ show: false, //弹窗显示
|
|
|
+ content: "", //提示信息
|
|
|
+ },
|
|
|
+ eventList: {}, //数据存储
|
|
|
});
|
|
|
|
|
|
-const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate, modalShow, modalType, modalEvent } = toRefs(state);
|
|
|
+const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate, popup, modal, eventList } = toRefs(state);
|
|
|
|
|
|
/**
|
|
|
* @页面初始化
|
|
@@ -134,34 +215,20 @@ function init() {
|
|
|
});
|
|
|
selectListApi();
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* 操作弹框提醒
|
|
|
- * @param type 弹框类型
|
|
|
+ * @param type 操作类型
|
|
|
* @param content 提示内容
|
|
|
- * @param item 带入数据
|
|
|
- * @param operation 操作类型
|
|
|
*/
|
|
|
-function tips(type,content,item,operation){
|
|
|
- state.tip.type=type
|
|
|
- state.tip.content=content
|
|
|
- state.tip.data=item
|
|
|
- state.tip.operation=operation
|
|
|
- proxy.$refs.alertDialog.open()
|
|
|
+function handleModal(type, content) {
|
|
|
+ state.modal.show = true;
|
|
|
+ state.modal.type = type;
|
|
|
+ state.modal.content = content;
|
|
|
}
|
|
|
-/**弹框确定操作 */
|
|
|
-function dialogConfirm(){
|
|
|
- if(state.tip.operation =='delete'){
|
|
|
- handleSubmit('delete',state.tip.data)
|
|
|
- }
|
|
|
- if(state.tip.operation=='exit'){
|
|
|
- handleSubmit('exit',state.tip.data)
|
|
|
- }
|
|
|
-}
|
|
|
-/**弹框取消操作 */
|
|
|
-function dialogClose(){
|
|
|
- proxy.$refs.alertDialog.close()
|
|
|
-}
|
|
|
-function handleSubmit(type,item) {
|
|
|
+
|
|
|
+/** 确定按钮点击事件 */
|
|
|
+function handleSubmit(type, item) {
|
|
|
if (type === "insert") {
|
|
|
proxy.$tab.navigateTo(`/pages/business/common/projectMange/list/addEdit`);
|
|
|
} else if (type === "update") {
|
|
@@ -171,9 +238,13 @@ function handleSubmit(type,item) {
|
|
|
.ProjectsDelete(item.id)
|
|
|
.then(() => {
|
|
|
proxy.$modal.msg("项目删除成功!");
|
|
|
+ state.modal.show = false;
|
|
|
+ state.popup.show = false;
|
|
|
selectListApi();
|
|
|
})
|
|
|
.catch((errors) => {
|
|
|
+ state.modal.show = false;
|
|
|
+ state.popup.show = false;
|
|
|
proxy.$modal.msg(errors);
|
|
|
});
|
|
|
} else if (type === "exit") {
|
|
@@ -181,21 +252,37 @@ function handleSubmit(type,item) {
|
|
|
.ProjectsExit(item.id)
|
|
|
.then(() => {
|
|
|
proxy.$modal.msg("项目退出成功!");
|
|
|
+ state.modal.show = false;
|
|
|
+ state.popup.show = false;
|
|
|
selectListApi();
|
|
|
})
|
|
|
.catch((errors) => {
|
|
|
+ state.modal.show = false;
|
|
|
+ state.popup.show = false;
|
|
|
+ proxy.$modal.msg(errors);
|
|
|
+ });
|
|
|
+ } else if (type === "join") {
|
|
|
+ console.log("join");
|
|
|
+ projectApi()
|
|
|
+ .ProjectsJoin(item.id)
|
|
|
+ .then(() => {
|
|
|
+ proxy.$modal.msg("项目加入成功!");
|
|
|
+ state.modal.show = false;
|
|
|
+ state.popup.show = false;
|
|
|
+ selectListApi();
|
|
|
+ })
|
|
|
+ .catch((errors) => {
|
|
|
+ state.modal.show = false;
|
|
|
+ state.popup.show = false;
|
|
|
proxy.$modal.msg(errors);
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
- state.modalShow = false;
|
|
|
}
|
|
|
|
|
|
/** 更多按钮点击事件 */
|
|
|
-function moreClick(type, event) {
|
|
|
- state.modalShow = true;
|
|
|
- state.modalType = type;
|
|
|
- state.modalEvent = event;
|
|
|
+function moreClick(event) {
|
|
|
+ state.popup.show = true;
|
|
|
+ state.eventList = event;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -271,7 +358,7 @@ onLoad((options) => {
|
|
|
font-size: 16px;
|
|
|
font-weight: 600;
|
|
|
color: #000000;
|
|
|
- width:30%;
|
|
|
+ width: 100%;
|
|
|
float: right;
|
|
|
&-time {
|
|
|
max-width: 70%;
|
|
@@ -281,7 +368,9 @@ onLoad((options) => {
|
|
|
}
|
|
|
|
|
|
&-name {
|
|
|
+ font-size: 14px;
|
|
|
max-width: 70%;
|
|
|
+ text-align: left;
|
|
|
color: #000;
|
|
|
}
|
|
|
|