| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- <template>
- <view class="m_right">
- <image src="../../../assets/home/homeBG.png" class="s_logo" mode=""></image>
- <view class="m_right_container">
- <view class="m_row_class">
- <view class="m_row">
- <view class="m_row_link">
- </view>
- <view class="m_row_title" v-text="'项目管理'">
- </view>
- <view style="position: relative;margin-left: 40rpx;">
- <div class="triangle_border_down">
- <span></span>
- </div>
- </view>
- </view>
- <table style="width: 100%;border: 1px solid #DDDDDD;border-collapse: collapse">
- <thead class="m-table-hander">
- <tr>
- <th>名称</th>
- <th>类型</th>
- <th>介绍</th>
- <th>创始人</th>
- <th>修改</th>
- <th>删除</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(item,index) in projectData" :key="index">
- <th>{{item.ProjectName}}</th>
- <th></th>
- <th></th>
- <th>{{item.CreateUserName}}</th>
- <th style="position: relative;"><button type="default" size="mini" @click="edit(index)" class="m_edit">修改</button></th>
- <th style="position: relative;"><button type="default" size="mini" @click="delete1(index)" class="m_delete">删除</button></th>
- </tr>
- </tbody>
- </table>
- </view>
- <view class="m_row_class">
- <view class="" style="display: flex;justify-content: space-between;">
- <view class="m_row">
- <view class="m_row_link">
- </view>
- <view class="m_row_title" v-text="'文件管理'">
- </view>
- <view style="position: relative;margin-left: 40rpx;">
- <div class="triangle_border_down">
- <span></span>
- </div>
- </view>
- </view>
- <view class="">
- <button type="default" class="m_btn_download" size="mini">添加文件</button>
- </view>
- </view>
- <table style="width: 100%;border: 1px solid #DDDDDD;border-collapse: collapse">
- <thead class="m-table-hander">
- <tr>
- <th>文件</th>
- <th>文件名</th>
- <th>文件类型</th>
- <th>上传人</th>
- <th>上传日期</th>
- <th>下载</th>
- <th>删除</th>
- <th>审核</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(item,index) in fileData" :key="index">
- <th>{{item.UploadUserType}}</th>
- <th>{{item.Name}}</th>
- <th>{{item.UploadUserName}}</th>
- <th>{{item.Type}}</th>
- <th>{{item.UploadTime}}</th>
- <th style="position: relative;"><button type="default" size="mini" @click="download(index)" class="m_edit">下载</button></th>
- <th style="position: relative;"><button type="default" size="mini" @click="delete1(index)" class="m_delete">删除</button></th>
- <th style="position: relative;"><button type="default" size="mini" @click="audit(item)" class="m_audit">审核</button></th>
- </tr>
- </tbody>
- </table>
- </view>
- <view class="m_row_class">
- <view class="" style="display: flex;justify-content: space-between;">
- <view class="m_row">
- <view class="m_row_link">
- </view>
- <view class="m_row_title" v-text="'成员管理'">
- </view>
- <view style="position: relative;margin-left: 40rpx;">
- <div class="triangle_border_down">
- <span></span>
- </div>
- </view>
- </view>
- <view class="">
- <button type="default" class="m_btn_download" size="mini">添加学生</button>
- </view>
- </view>
- <table style="width: 100%;border: 1px solid #DDDDDD;border-collapse: collapse">
- <thead class="m-table-hander">
- <tr>
- <th>用户名</th>
- <th>姓名</th>
- <th>专业</th>
- <th>班级</th>
- <th>职务</th>
- <th>电话</th>
- <th>删除</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(item,index) in 1" :key="index">
- <th></th>
- <th></th>
- <th></th>
- <th></th>
- <th>
- <div>
- <input type="number" value="" />
- </div>
- </th>
- <th></th>
- <th style="position: relative;"><button type="default" size="mini" class="m_delete" @click="delete1(item)">删除</button></th>
- </tr>
- </tbody>
- </table>
- </view>
- </view>
- <msg ref="msg" :title="title" @determine="determine" :btnArr="arr" v-show="show"></msg>
- <audit ref="audit" v-show="auditshow" @determine="determine"></audit>
- <!-- <locationtemp ref="location_temp"></locationtemp> -->
- </view>
- </template>
- <script>
- import msg from "./msg.vue"
- import audit from "./audit.vue"
- // import locationtemp from "./location_temp.vue"
- // import api from "../../../api/project.js"
- export default {
- name: "home_project",
- data() {
- return {
- index: 1,
- title: "",
- show: false,
- auditshow: false,
- callback: "",
- arr: [],
- data: [],
- projectData: [],
- ProjectItem: [],
- fileData: []
- }
- },
- components: {
- msg,
- audit,
- // locationtemp
- },
- created() {
- this.getlist();
- // this.getFileList();
- },
- methods: {
- paging(obj) {
- this.index = obj;
- },
- delete1(index) {
- this.title = "是否删除信息?";
- this.arr = ["删除", "取消"]
- this.show = true;
- },
- download(index) {
- this.title = "下载成功?";
- this.arr = ["确认"];
- this.show = true;
- },
- edit(index) {
- this.title = "是否删除信息?";
- this.arr = ["删除", "取消"]
- this.show = true;
- },
- audit(index) {
- this.title = "是否确认审核?";
- this.arr = ["通过", "未通过"]
- this.show = true;
- this.callback = "audit"
- // this.auditshow = true;
- },
- determine(obj) {
- this.show = false;
- this.auditshow = false;
- switch (this.callback) {
- case "audit": //审核
- const data = {
- ProjectItemID: "xxxx",
- Pass: obj == 0
- }
- this.auditPost(data);
- break;
- default:
- break;
- }
- // if (this.audit == "audit") {
- // }
- console.log(obj)
- },
- auditPost(obj) {
- uni.request({
- url: this.$Api + "/project/setfilepass",
- data: obj,
- method: "POST",
- dataType: "json",
- success: res => {
- var {
- data
- } = res;
- alert(data.msg);
- }
- })
- },
- getlist() {
- uni.request({
- url: this.$Api + "/project/getprojectcontent",
- data: {
- "UserID": this.$UserId
- },
- method: "POST",
- dataType: "json",
- success: res => {
- var {
- data
- } = res;
- this.projectData = data.Projects;
- }
- })
- },
- getFileList() {
- console.log("用户id");
- console.log(this.$UserId);
- var temp = {
- "UserID": this.$UserId,
- "ProjectID": 10001
- }
- uni.request({
- url: this.$Api + "/project/GetProjectContent",
- data: temp,
- method: "POST",
- dataType: "json",
- success: res => {
- var {
- data
- } = res;
- if (data.code == 100) {
- this.fileData = data.ProjectItem;
- }
- }
- })
- },
- viewProject(obj) {
- this.projectData = [obj];
- }
- }
- }
- </script>
- <style lang="scss">
- .m_right {
- width: 100%;
- margin-top: 5rpx;
- // padding: 0 150rpx;
- background-color: #fff;
- box-shadow: 3px 0px 6px 0px rgba(0, 0, 0, 0.1);
- .m_right_container {
- padding: 150rpx;
- }
- .s_logo {
- width: 100%;
- height: 800rpx;
- }
- .m_right_hander {
- text-align: right;
- height: 250rpx;
- position: relative;
- .m_btn_red {
- position: absolute;
- height: 80rpx;
- line-height: 80rpx;
- padding: 0 40rpx;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- background: #EA252C;
- color: #fff;
- }
- }
- }
- .m_btn_download {
- height: 80rpx;
- line-height: 80rpx;
- padding: 0 70rpx;
- background: #EA252C;
- color: #fff;
- font-family: MicrosoftYaHei;
- }
- tbody tr {
- border-top: 2rpx solid #DDDDDD !important;
- }
- tbody tr th:first-child {
- position: relative;
- }
- tbody tr th {
- font-weight: 400 !important;
- height: 140rpx;
- line-height: 140rpx;
- }
- tbody tr:hover {
- // color: #fff;
- background: #FDEBEC;
- // opacity: 0.08;
- }
- .m-table-hander {
- background-color: #FFF8F7;
- height: 140rpx;
- line-height: 140rpx;
- font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
- font-weight: bold;
- }
- .m_edit {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background: rgb(67, 127, 250);
- color: rgb(255, 255, 255);
- min-width: 130rpx;
- }
- .m_delete {
- position: absolute;
- top: 50%;
- left: 50%;
- min-width: 130rpx;
- transform: translate(-50%, -50%);
- background: rgb(234, 37, 44);
- color: rgb(255, 255, 255);
- }
- .m_right_footer {
- margin-top: 80rpx;
- }
- .m_logoimg {
- width: 80rpx;
- height: 80rpx;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .m_paging {
- text-align: right;
- .m_paging_item {
- padding: 10rpx 18rpx;
- border: 1rpx solid #DDDDDD;
- border-radius: 8rpx;
- margin-right: 10rpx;
- }
- .p_act {
- background: #EA252C;
- color: #fff;
- border: inherit;
- }
- }
- .m_paging_item:hover {
- background: #EA252C;
- color: #fff;
- border: inherit;
- }
- .m_act1 {
- color: #FF0019;
- }
- .m_row {
- display: flex;
- height: 60rpx;
- line-height: 60rpx;
- font-size: 30rpx;
- color: #ea252c;
- padding: 0 0 80rpx 0;
- }
- .m_audit {
- position: absolute;
- top: 50%;
- left: 50%;
- min-width: 65px;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- color: white;
- background-color: #FF791B;
- }
- .m_row_link {
- width: 10rpx;
- height: 60rpx;
- background-color: #ea252c;
- margin-right: 40rpx;
- }
- .m_row_title {
- color: #ea252c;
- font-weight: bold;
- font-size: 40rpx;
- }
- /*向下*/
- .triangle_border_down {
- width: 0;
- height: 0;
- border-width: 25rpx 25rpx 0;
- border-style: solid;
- border-color: #ea252c transparent transparent;
- /*灰 透明 透明 */
- margin: 20rpx auto;
- position: relative;
- }
- .m_row_class {
- margin-bottom: 60rpx;
- }
- </style>
|