Commit 2609e17b authored by zenglun's avatar zenglun

提交部分代码

parent 0edf3e4b
NODE_ENV = 'production'
VUE_APP_CURRENTMODE = 'gs_prod'
VUE_APP_VERSION = '0'
\ No newline at end of file
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
"build:hl_prod": "vue-cli-service build --mode hl_prod_build", "build:hl_prod": "vue-cli-service build --mode hl_prod_build",
"build:boe_prod": "vue-cli-service build --mode boe_prod_build", "build:boe_prod": "vue-cli-service build --mode boe_prod_build",
"build:gs": "vue-cli-service build --mode gs_build", "build:gs": "vue-cli-service build --mode gs_build",
"build:gs_prod": "vue-cli-service build --mode gs_prod_build",
"deploy:sy": "vue-cli-service build --mode sy_test_build && bash ./sy.sh", "deploy:sy": "vue-cli-service build --mode sy_test_build && bash ./sy.sh",
"deploy:cs": "vue-cli-service build --mode cs_test_build && bash ./cs.sh", "deploy:cs": "vue-cli-service build --mode cs_test_build && bash ./cs.sh",
"deploy:best": "vue-cli-service build --mode best_test_build && bash ./best.sh", "deploy:best": "vue-cli-service build --mode best_test_build && bash ./best.sh",
......
...@@ -156,5 +156,14 @@ const configModules = { ...@@ -156,5 +156,14 @@ const configModules = {
filename: 'index.html' filename: 'index.html'
} }
}, },
"gs_prod": {
CHAIN_BROWSER_URL_PREFIX: 'http://25.215.128.192:9010/',
INERFACE_URL_PREFIX: 'http://25.215.128.28:46789',
INDEX: {
entry: './src/entry/gs/main.ts',
template: './public/gs/index.html',
filename: 'index.html'
}
},
} }
exports.model = configModules[process.env.VUE_APP_CURRENTMODE] exports.model = configModules[process.env.VUE_APP_CURRENTMODE]
\ No newline at end of file
This diff is collapsed.
<template>
<section>
<h2 class="dialog-title">提示</h2>
<p class="dialog-tip">{{ tip }}</p>
<button class="dialog_btn_confirm" @click="checkForm">确定</button>
<button class="dialog_btn_cancel" @click="closeDialog">取消</button>
</section>
</template>
<script>
export default {
props: ["tip"],
methods: {
checkForm() {
this.$emit("confirm");
},
closeDialog() {
this.$emit("close");
},
},
};
</script>
<style lang="less" scoped>
section {
width: 535px;
height: 285px;
background: #ffffff;
box-shadow: 0px 0px 20px 0px rgba(61, 118, 249, 0.18);
}
.dialog-title {
padding-left: 44px;
padding-top: 34px;
color: #000;
font-size: 22px;
}
.dialog-tip {
text-align: center;
padding-top: 48px;
font-size: 22px;
padding-bottom: 54px;
}
.dialog_btn_confirm {
float: right;
width: 120px;
height: 40px;
color: #fff;
font-size: 14px;
margin-right: 50px;
outline: none;
background: #0CC399;
border-radius: 4px;
border: none;
cursor: pointer;
}
.dialog_btn_cancel {
float: right;
margin-right: 18px; /* 28 - 10 */
border: none;
width: 48px; /* 28 + 增大20 */
height: 40px;
outline: none;
background: #fff;
color: #5c6476;
font-size: 14px;
cursor: pointer;
}
</style>
\ No newline at end of file
...@@ -50,7 +50,7 @@ import TemplateManage from "../../components/templateManage/templateManage.vue"; ...@@ -50,7 +50,7 @@ import TemplateManage from "../../components/templateManage/templateManage.vue";
// 右侧存证部分 // 右侧存证部分
import productList from "../../components/productList/productList.vue"; import productList from "../../components/productList/productList.vue";
//删除页 //删除页
import deleted from "@/views/category/deleted.vue"; import deleted from "../../components/deleted/deleted.vue";
// 引导页 // 引导页
import CommonDialog from "@/components/CommonDialog.vue"; import CommonDialog from "@/components/CommonDialog.vue";
@Component({ @Component({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment