Browse Source

Merge branch 'develop' into xuxiaoming

pull/131/head
xuxiaoming 3 years ago
parent
commit
02366b6537
9 changed files with 18 additions and 8 deletions
  1. +1
    -1
      .env.prod
  2. +1
    -1
      .env.test
  3. BIN
      src/assets/img/bg-login.png
  4. BIN
      src/assets/img/bg-login1.png
  5. BIN
      src/assets/img/login/bg-form.png
  6. BIN
      src/assets/img/login/bg-form1.png
  7. +14
    -4
      src/components/queryComponent/index.vue
  8. +1
    -1
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue
  9. +1
    -1
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/public.vue

+ 1
- 1
.env.prod View File

@ -1,5 +1,5 @@
NODE_ENV = 'production'
VUE_APP_BASE_URL = http://101.201.121.115:9003/
VUE_APP_BASE_URL = http://10.11.12.27:9003/
VUE_APP_TITLE = 生产计划管理系统
VUE_APP_LOGO = ../assets/img/logo.png
VUE_APP_LOGIN_BG = ../assets/img/bg-login.png


+ 1
- 1
.env.test View File

@ -1,5 +1,5 @@
NODE_ENV = 'production'
VUE_APP_BASE_URL = http://10.11.3.207:9003/
VUE_APP_BASE_URL = http://10.11.12.27:9003/
VUE_APP_TITLE = 生产计划管理系统
VUE_APP_LOGO = ../assets/img/logo.png
VUE_APP_LOGIN_BG = ../assets/img/bg-login.png


BIN
src/assets/img/bg-login.png View File

Before After
Width: 1921  |  Height: 1081  |  Size: 964 KiB Width: 3842  |  Height: 2160  |  Size: 13 MiB

BIN
src/assets/img/bg-login1.png View File

Before After
Width: 1921  |  Height: 1081  |  Size: 964 KiB

BIN
src/assets/img/login/bg-form.png View File

Before After
Width: 1168  |  Height: 1302  |  Size: 30 KiB Width: 1168  |  Height: 1302  |  Size: 30 KiB

BIN
src/assets/img/login/bg-form1.png View File

Before After
Width: 1168  |  Height: 1302  |  Size: 30 KiB

+ 14
- 4
src/components/queryComponent/index.vue View File

@ -11,7 +11,7 @@
<img :src="notalReadyPic" alt="" title="检索条件">
</template>
<div class="predict-search-container">
<el-select v-if="isShowAddButton"
<!-- <el-select v-if="isShowAddButton"
v-model="valid"
style="width: 300px;margin-bottom:10px;"
placeholder="请选择是否有效" >
@ -21,8 +21,13 @@
:label="item['label']"
:value="item['value']">
</el-option>
</el-select>
<el-select v-if="isShowAddButton"
</el-select> -->
<div v-if="isShowAddButton" style="height: 40px;">
<span style="margin-right:10px;">是否有效</span>
<el-radio v-model="valid" label="true">有效</el-radio>
<el-radio v-model="valid" label="false">无效</el-radio>
</div>
<!-- <el-select v-if="isShowAddButton"
v-model="status"
style="width: 300px;margin-bottom:10px;"
placeholder="请选择是否发布" >
@ -32,7 +37,12 @@
:label="item['label']"
:value="item['value']">
</el-option>
</el-select>
</el-select> -->
<div v-if="isShowAddButton" style="height: 40px;">
<span style="margin-right:10px;">是否发布</span>
<el-radio v-model="status" label="0">未发布</el-radio>
<el-radio v-model="status" label="1">已发布</el-radio>
</div>
<el-input
v-if="isShowAddButton"
v-model="VersionID"


+ 1
- 1
src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue View File

@ -415,7 +415,7 @@ export default {
},2000)
this.$message({ type: "success", message: msg });
}).catch(() => {
this.$message({ type: "error", message: "访问失败" });
// this.$message({ type: "error", message: "访" });
});
},
//


+ 1
- 1
src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/public.vue View File

@ -99,7 +99,7 @@
this.$emit("cancelHandle", "submit")
}).catch(() => {
this.loading = false
this.$message({ type: "error", message: "发布失败" });
// this.$message({ type: "error", message: "" });
});
}
},


Loading…
Cancel
Save