Commit 280d68fb authored by caimeng's avatar caimeng

发送短信需求,切图已完成

parent ecfe8869
NODE_ENV=development
VUE_APP_ENV=development
VUE_APP_SIGN_URL=http://m.jqtianxia.cn/sign_agreement/index.html
VUE_APP_API=http://47.99.245.36:8202
NODE_ENV=dr
VUE_APP_ENV=production
VUE_APP_SIGN_URL=https://sign.taimedias.com/dr/index.html
VUE_APP_API=https://drwater.dingrongxd.com
VUE_APP_API=https://drwater.dingrongxd.com
\ No newline at end of file
NODE_ENV=prod
VUE_APP_ENV=production
VUE_APP_SIGN_URL=https://sign.taimedias.com/index.html
VUE_APP_API=https://water.jqtianxia.com
NODE_ENV=staging
VUE_APP_ENV=test
VUE_APP_SIGN_URL=http://m.jqtianxia.cn/sign_agreement/index.html
VUE_APP_API=http://47.99.245.36:8202
......@@ -7,9 +7,11 @@
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build:test": "export COMPILE_ENV=staging && vue-cli-service build --mode test && node ./upload_oss.js",
"build:staging": "export COMPILE_ENV=staging && vue-cli-service build --mode staging",
"build:dr": "export COMPILE_ENV=dr && vue-cli-service build --mode dr --modern",
"build:prod": "export COMPILE_ENV=prod && vue-cli-service build --mode production --modern && node ./upload_oss.js"
"build:prod": "export COMPILE_ENV=prod && vue-cli-service build --mode production --modern && node ./upload_oss.js",
"upload:staging":"export COMPILE_ENV=staging && node ./upload_oss.js",
"upload:prod":"export COMPILE_ENV=prod && node ./upload_oss.js"
},
"dependencies": {
"ali-oss": "^6.20.0",
......
This diff is collapsed.
......@@ -29,6 +29,21 @@
width="350"
label="短信内容"
></el-table-column>
<el-table-column
align="center"
prop="content"
label="短信通道"
></el-table-column>
<el-table-column
align="center"
prop="content"
label="提交人"
></el-table-column>
<el-table-column
align="center"
prop="sendStateStr"
label="提交结果"
></el-table-column>
<el-table-column
align="center"
prop="sendStateStr"
......
......@@ -108,7 +108,7 @@ export default {
label: '操作',
prop: 'zipPath',
render: (_, text, row) => {
if (row.caseStatus === 'FINISHED') return <el-link type="primary" target="_blank" href={text}>下载材料包</el-link>
if (row.caseStatus === 'FINISHED') return <a alt='' title='' target="_blank" href={text}>下载材料包</a>
else return ''
}
}
......
......@@ -11,10 +11,6 @@ let accessKeyId = "LTAI5tAhrEnqLFtnWPwZbDue",
if (COMPILE_ENV === "prod") {
bucket = "customer-vue";
} else if (COMPILE_ENV === "dr") {
bucket = "mmyx-h5-gray";
accessKeyId = "";
accessKeySecret = "";
} else if (COMPILE_ENV === "staging") {
bucket = "customer-vue-test";
}
......
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