界面展示修改,vue升级

master
anthonywj 2 years ago
parent 1388025024
commit dbe997b8ea

2451
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -15,13 +15,13 @@
"babel-polyfill": "^6.26.0", "babel-polyfill": "^6.26.0",
"clipboard": "^2.0.8", "clipboard": "^2.0.8",
"element-china-area-data": "^5.0.2", "element-china-area-data": "^5.0.2",
"element-ui": "^2.8.2", "element-ui": "2.15.8",
"file-saver": "^2.0.5", "file-saver": "^2.0.5",
"js-cookie": "^2.2.0", "js-cookie": "^2.2.0",
"mockjs": "^1.0.1-beta3", "mockjs": "^1.0.1-beta3",
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"pinyin": "^2.10.2", "pinyin": "^2.10.2",
"vue": "^2.5.16", "vue": "2.6.12",
"vue-router": "^3.0.1", "vue-router": "^3.0.1",
"vue2-verify": "^1.1.5", "vue2-verify": "^1.1.5",
"vuedraggable": "^2.17.0", "vuedraggable": "^2.17.0",
@ -38,7 +38,7 @@
"babel-jest": "^23.0.1", "babel-jest": "^23.0.1",
"sass": "1.32.13", "sass": "1.32.13",
"sass-loader": "10.1.1", "sass-loader": "10.1.1",
"vue-template-compiler": "^2.5.16" "vue-template-compiler": "^2.6.12"
}, },
"browserslist": [ "browserslist": [
"> 1%", "> 1%",

@ -46,7 +46,8 @@
</el-table-column> </el-table-column>
<el-table-column label="状态" prop="status" width="140" show-overflow-tooltip> <el-table-column label="状态" prop="status" width="140" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.status" :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }} <el-tag v-if="scope.row.status" :type="statusFilterType(scope.row.status)">
{{ status[scope.row.status] }}
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
@ -64,15 +65,18 @@
<el-button type="text" size="small" slot="reference">下载 <el-button type="text" size="small" slot="reference">下载
</el-button> </el-button>
</el-popconfirm> </el-popconfirm>
<el-popconfirm v-if="scope.row.status==4" @confirm="deleteData(scope.row.id)" confirm-button-text='' <el-popconfirm v-if="scope.row.status==4" @confirm="deleteData(scope.row.id)"
cancel-button-text='不用了' icon="el-icon-info" icon-color="red" title="是否确认要删除这条数据?"> confirm-button-text='删除'
cancel-button-text='不用了' icon="el-icon-info" icon-color="red"
title="是否确认要删除这条数据?">
<el-button type="text" size="small" slot="reference">删除 <el-button type="text" size="small" slot="reference">删除
</el-button> </el-button>
</el-popconfirm> </el-popconfirm>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination :current-page="filterQuery.page" :page-size="filterQuery.limit" @current-change="handleCurrentChange" <el-pagination :current-page="filterQuery.page" :page-size="filterQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next" :total="total"></el-pagination> layout="prev, pager, next" :total="total"></el-pagination>
</el-card> </el-card>
@ -100,7 +104,7 @@
filterQuery: { filterQuery: {
taskId: null, taskId: null,
id: null, id: null,
status: "3", status: null,
page: 1, page: 1,
limit: 10, limit: 10,
syncTime: null, syncTime: null,
@ -225,7 +229,8 @@
.then(() => { .then(() => {
this.createSchedule(type); this.createSchedule(type);
}) })
.catch(() => {}); .catch(() => {
});
} else { } else {
this.createSchedule(type); this.createSchedule(type);
} }
@ -248,7 +253,8 @@
this.$alert(response.message, '提示', { this.$alert(response.message, '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
type: "warning", type: "warning",
callback: action => {} callback: action => {
}
}); });
} else { } else {
@ -284,7 +290,8 @@
this.loading = false; this.loading = false;
}); });
}) })
.catch(() => {}); .catch(() => {
});
}, },
handleChange(response, files, fileList) { handleChange(response, files, fileList) {
console.log(response); console.log(response);
@ -316,7 +323,6 @@
}, },
downFile(rows) { downFile(rows) {
alert(1)
infoByStatus({ infoByStatus({
'id': rows.id 'id': rows.id
}).then(res => { }).then(res => {
@ -344,11 +350,13 @@
} }
this.getList(); this.getList();
}) })
.catch(() => {}); .catch(() => {
});
} }
}, },
mounted() {}, mounted() {
},
components: {}, components: {},
created() { created() {
this.headers = { this.headers = {

Loading…
Cancel
Save