Browse Source

no message

master
DESKTOP-00SUCB6\Administrator 4 years ago
parent
commit
793196cada
  1. BIN
      src/assets/layout/logo2x.png
  2. 2
      src/views/layout/components/header.vue
  3. 15
      src/views/send/send.vue
  4. 3
      src/views/systemManage/whiteList.vue

BIN
src/assets/layout/logo2x.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 18 KiB

2
src/views/layout/components/header.vue

@ -69,7 +69,7 @@ export default {
methods:{
//
logout() {
this.$store.dispatch('LogOut').then(() => {
this.$store.dispatch('FedLogOut').then(() => {
// location.reload() // vue-router bug\
this.$router.push({name:'login'})
})

15
src/views/send/send.vue

@ -7,6 +7,7 @@
v-model="formSearch.time"
size="mini"
type="daterange"
value-format="yyyy-MM-dd HH:mm:ss"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期">
@ -15,8 +16,8 @@
<el-form-item label="取码状态:">
<el-select v-model="formSearch.status" clearable size="mini" placeholder="请选择取码状态">
<el-option label="有剩余" value="1"></el-option>
<el-option label="无剩余" value="0"></el-option>
<el-option label="有剩余" :value="1"></el-option>
<el-option label="无剩余" :value="2"></el-option>
</el-select>
</el-form-item>
<el-form-item>
@ -103,7 +104,7 @@ export default {
return {
formSearch: {//
time: '',
status:''
status:null
},
AllData:{
sendTotal:'90000万',
@ -147,9 +148,9 @@ export default {
const params = {
pageNo: this.currentPage,
pageSize: this.pageSize,
// fetchStatus :this.formSearch.status || 0,
// startTime:this.formSearch.time[0] || null,
// endTime:this.formSearch.time[1] || null
fetchStatus :this.formSearch.status || 0,
startTime:this.formSearch.time[0] || null,
endTime:this.formSearch.time[1] || null
}
getSendList(params).then(res => {
this.tableData = res.data.list
@ -177,7 +178,7 @@ export default {
},
//
showDetail(id) {
this.dialogSendVisible = true
this.dialogDetailVisible = true
},
//
showGetDetail(){

3
src/views/systemManage/whiteList.vue

@ -47,7 +47,7 @@
<el-input v-model="form.contact_name" autocomplete="off" placeholder="请输入姓名(必填)"></el-input>
</el-form-item>
<el-form-item label="联系电话:" :label-width="formLabelWidth" prop="phone">
<el-input v-model.number="form.phone" autocomplete="off" minlength="11" maxlength="11"
<el-input v-model="form.phone" autocomplete="off" minlength="11" maxlength="11"
placeholder="请输入电话号码(必填)"></el-input>
</el-form-item>
</el-form>
@ -140,7 +140,6 @@ export default {
},
//
addWhiteListInfo() {
this.form.insert_time = new Date().toLocaleString()
addWhiteList(this.form).then(res => {
this.$message({
message: res.message,

Loading…
Cancel
Save