|
@@ -87,6 +87,7 @@
|
|
|
size="normal"
|
|
|
text="加入项目"
|
|
|
:customStyle="{
|
|
|
+ height: '50px',
|
|
|
color: '#3c9cff',
|
|
|
borderWidth: 0,
|
|
|
borderRadius: 0,
|
|
@@ -101,6 +102,7 @@
|
|
|
size="normal"
|
|
|
text="退出项目"
|
|
|
:customStyle="{
|
|
|
+ height: '50px',
|
|
|
color: '#f9ae3d',
|
|
|
borderWidth: 0,
|
|
|
borderRadius: 0,
|
|
@@ -115,6 +117,7 @@
|
|
|
size="normal"
|
|
|
text="编辑项目"
|
|
|
:customStyle="{
|
|
|
+ height: '50px',
|
|
|
color: '#3c9cff',
|
|
|
borderWidth: 0,
|
|
|
borderRadius: 0,
|
|
@@ -129,6 +132,7 @@
|
|
|
size="normal"
|
|
|
text="删除项目"
|
|
|
:customStyle="{
|
|
|
+ height: '50px',
|
|
|
color: '#f56c6c',
|
|
|
borderWidth: 0,
|
|
|
borderRadius: 0,
|
|
@@ -143,6 +147,7 @@
|
|
|
size="normal"
|
|
|
text="取消"
|
|
|
:customStyle="{
|
|
|
+ height: '50px',
|
|
|
color: '#3c9cff',
|
|
|
border: 'none',
|
|
|
borderRadius: 0,
|
|
@@ -169,7 +174,7 @@ import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, on
|
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
import { projectApi } from "@/api/business/project.js";
|
|
|
-import { UserList } from "@/api/system/user.js";
|
|
|
+import { dUserList } from "@/api/system/user.js";
|
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
|
import { useStores } from "@/store/modules/index";
|
|
@@ -210,7 +215,7 @@ const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate, pop
|
|
|
* @页面初始化
|
|
|
*/
|
|
|
function init() {
|
|
|
- UserList({ pageNum: "1", pageSize: "10000" }).then((res) => {
|
|
|
+ dUserList({ pageNum: "1", pageSize: "10000" }).then((res) => {
|
|
|
state.userDate = res.data.rows;
|
|
|
});
|
|
|
selectListApi();
|
|
@@ -238,13 +243,9 @@ 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") {
|
|
@@ -252,13 +253,9 @@ 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") {
|
|
@@ -267,16 +264,15 @@ function handleSubmit(type, item) {
|
|
|
.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.modal.show = false;
|
|
|
+ state.popup.show = false;
|
|
|
}
|
|
|
|
|
|
/** 更多按钮点击事件 */
|
|
@@ -341,9 +337,7 @@ onShow(() => {
|
|
|
proxy.$settingStore.systemThemeColor([1]);
|
|
|
});
|
|
|
|
|
|
-onLoad((options) => {
|
|
|
- init();
|
|
|
-});
|
|
|
+onLoad((options) => {});
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
:deep(.u-modal__content) {
|